Help me - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Help me (
/showthread.php?tid=111384)
Help me -
Ozas.. - 01.12.2009
Thanks.
Re: Help me -
Google63 - 01.12.2009
KillTimer 1st argument needs reference to timer.
Example:
new
t_1 = SetTimer(/*params*/);
KillTimer(t_1);
Re: Help me -
Correlli - 01.12.2009
pawn Код:
forward PirateMoney(playerid);
new
myTimer;
myTimer = SetTimer("PirateMoney", 1000, true);
KillTimer(myTimer);
Re: Help me -
Ozas.. - 01.12.2009
Delete.