04.05.2015, 19:02
Sucede que este countdown
Lo uso en diferentes scripts con conteos largos y pasa que cuando termina se buguea, continua con nъmeros negativos.
Que tiene de malo el cуdigo?
PHP код:
forward DuelCountDown(playerid);
public DuelCountDown(playerid)
{
new
tString[128] ;
Conteo[playerid] --;
PlayerPlaySound(playerid, 1057, 0.0, 0.0, 0.0);
format(tString, sizeof(tString), "~w~%d", Conteo[playerid]);
GameTextForPlayer(playerid, tString, 900, 3);
if(Conteo[playerid] == 0)
{
KillTimer(DueloTimer[playerid]);
TogglePlayerControllable(playerid, 1);
GameTextForPlayer(playerid,"~g~YA", 900, 3);
return 1;
}
return 1;
}
Que tiene de malo el cуdigo?