View Single Post
dangerlord63
Senior Member
Join Date: Aug 2011
Old 04-01-2021 , 03:58   Re: CSGO Cannot Vote on Native Map Vote Video included
Reply With Quote #3

Quote:
Originally Posted by Bacardi View Post
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);
    }

mp_endmatch_votenextleveltime is already 20
and No, player was in team when this happened.
Should i still try this plugin?
dangerlord63 is offline