help me pls - 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: help me pls (
/showthread.php?tid=264738)
help me pls -
Hellhound17 - 27.06.2011
im using a banking system from Etch
http://forum.sa-mp.com/showthread.ph...ighlight=banks
i got a little bit of a problem with it /banktele works
i can go inside the bank but...
i do /bank and the dialog comes up then i click on any 1 of the options and click select the dialog will just close and nothing happens, how to fix??
Re: help me pls -
Babul - 27.06.2011
one of your filterscripts' DialogResponses() are returning too early, terefore disturbing your previously loaded filterscripts callbacks. i suggest you these steps:
edit your server.cfg - remove all filterscripts from it EXCEPT your bank filterscript, then
start up server, and check out if it works. then start loadinf more filterscripts. and try out the dialog each time.
the later a filterscript gets loaded, the earlier its callbacks will get triggered.
i hope this trick will solve it
edit: i got no returns at all in my filterscripts in that (end of) callback. only the gamemode (which gets loaded first indeed) contains a return 1; - this even works for each filterscripts' /cmds to let them all show up their added commands. the gamemode simply contains a
Код:
cmd:cmds(playerid,params[]){return1;}
^^
Re: help me pls -
Hellhound17 - 27.06.2011
Quote:
Originally Posted by Babul
one of your filterscripts' DialogResponses() are returning too early, terefore disturbing your previously loaded filterscripts callbacks. i suggest you these steps:
edit your server.cfg - remove all filterscripts from it EXCEPT your bank filterscript, then
start up server, and check out if it works. then start loadinf more filterscripts. and try out the dialog each time.
the later a filterscript gets loaded, the earlier its callbacks will get triggered.
i hope this trick will solve it
|
tyvm!