31.12.2012, 23:22
Quote:
open your gamemode and all filterscripts you want to use, and check their DialogResponse callback:
the gamemode callback MUST contain a return - preferably return 1; in its end... each filterscript WITH a return in the callbacks' end, will cancel further processing when its called - remove the return 1; ( or 0; ) at the dialog in order to let the next (filter)scripts perform that callback - as long there is no return in the fitlerscripts, the chain will process until the callback in the gamemode gets called, this is where a return 1; is required. you will notice the compiler complaining with a warning "function should return a value". < fuck that, and enjoy your 3 filterscripts working together! |
Thank you for your help