View Single Post
ZASTRELIS
Veteran Member
Join Date: Nov 2010
Location: Siberia, Irkutsk
Old 05-21-2018 , 10:26   Re: [csgo] how to stop server from makinh .nav files for maps
Reply With Quote #14

Not found any solve for this problem. But I understand that it often happens at warmup round, so.. -nobots + fix

Code:
public OnPluginStart() {     AddCommandListener(Command_JoinTeam, "jointeam"); } public Action Command_JoinTeam(int client, const char[] command, int argc) {     if(!IsValidated(client) || (argc < 1))     {         return Plugin_Stop;     }         if(GameRules_GetProp("m_bWarmupPeriod") && GetClientTeam(client) >= 2)     {         PrintToConsole(client, "Spawn Blocked!");         return Plugin_Stop;     }         ... }

Last edited by ZASTRELIS; 05-21-2018 at 10:39.
ZASTRELIS is offline