15.07.2012, 15:47
pawn Код:
forward Start(bool:redo);
public Start()
{
for(new i; i < MAX_PLAYERS; i++)
{
StopCounting--;
new string[256];
format(string,256,"~w~%d",StopCounting);
return GameTextForAll(string,1200,3);
if(StopCounting <= 0)
{
KillTimer(timer);
gaz = 0;
TogglePlayerControllable(i,1);
}
else
{
PlayerPlaySound(i,1056,0.0,0.0,0.0);
SetTimer("Start",1000,0);
SetTimer("gaz",1000,0);
gaz = 13;
}
}
return 1;
}
//----------
if (strcmp("/mycommand", cmdtext, true, 10) == 0)
{
StopCounting = 3;
timer = SetTimerEx("Start", 0, 1, "d", playerid);
return 1;
}
return 0;
}
Why does my count showing nonsenses? He runs very fast and goes up to -1500

