SA-MP Forums Archive
dialogs :\ [SOLVED] - 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 :\ [SOLVED] (/showthread.php?tid=148974)



dialogs :\ [SOLVED] - pmk1 - 20.05.2010

solved


Re: dialogs :\ - ViruZZzZ_ChiLLL - 20.05.2010

Well I get this error all the time
Which means, your message in the dialog
is too long!


Re: dialogs :\ - Calgon - 20.05.2010

pawn Код:
new name[256];
    new string[256];
Names NEVER exceed 24 characters (MAX_PLAYER_NAME definition).
You're not using 256 cells for the string, you're using around 64.

Furthermore, there's only so much you can fit in to on one line.


Re: dialogs :\ - pmk1 - 20.05.2010

yea thanks for the advices

but i cannot have more stuff in my dialog?


Re: dialogs :\ - ViruZZzZ_ChiLLL - 20.05.2010

Quote:
Originally Posted by pmk1
yea thanks for the advices

but i cannot have more stuff in my dialog?
Yes, you can only have a certain amount of letters in one dialog.
All you have to do is make a response button for Next and Back


Re: dialogs :\ - pmk1 - 20.05.2010

yea, thanks anyway . But sa-mp's team should make the dialogs longer;
with a scroll down function on them.


Re: dialogs :\ - ViruZZzZ_ChiLLL - 20.05.2010

Quote:
Originally Posted by pmk1
yea, thanks anyway . But sa-mp's team should make the dialogs longer;
with a scroll down function on them.
Yeah, they should Especially for the MSGBOX.
Well the scroll down function can be found in DIALOG_STYLE_LIST


Re: dialogs :\ - pmk1 - 20.05.2010

yea i meant the msg box, w/e


Re: dialogs :\ - ViruZZzZ_ChiLLL - 20.05.2010

Quote:
Originally Posted by pmk1
yea i meant the msg box, w/e
Oh, lol. Yeah, they should, at least make the rows go until 20 rows


Re: dialogs :\ - pmk1 - 20.05.2010

solved