SA-MP Forums Archive
Dialogs Conflict with other Dialogs with different... - 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: Dialogs Conflict with other Dialogs with different... (/showthread.php?tid=117722)

Pages: 1 2


Re: Dialogs Conflict with other Dialogs with different... - HydraX - 01.01.2010

Still Getting the same errors

pawn Код:
#define TELES1 2
#define TELES2 3
#define TELES3 4
#define TELES4 5
#define TELES5 6
#define TELES6 7
#define TELES7 8
#define TELES8 9
#define TELES9 10

#define WEAPONS1 11
#define WEAPONS2 12
#define WEAPONS3 13
#define WEAPONS4 14
#define WEAPONS5 15
#define WEAPONS6 16
http://pastebin.com/d1ba96c82


Re: Dialogs Conflict with other Dialogs with different... - MerLow - 01.01.2010

You forgot to define the first weapon dialog: WEAPONS

Edit: You forgot to define TELES too.


Try:

pawn Код:
#define TELES1 2
#define TELES2 3
#define TELES3 4
#define TELES4 5
#define TELES5 6
#define TELES6 7
#define TELES7 8
#define TELES8 9
#define TELES9 10
#define TELES10 11

#define WEAPONS1 12
#define WEAPONS2 13
#define WEAPONS3 14
#define WEAPONS4 15
#define WEAPONS5 16
#define WEAPONS6 17
#define WEAPONS7 18
http://pastebin.com/m71b0d296


Re: Dialogs Conflict with other Dialogs with different... - HydraX - 01.01.2010

Complied fine but now none of the dialogs work...


Re: Dialogs Conflict with other Dialogs with different... - MerLow - 01.01.2010

Quote:
Originally Posted by HydraX
Complied fine but now none of the dialogs work...
Where you call the first TELES and WEAPONS dialog?


Re: Dialogs Conflict with other Dialogs with different... - [03]Garsino - 01.01.2010

pawn Код:
#define TELES 0
#define WEAPONS 500
No more to do.


Re: Dialogs Conflict with other Dialogs with different... - HydraX - 01.01.2010

Quote:
Originally Posted by Merlо
Quote:
Originally Posted by HydraX
Complied fine but now none of the dialogs work...
Where you call the first TELES and WEAPONS dialog?
/teles and when you enter the checkpoint


Re: Dialogs Conflict with other Dialogs with different... - HydraX - 01.01.2010

Quote:
Originally Posted by [03
Garsino ]
pawn Код:
#define TELES 0
#define WEAPONS 500
No more to do.
?


Re: Dialogs Conflict with other Dialogs with different... - MerLow - 01.01.2010

Quote:
Originally Posted by HydraX
Quote:
Originally Posted by Merlо
Quote:
Originally Posted by HydraX
Complied fine but now none of the dialogs work...
Where you call the first TELES and WEAPONS dialog?
/teles and when you enter the checkpoint
There are TELES1 and WEAPONS1?


Re: Dialogs Conflict with other Dialogs with different... - [03]Garsino - 01.01.2010

On top of script (not in any function).
pawn Код:
#define WEAPONS 0
#define TELES 500
The DialogResponse part.

http://pastebin.com/f8b1f89b


Re: Dialogs Conflict with other Dialogs with different... - Cezar - 01.01.2010

Quote:
Originally Posted by [03
Garsino ]
On top of script (not in any function).
pawn Код:
#define WEAPONS 0
#define TELES 500
The DialogResponse part.

http://pastebin.com/f8b1f89b
Why should TELES be 500? >.>


Re: Dialogs Conflict with other Dialogs with different... - [03]Garsino - 01.01.2010

Quote:
Originally Posted by Cezar
Quote:
Originally Posted by [03
Garsino ]
On top of script (not in any function).
pawn Код:
#define WEAPONS 0
#define TELES 500
The DialogResponse part.

http://pastebin.com/f8b1f89b
Why should TELES be 500? >.>
SAMP Max player limit is 500, get it?


Re: Dialogs Conflict with other Dialogs with different... - HydraX - 01.01.2010

Quote:
Originally Posted by [03
Garsino ]
Quote:
Originally Posted by Cezar
Quote:
Originally Posted by [03
Garsino ]
On top of script (not in any function).
pawn Код:
#define WEAPONS 0
#define TELES 500
The DialogResponse part.

http://pastebin.com/f8b1f89b
and WEAPONS = 0?

Why should TELES be 500? >.>
SAMP Max player limit is 500, get it?



Re: Dialogs Conflict with other Dialogs with different... - [HiC]TheKiller - 01.01.2010

Quote:
Originally Posted by Cezar
Quote:
Originally Posted by [03
Garsino ]
On top of script (not in any function).
pawn Код:
#define WEAPONS 0
#define TELES 500
The DialogResponse part.

http://pastebin.com/f8b1f89b
Why should TELES be 500? >.>
http://forum.sa-mp.com/index.php?topic=138113.0


Re: Dialogs Conflict with other Dialogs with different... - Cezar - 01.01.2010

Quote:
Originally Posted by [HiC
TheKiller ]
Quote:
Originally Posted by Cezar
Quote:
Originally Posted by [03
Garsino ]
On top of script (not in any function).
pawn Код:
#define WEAPONS 0
#define TELES 500
The DialogResponse part.

http://pastebin.com/f8b1f89b
Why should TELES be 500? >.>
http://forum.sa-mp.com/index.php?topic=138113.0
Unless the dialogs are meant to be different for all players, he does not need that. As I said, I have 23 dialogs in a script, multiple people using the same dialog at the same time, no problems there.