Posts: 24
Threads: 3
Joined: Jun 2011
Reputation:
0
I want to ask you if it is better to use global timers (SetTimer) or parallel async player timers (SetTimerEx) to check, store, edit variables, position, vehicles etc..
Posts: 596
Threads: 75
Joined: Nov 2015
SetTimer
It is used when there is no special syntax to execute that public function forexample "OnDerbyStart()"
SetTimerEx
It is not called player timers,it is used to execute public functions that have some special syntax,it is mostly used for player public functions like "KickPlayer(playerid)" thats why most of newbies think its a timer thats only used for player public function which destroys their understanding,i recommend you to learn from wiki before experimenting with functions.