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



Errors - boomerboom - 15.12.2013

Код:
                    ShowPlayerDialog(playerid, DIALOG_SUCCESS_2, DIALOG_STYLE_MSGBOX,"COL_GREEN"{FFFFFF}Write da pass{00FF40}too get in!","Ok","");
Код:
C:\Users\***\Desktop\SAMP\filterscripts\Untitled.pwn(124) : error 001: expected token: "-string end-", but found "-identifier-"
C:\Users\***\Desktop\SAMP\filterscripts\Untitled.pwn(124) : error 017: undefined symbol "FFFFFF"
C:\Users\***\Desktop\SAMP\filterscripts\Untitled.pwn(124) : warning 217: loose indentation
C:\Users\***\Desktop\SAMP\filterscripts\Untitled.pwn(124) : error 017: undefined symbol "Thank"
C:\Users\***\Desktop\SAMP\filterscripts\Untitled.pwn(124) : fatal error 107: too many error messages on one line
I need this help fast!


Re: Errors - SilentSoul - 15.12.2013

You missed a " on COL_GREEN , correct usage
pawn Код:
ShowPlayerDialog(playerid, DIALOG_SUCCESS_2, DIALOG_STYLE_MSGBOX,"{FFFFFF}Write da pass{00FF40}too get in!","Ok","");
You can simply use {color} instead of "COL_GREEN" etc.. , also you used the green color first then without any letters you switched to the white color 'FFFFFF' so it will be useless!


Re: Errors - boomerboom - 15.12.2013

Quote:
Originally Posted by SilentSoul
Посмотреть сообщение
You missed a " on COL_GREEN , correct usage
pawn Код:
ShowPlayerDialog(playerid, DIALOG_SUCCESS_2, DIALOG_STYLE_MSGBOX,"{FFFFFF}Write da pass{00FF40}too get in!","Ok","");
You can simply use {color} instead of "COL_GREEN" etc.. , also you used the green color first then without any letters you switched to the white color 'FFFFFF' so it will be useless!
Not working.


Re: Errors - SilentSoul - 15.12.2013

Sorry man, you forget the tittle also 'caption' !
pawn Код:
ShowPlayerDialog(playerid, DIALOG_SUCCESS_2, DIALOG_STYLE_MSGBOX,"title here!","{FFFFFF}Write da pass{00FF40}too get in!","Ok","");



Re: Errors - iFiras - 15.12.2013

You just forgot a " before "COL_GREEN" and you forgot the title, try this bro:
pawn Код:
ShowPlayerDialog(playerid, DIALOG_SUCCESS_2, DIALOG_STYLE_MSGBOX,"Write your TITLE HERE!",""COL_GREEN"{FFFFFF}Write da pass{00FF40}too get in!","Ok","");