14.07.2011, 19:10
Just create a command that loops through all players, kicks them, and then initiates GameModeExitFunc();
God dammit..
Like this:
Quote:
Originally Posted by Nazi Germany
This forum requires that you wait 120 seconds between posts. Please try again in 27 seconds.
|
Like this:
pawn Код:
COMMAND:restart(playerid, params[])
{
SendClientMessageToAll(-1, "{FFFFFF}Restarting, please rejoin the server!");
for(new i = 0; i < MAX_PLAYERS; i++)
{
Kick(i);
}
GameModeExit();
return 1;
}