07.07.2011, 23:42
You can't reset the gamemode (gmx) for one player, you can only do this to reset the game for EVERY player.
To see a list of RCON commands, goto:
Change:
To the RCON command, and then change:
To the RCON command you want to happen, e.g:
Код:
if(strcmp(cmd,"/gmx",true) == 0)
{
if(!IsPlayerAdmin)
{
SendClientMessage(playerid,color,"You are not an RCON Admin!");
return 1;
}
else if(IsPlayerAdmin)
{
SendRconCommand("gmx");
return 1;
}
}
Change:
Код:
/gmx
Код:
("gmx");
Код:
("exit");

