11.10.2014, 05:56
top of your script
and show your afk cmd, just in-case.
pawn Код:
bool:IsPlayerAFK[MAX_PLAYERS];
pawn Код:
CMD:back(playerid,params[])
{
if(IsPlayerAfk[playerid] == false) return SendClientMessage(playerid, -1, "{FF0000}[SERVER]{ffffff}:You are not AFK");
if(IsPlayerAfk[playerid] == true) TogglePlayerControllable(playerid,1);
IsPlayerAFK[playerid] = false;
return 1;
}