02.07.2013, 14:41
pawn Code:
forward StartPause(playerid);
public StartPause(playerid)
{
if(Contagem[playerid] == 999)
{
KillTimer(TempoContagem[playerid]);
return true;
}
new string[64];
Contagem[playerid]++;
format(string, sizeof(string), "AFK %d Segundos", Contagem[playerid]);
Update3DTextLabelText(Pause[playerid], 0xEE7600FF, string);
return 1;
}