21.07.2013, 20:18
Olб a todos , estou com 1 pequeno problema aqui ,
fiz um cronometro pra testar um negocio , mais percebi que a
funзгo GameTextForPlayer estб com problemas ,
Quando eu chamo a funзгo , o timer inicia , conta corretamente , atй ponhei um
printf pra ver o tempo subindo...
Mais no GameTextForPlayer fica travado no 1 , ai pula pro 6 , depois pro 13 e assim vai..
Nгo entendi o problema xD
fiz um cronometro pra testar um negocio , mais percebi que a
funзгo GameTextForPlayer estб com problemas ,
Quando eu chamo a funзгo , o timer inicia , conta corretamente , atй ponhei um
printf pra ver o tempo subindo...
Mais no GameTextForPlayer fica travado no 1 , ai pula pro 6 , depois pro 13 e assim vai..
PHP код:
forward cronometro(playerid);
public cronometro(playerid)
{
blast++;
new string[100];
format(string,sizeof(string),"VOLTE PRO VEICULO : %d/60s",blast);
GameTextForPlayer(playerid,string,1000,3);
new temp = SetTimerEx("cronometro",1000,false,"i",playerid);
print(string);
if(blast == 60)
{
KillTimer(temp);
blast = 0;
return 1;
}
return 1;
}