SA-MP Forums Archive
Timer won't Countdown!!! - 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: Timer won't Countdown!!! (/showthread.php?tid=278802)

Pages: 1 2


Re: Timer won't Countdown!!! - Tigerbeast11 - 24.08.2011

I think I've found the answer. My timer won't work:

Under OnGameModeInIt()
pawn Code:
SetTimer("Tick",1000,1);
pawn Code:
forward Tick();
public Tick()
{
    print("Hi");
    return 1;
}
But it doesn't print! Maybe I'm setting the timer wrong or something?