OnFilterScriptExit
From SA-MP
[edit]
OnFilterScriptExit
This callback is called when a filterscript ends. It is only called inside the filterscript which is ending.
This function does not take any parameters.
This function does not return a specific value, it's best to simply ignore it.
public OnFilterScriptExit() { print("\n--------------------------------------"); print(" My script"); print(" Unloaded!!!!!!!!!!!!!!!!!!!!!!!!!!!!"); print("--------------------------------------\n"); return 1; }
