26.09.2012, 21:32
You are only using color embedding within the captions. The color embedding in the captions won't effect or change/ alter the color in the actual string farther down.
Replace this:
with this:
Then farther down, replace this:
with this:
You can also take:
And reduce it to 128 as it is just a waste.
Replace this:
pawn Код:
format(lstring,256,"Your account is registered!\n\nLogin to access your account:");
pawn Код:
format(lstring, 256, "{00FF40}Your account is registered!\n\nLogin to access your account:");
pawn Код:
ShowPlayerDialog(playerid,SecurityDialogQ,DIALOG_S TYLE_INPUT,"{00FF40}Security Question:","Please type your security question!\n\nNOTE:\nType without \"?\"!","OK","");
pawn Код:
ShowPlayerDialog(playerid, SecurityDialogQ, DIALOG_STYLE_INPUT, "{00FF40}Security Question:", "{00FF40}Please type your security question!\n\nNOTE:\nType without \"?\"!", "OK","");
pawn Код:
new lstring[256];
pawn Код:
new lstring[128];