[Callback`s]What`s go first ? - 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: [Callback`s]What`s go first ? (
/showthread.php?tid=419365)
[Callback`s]What`s go first ? -
Azazelo - 28.02.2013
I interested what callback will be first to strike(be called):
pawn Код:
//in game mode
OnPlayerClickTextDraw(playerid, Text:clickedid)
//or in Filter Script
OnPlayerClickTextDraw(playerid, Text:clickedid)
Im interested in what is order of execute?
Re: [Callback`s]What`s go first ? -
Vince - 28.02.2013
Filterscripts are called first, in the order they appear in server.cfg.
Re: [Callback`s]What`s go first ? -
Azazelo - 28.02.2013
Using return 0 are the parameter returned to game mode or not ?