SA-MP Forums Archive
AmxCallPublicGameMode & AmxCallPublicFilterScript - 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: Plugin Development (https://sampforum.blast.hk/forumdisplay.php?fid=18)
+--- Thread: AmxCallPublicGameMode & AmxCallPublicFilterScript (/showthread.php?tid=66674)



AmxCallPublicGameMode & AmxCallPublicFilterScript - D4rkBlade - 23.02.2009

I found this functions looking the SDK script.

Code:
typedef int (*amxcallpublic_t)(char *szFunctionName);

amxcallpublic_t AmxCallPublicFilterScript;
amxcallpublic_t AmxCallPublicGameMode;
Are this functions usable? What they do?


Re: AmxCallPublicGameMode & AmxCallPublicFilterScript - mabako - 23.02.2009

Yes.

You need to initalize it at server-start though, for example:
Code:
AmxCallPublicFilterScript = (amxcallpublic_t)ppData[PLUGIN_DATA_CALLPUBLIC_FS];
AmxCallPublicGameMode = (amxcallpublic_t)ppData[PLUGIN_DATA_CALLPUBLIC_GM];
in the Load-function.

Notice just this thing: You can't pass any parameters as long as you do not have the AMX-pointers (and if you have them, you could use Amx_FincPublic/amx_Exec on your own as well). That's the main argument why this isn't practical to use, but if you do never pass parameters, you can of course use that. Since I personally have callbacks with parameters, I would not see why to use AmxCallPublicFilterScript/AmxCallPublicGameMode. For the fact I tested AmxCallPublicGameMode just right now on a 0.2X server and it appeared to work, and both returned addresses do point to functions, they should be useable.

AmxCallPublicFilterScript( char .. ) - calls that public function in all filterscripts
AmxCallPublicGameMode( char .. ) - calls that public function in the gamemode.


Re: AmxCallPublicGameMode & AmxCallPublicFilterScript - D4rkBlade - 23.02.2009

Yes, some time after this post I have tested the functions.
But anyway thanks mabako for the help, maybe it can be useful for other people