This site is a testing version, but all data is shared with the live forum.


Raised This Month: $ Target: $400
 0% 

Solved Disable warmup completely?


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Desktop
AlliedModders Donor
Join Date: Sep 2009
Location: C:\Users\Default\
Old 01-28-2018 , 20:45   Disable warmup completely?
Reply With Quote #1

Hi, i've been searching but nothing really helped.
I want to disable completely the warmup, including when you kill someone and the match starts.
Cvars didnt work, any idea?
__________________
Massive Infection:: Piu-Games

Last edited by Desktop; 03-06-2018 at 20:32.
Desktop is offline
DukeBruno123
Member
Join Date: Jan 2016
Location: Germany
Old 01-28-2018 , 21:43   Re: Disable warmup completely?
Reply With Quote #2

mp_do_warmup_period 0 ?
DukeBruno123 is offline
Desktop
AlliedModders Donor
Join Date: Sep 2009
Location: C:\Users\Default\
Old 01-29-2018 , 00:15   Re: Disable warmup completely?
Reply With Quote #3

Didn't work either
__________________
Massive Infection:: Piu-Games
Desktop is offline
shanapu
Veteran Member
Join Date: Apr 2015
Location: .de
Old 01-29-2018 , 07:38   Re: Disable warmup completely?
Reply With Quote #4

You havn't mentioned which game...

mp_warmuptime 0
__________________
coding & free software
shanapu is offline
Desktop
AlliedModders Donor
Join Date: Sep 2009
Location: C:\Users\Default\
Old 01-30-2018 , 00:58   Re: Disable warmup completely?
Reply With Quote #5

It's CSGO, already tried mp_warmuptime, mp_do_warmup_period, even mp_freezetime in 0, but i have to kill someone to let the match begin
__________________
Massive Infection:: Piu-Games
Desktop is offline
hamilton5
Veteran Member
Join Date: Oct 2012
Location: USA
Old 01-30-2018 , 07:45   Re: Disable warmup completely?
Reply With Quote #6

but you have not said where you put these cvars and I'm willing to bet they are in the wrong file.

https://developer.valvesoftware.com/..._Configuration
hamilton5 is offline
ghostofmybrain
Veteran Member
Join Date: Mar 2010
Old 01-30-2018 , 17:30   Re: Disable warmup completely?
Reply With Quote #7

Yeah type those three cvars in console and see what it echoes back.

I've noticed that there are some cvars for some reason that I can't set in my sourcemod servers unless they're in a sourcemand cfg (eg rtv.cfg). For example, even though I had tv_enable 1, it wouldn't work with sourcemod installed unless I put it into rtv.cfg.
__________________
Boycott ESEA
My servers
ghostofmybrain is offline
Desktop
AlliedModders Donor
Join Date: Sep 2009
Location: C:\Users\Default\
Old 01-30-2018 , 23:39   Re: Disable warmup completely?
Reply With Quote #8

They're in server.cfg and sourcemod.cfg, i think they are actually working because there is no warmup time, but i have to slay someone to let the match begin.
__________________
Massive Infection:: Piu-Games
Desktop is offline
ambn
Veteran Member
Join Date: Feb 2015
Location: Fun servers
Old 02-06-2018 , 05:55   Re: Disable warmup completely?
Reply With Quote #9

try this:
PHP Code:
public void OnPluginStart()
{
    
HookEvent("round_start"Event_RoundStartEventHookMode_Post);
}

public 
Action Event_RoundStart(Event event, const char[] namebool dontBroadcast)
{
    if (
GameRules_GetProp("m_bWarmupPeriod") == 1)
    {
        
ServerCommand("mp_warmup_end");
    }

__________________
ambn is offline
Desktop
AlliedModders Donor
Join Date: Sep 2009
Location: C:\Users\Default\
Old 03-04-2018 , 16:31   Re: Disable warmup completely?
Reply With Quote #10

Quote:
Originally Posted by ambn View Post
try this:
PHP Code:
public void OnPluginStart()
{
    
HookEvent("round_start"Event_RoundStartEventHookMode_Post);
}

public 
Action Event_RoundStart(Event event, const char[] namebool dontBroadcast)
{
    if (
GameRules_GetProp("m_bWarmupPeriod") == 1)
    {
        
ServerCommand("mp_warmup_end");
    }

Didn't work properly, it detects correctly warmup but only restarts the round, i still have to slay someone to let the match begin.
__________________
Massive Infection:: Piu-Games
Desktop is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 10:06.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode