SA-MP Forums Archive
Timer (SetTimerEx) - 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)
+--- Thread: Timer (SetTimerEx) (/showthread.php?tid=356000)



Timer (SetTimerEx) - Tee - 02.07.2012

It returns the ID of the timer that was created, but what does the ID start at? 0, 1, what?


Re: Timer (SetTimerEx) - JaTochNietDan - 02.07.2012

Why not check and see?

pawn Код:
printf("Timer ID: %i", SetTimerEx("Function", 1000, false, "i", 0));
From what I can see, they start at 2


Re: Timer (SetTimerEx) - Tee - 02.07.2012

Thanks!