Dialog Color Coding? - 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 Color Coding? (
/showthread.php?tid=373566)
Dialog Color Coding? -
Hyperfire - 30.08.2012
Hi there, I'm experiencing some trouble with my dialogs, Im trying to color my text but as soon as I do it it gets cut off in game.
Here is the code I use, but it gets cut off at "Kills"
Код:
new idbook[128];
format(idbook,sizeof(idbook), "Name:{00D500}%s\n{FFFFFF}Admin Level:{00D500}%i\n{FFFFFF}VIP Level:{00D500}%i\n{FFFFFF}Level:{00D500}%i\n{FFFFFF}Kills:{FF8000}%i\n{FFFFFF}Deaths:{FF0000}%i\n{FFFFFF}Prisoned:{FF0000}%i",pInfo[playerid][UserName],pInfo[playerid][AdminLevel],pInfo[playerid][VIPlevel],pInfo[playerid][Level],pInfo[playerid][Kills],pInfo[playerid][Deaths],pInfo[playerid][Jailed]);
ShowPlayerDialog(playerid,DIALOG_IDBOOK,DIALOG_STYLE_MSGBOX,"ID Book",idbook,"<<<","Exit");
What am I doing wrong? I've also tried "\t to tab them, but the same problem.
Re: Dialog Color Coding? -
Johnson_Brooks - 30.08.2012
Increase your string to [300];
Re: Dialog Color Coding? -
Hyperfire - 30.08.2012
lol thanx for the reply, I cant believe I didn't think of that, thanx for the help man! [REP+] for you
Re: Dialog Color Coding? -
Johnson_Brooks - 31.08.2012
No problem man.
Glad to help