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.