13.04.2012, 23:20
I suggest you never call 'gmx' in the server console. Make a command so it calls it via the script, and also kicks the players so that they have to restart their game. Thinks get buggy when a client does't restart on gmx's.
pawn Код:
CMD:gmx(playerid, params[])
{
for(new i=0;i<MAX_PLAYERS;i++) // loops through all the players
{
Kick(i); // kicks them
{
SendRconCommand("gmx"); // Sends the Rcon command.
return 1;
}