SetTimerEx (true or false)
#4

As being said above,
pawn Код:
SetTimerEx("SomeForward", 60000, false, "i", playerid); // execute the timer only ONCE
could be written as
pawn Код:
SetTimerEx("SomeForward", 60000, 0, "i", playerid); // execute the timer only ONCE
or
pawn Код:
SetTimerEx("SomeForward", 60000, true, "i", playerid); // execute the timer repeatedly
as
pawn Код:
SetTimerEx("SomeForward", 60000, 1, "i", playerid); // execute the timer repeatedly
Reply


Messages In This Thread
SetTimerEx (true or false) - by AnonScripter - 11.11.2013, 12:30
Re: SetTimerEx (true or false) - by Evocator - 11.11.2013, 12:31
Re: SetTimerEx (true or false) - by SAMProductions - 11.11.2013, 12:39
Re: SetTimerEx (true or false) - by Loot - 11.11.2013, 13:11

Forum Jump:


Users browsing this thread: