SA-MP Forums Archive
Dialog Problems ... - 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: Dialog Problems ... (/showthread.php?tid=252704)



Dialog Problems ... - Michael@Belgium - 02.05.2011

SOLVED



Re: Dialog Problems ... - Anteino - 02.05.2011

https://sampforum.blast.hk/showthread.php?tid=249644


Re: Dialog Problems ... - Michael@Belgium - 02.05.2011

Quote:
Originally Posted by Anteino
Посмотреть сообщение
What is this ?! xD BTW: don't work


AW: Dialog Problems ... - [DR]Reaper[GEARS] - 02.05.2011

OKay whats you showPlayerDialog copy this line and give it 2 me pls. I think the fault is in the show player dialog line ^^


Re: AW: Dialog Problems ... - Michael@Belgium - 02.05.2011

Quote:
Originally Posted by [DR]Reaper[GEARS]
Посмотреть сообщение
OKay whats you showPlayerDialog copy this line and give it 2 me pls. I think the fault is in the show player dialog line ^^
ah ok here it is:

pawn Код:
ShowPlayerDialog(playerid,MakeFire,DIALOG_STYLE_LIST,"Makefire dialog:","{00A6F9}Train Station\n{F900E0}Market\n{00A6F9}Burger Shot\n{F900E0}ZIP Clothes Shop\n{00A6F9}Otto's Carshop","Makefire", "Cancel");



        ShowPlayerDialog(playerid,Backup,DIALOG_STYLE_LIST,"Backup dialog","{00A6F9}Train Station\n{F900E0}Market\n{00A6F9}Burger Shot\n{F900E0}ZIP Clothes Shop\n{00A6F9}Otto's Carshop","Need Backup !", "Cancel");



AW: Dialog Problems ... - [DR]Reaper[GEARS] - 02.05.2011

okay found ^^
ShowPlayerDialog(playerid,MakeFire,DIALOG_STYLE_LI ST,"Makefire dialog:","{00A6F9}Train Station\n{F900E0}Market\n{00A6F9}Burger Shot\n{F900E0}ZIP Clothes Shop\n{00A6F9}Otto's Carshop","Makefire", "Cancel");

use this

ShowPlayerDialog(playerid,MakeFire,DIALOG_STYLE_LI ST,"Makefire dialog:","{00A6F9}Train Station\n\r{F900E0}Market\n\r{00A6F9}Burger Shot\n\r{F900E0}ZIP Clothes Shop\n\r{00A6F9}Otto's Carshop","Makefire", "Cancel");


you need a \r if you make a new "listitem"
/n is only new line ^^


Re: AW: Dialog Problems ... - Michael@Belgium - 02.05.2011

Quote:
Originally Posted by [DR]Reaper[GEARS]
Посмотреть сообщение
okay found ^^
pawn Код:
ShowPlayerDialog(playerid,MakeFire,DIALOG_STYLE_LIST,"Makefire dialog:","{00A6F9}Train Station\n{F900E0}Market\n{00A6F9}Burger Shot\n{F900E0}ZIP Clothes Shop\n{00A6F9}Otto's Carshop","Makefire", "Cancel");
use this

pawn Код:
ShowPlayerDialog(playerid,MakeFire,DIALOG_STYLE_LIST,"Makefire dialog:","{00A6F9}Train Station\n\r{F900E0}Market\n\r{00A6F9}Burger Shot\n\r{F900E0}ZIP Clothes Shop\n\r{00A6F9}Otto's Carshop","Makefire", "Cancel");
you need a \r if you make a new "listitem"
/n is only new line ^^
DAMN >_< still don't work ;-/


Re: AW: Dialog Problems ... - Tee - 02.05.2011

Quote:
Originally Posted by [DR]Reaper[GEARS]
Посмотреть сообщение
okay found ^^
ShowPlayerDialog(playerid,MakeFire,DIALOG_STYLE_LI ST,"Makefire dialog:","{00A6F9}Train Station\n{F900E0}Market\n{00A6F9}Burger Shot\n{F900E0}ZIP Clothes Shop\n{00A6F9}Otto's Carshop","Makefire", "Cancel");

use this

ShowPlayerDialog(playerid,MakeFire,DIALOG_STYLE_LI ST,"Makefire dialog:","{00A6F9}Train Station\n\r{F900E0}Market\n\r{00A6F9}Burger Shot\n\r{F900E0}ZIP Clothes Shop\n\r{00A6F9}Otto's Carshop","Makefire", "Cancel");


you need a \r if you make a new "listitem"
/n is only new line ^^
No you don't I use \n all the time.

Try this:

pawn Код:
ShowPlayerDialog(playerid,MakeFire,DIALOG_STYLE_LIST,"Makefire dialog:","{00A6F9}Train Station{F900E0}\nMarket{00A6F9}\nBurger Shot{F900E0}\nZIP Clothes Shop{00A6F9}\nOtto's Carshop","Makefire", "Cancel");



        ShowPlayerDialog(playerid,Backup,DIALOG_STYLE_LIST,"Backup dialog","{00A6F9}Train Station{F900E0}\nMarket{00A6F9}\nBurger Shot{F900E0}\nZIP Clothes Shop{00A6F9}\nOtto's Carshop","Need Backup !", "Cancel");



Re: AW: Dialog Problems ... - Michael@Belgium - 02.05.2011

Quote:
Originally Posted by Tee
Посмотреть сообщение
No you don't I use \n all the time.

Try this:

pawn Код:
ShowPlayerDialog(playerid,MakeFire,DIALOG_STYLE_LIST,"Makefire dialog:","{00A6F9}Train Station{F900E0}\nMarket{00A6F9}\nBurger Shot{F900E0}\nZIP Clothes Shop{00A6F9}\nOtto's Carshop","Makefire", "Cancel");



        ShowPlayerDialog(playerid,Backup,DIALOG_STYLE_LIST,"Backup dialog","{00A6F9}Train Station{F900E0}\nMarket{00A6F9}\nBurger Shot{F900E0}\nZIP Clothes Shop{00A6F9}\nOtto's Carshop","Need Backup !", "Cancel");
OMG ... Why it still doesn't work ??! WTF dude ... it's a bug ??
Or it just can't a SendClientMessage() in a OnDialogResponse()
lol


Re: Dialog Problems ... - Tee - 02.05.2011

No you can't and what are the IDs for "MakeFire" and "Backup"?