13.08.2015, 15:28
PHP код:
SetTimer("Iniciar", 1000, true);
stock Iniciar()
{
new
Tempo_Inicial = 15,
static str1[128]
;
format(str1, sizeof(str1), "~n~~n~~n~~n~~n~~n~~n~~n~~n~~w~Carregando... %d", Tempo_Inicial);
GameTextForAll(str1, 1000, 3);
Tempo_Inicial--;
if(Tempo_Inicial <= 0)
{
GameTextForAll("Comeзem!", 1000);
Tempo_Inicial = 0;
KillTimer(Tempo_Inicial);
}
return 1;
}