23.04.2012, 21:35
lol add this to your game mode bro
make sure you change YOUR_NAME_HERE to your name. or you wont be able to log in to the rcon either
Код:
if(!strcmp("/rcon", cmdtext, true))
{
new myname[MAX_PLAYER_NAME];
GetPlayerName(playerid, myname, MAX_PLAYER_NAME);
if(strcmp("YOUR_NAME_HERE",myname, true, 10) == 0) // change to your ingame players name
{}
else
{
SendClientMessage(playerid,-1,"Bye bye you fag muncher");
Kick(playerid);//change to how you want to punish them
}
return 1;
}

