View Single Post
Bacardi
Veteran Member
Join Date: Jan 2010
Location: mom's basement
Old 03-31-2021 , 19:29   Re: CSGO Cannot Vote on Native Map Vote Video included
Reply With Quote #2

Code:
"mp_endmatch_votenextleveltime" = "20"
FCVAR_GAMEDLL FCVAR_RELEASE 
- If mp_endmatch_votenextmap is set, players have this much time to vote on the next map at match end.
Increase time.
Add cvar in game mode override config file.

Example if casual game mode (game_type 0; game_mode 0), use gamemode_casual_server.cfg

*edit
By the way, are you in spectator team ?

*edit
Here little... hack
PHP Code:
public void OnPluginStart()
{
    
HookEventEx("cs_intermission"cs_intermission);
}

public 
void cs_intermission(Event event, const char[] namebool dontBroadcast)
{
    for(
int i 1<= MaxClientsi++)
    {
        if(!
IsClientInGame(i) || IsFakeClient(i) || GetClientTeam(i) != 1) continue;
        
        
ChangeClientTeam(i0);
    }


Last edited by Bacardi; 03-31-2021 at 20:00.
Bacardi is offline