15.09.2012, 07:10
pawn Код:
new IsPlayerPaused[MAX_PLAYERS]; //You must create a variable or else the compiler wont execute the function.
public AFK(playerid)
{
if(IsPlayerPaused(playerid)) // THIS IS THE LINEEEE
{
Kick(playerid);
new string[128], playername[24];
GetPlayerName(playerid, playername, 24);
format(string, sizeof(string), "(GC)%s e isklucen od serverot.Pricina: AFK", playername);
SendClientMessageToAll(0xAFAFAFAA, string);
}
return 1;
}