16.08.2011, 15:36
it's sending a lot of messages that says "You are AFK" even when i'm not afk...
and i'm checking if i'm afk with this:
it's always says "Not Afk".
and i'm checking if i'm afk with this:
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if(!strcmp("/check", cmdtext, true))
{
if(Afk[playerid])return SendClientMessage(playerid, 0xFFFFFFFF, "Afk");
return SendClientMessage(playerid, 0xFFFFFFFF, "Not Afk");
}
return 0;
}