24.07.2009, 13:02
Don't bump...
Add a:
At the top of your script, and then replace all your
With this:
And then add this under OnGameModeInit:
Add a:
pawn Код:
new woot;
pawn Код:
SetTimerEx("Timer", 40000, 0, "i", playerid);
pawn Код:
woot = SetTimerEx("Timer", 40000, 0, "i", playerid);
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
KillTimer(woot);
return 1;
}

