Need help with a little thing - 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: Need help with a little thing (
/showthread.php?tid=389427)
Need help with a little thing -
UnknownGamer - 02.11.2012
SetTimer("TutorialStep00", 1000, 0);
How do I turn that into only been playerid, and not everybody else?
Re: Need help with a little thing -
zDivine - 02.11.2012
pawn Код:
SetTimerEx("TutorialStep00", 1000, false, "i", playerid); // How yours should look.
SetTimerEx("Name", Interval, Repeating, Constant Format, Float...); // How it's setup.