SA-MP Forums Archive
Dialog Problem - 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)
+--- Thread: Dialog Problem (/showthread.php?tid=362393)



Dialog Problem - MaxEMO - 24.07.2012

Well,i have two/three FilterScripts which uses dialog,when i run the FS,and do the command to open the dialog and press whats in it,it just closes and nothing happens,anyone know why or how to fix that?


Re: Dialog Problem - Jarnu - 24.07.2012

its maybe your DIALOGIDS clash with each other..
Example,

Your 1st FS's dialog id = To your 2nd and 3rd FS's dialogid


Re: Dialog Problem - [XS]Scarface - 24.07.2012

i had this problem too
what you have to do is go to server.cfg >> filterscripts and place the filterscripts which contain dialogs first then put the other FS ...
i think it will work


Re: Dialog Problem - Devilxz97 - 24.07.2012

maybe your Dialogid is same with other your Filterscript . .

change your DialogID

example

pawn Код:
#define DIALOG_BLABLABLA 1



Re: Dialog Problem - MaxEMO - 24.07.2012

Didn't work scarface,and jarnu i didn't get what you said


Re: Dialog Problem - Devilxz97 - 24.07.2012

show me the 3 of your fs Dialog id


Re: Dialog Problem - riezman97 - 24.07.2012

Lets say this for short.

You have 2 filterscript and a gamemode of course.

Filterscript A, you got this code on.

pawn Код:
#define DIALOG_SKIN 1
and in Filterscript B, you got this code.

pawn Код:
#define DIALOG_COLOUR 1
and in your gamemode, you got this.

pawn Код:
#define DIALOG_ANIMS 1
So, you just have to scramble the numbers to like 999 or 342 on each script.


Re: Dialog Problem - Jarnu - 24.07.2012

Quote:
Originally Posted by riezman97
Посмотреть сообщение
Lets say this for short.

You have 2 filterscript and a gamemode of course.

Filterscript A, you got this code on.

pawn Код:
#define DIALOG_SKIN 1
and in Filterscript B, you got this code.

pawn Код:
#define DIALOG_COLOUR 1
and in your gamemode, you got this.

pawn Код:
#define DIALOG_ANIMS 1
So, you just have to scramble the numbers to like 999 or 342 on each script.
This is the Exact Example
like he said.. you may got same dialog id in each of the Filterscript!
Change it to the number which is not used in any of your FS or GM