13.03.2014, 19:02
Sistema de Contagem by Krusher
No comeзo do GM
Defina no final do gm, ou em outro local.
Defina no final do gm, ou em outro local.
No comeзo do GM
Код:
new Tempocnt = 5, string[10];
Код:
forward Contagem(); public Contagem() { if(Tempocnt == 0) { format(string, sizeof(string),"%d", Tempocnt); GameTextForAll("~r~Go! Go! Go!", 1000, 3); Tempocnt = 5; return false; } format(string, sizeof(string),"~w~%d", Tempocnt); GameTextForAll(string,1000,3); SetTimer("Contagem", 1000, false); return Tempocnt--; }
Код:
COMMAND:contagem(playerid, params[]) { { if (APlayerData[playerid][PlayerLevel] >= 1) SendAdminText(playerid, "/contagem", params); if(Tempocnt != 5) return SendClientMessage(playerid, -1, "ERRO: A contagem jб estб em andamento, espere ela acabar."); Contagem(); return 1; } }