13.06.2011, 22:49
pawn Код:
// Topo
forward Um(); forward Dois(); forward Tres(); forward Quatro(); forward Cinco(); forward Ja();
// Comando
if(strcmp(cmdtext, "/contar", true) == 0)
{
SetTimer("Cinco", 1000, 0);
SetTimer("Quatro", 2000, 0);
SetTimer("Tres", 3000, 0);
SetTimer("Dois", 4000, 0);
SetTimer("Um", 5000, 0);
SetTimer("Ja", 6000, 0);
return true;
}
// Final
public Cinco() return GameTextForAll("~w~5",2000,3);
public Quatro() return GameTextForAll("~w~5~n~~b~4",2000,3);
public Tres() return GameTextForAll("~w~5~n~~b~4~n~~y~3",2000,3);
public Dois() return GameTextForAll("~w~5~n~~b~4~n~~y~3~n~~p~2",2000,3);
public Um() return GameTextForAll("~w~5~n~~b~4~n~~y~3~n~~p~2~n~~r~1",2000,3);
public Ja() return GameTextForAll("~w~5~n~~b~4~n~~y~3~n~~p~2~n~~r~1~n~~g~GO GO GO!",3000,3);