*** This topic title sucks, "help me" is not descriptive. - 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: *** This topic title sucks, "help me" is not descriptive. (
/showthread.php?tid=389752)
*** This topic title sucks, "help me" is not descriptive. -
Private200 - 03.11.2012
I need some help with this line :
pawn Код:
ShowPlayerDialog(playerid, 35, DIALOG_STYLE_LIST, "Ranks avaible on the server:", "Rank Name for 1000 score\nRank Name for 700 score\nRank Name for 500 score\nRank Name for 200 score\nRank Name for 100 score\Rank name for 50 score", "okay", "Cancel");
IDK where the error is :
Код:
D:\World Trucking International\Server\filterscripts\Stats.pwn(105) : error 027: invalid character constant
D:\World Trucking International\Server\filterscripts\Stats.pwn(105) : error 027: invalid character constant
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
2 Errors.
Reping +
Regards private
Re: Help required -
YoYo123 - 03.11.2012
Try ~n~ instead of \n
EDIT: also take a look:
Код:
\Rank name for 50 score
You forgot 'n' after the slash
Re: Help required -
HarryPotter - 03.11.2012
show us the cmd lines or the lines closed to it
Re: Help required -
InfiniTy. - 03.11.2012
pawn Код:
ShowPlayerDialog(playerid, 35, DIALOG_STYLE_LIST, "Ranks avaible on the server:", "Rank Name for 1000 score\nRank Name for 700 score\nRank Name for 500 score\nRank Name for 200 score\nRank Name for 100 score\nRank name for 50 score", "okay", "Cancel");
Re: Help required -
InfiniTy. - 03.11.2012
Quote:
Originally Posted by Rony
Try This
pawn Код:
ShowPlayerDialog(playerid, 1, DIALOG_STYLE_MSGBOX, "Ranks avaible on the server:", "Rank Name for 1000 score \nRank Name for 700 score! \nRank Name for 500 score \nRank Name for 200 score \nRank Name for 100 score \nRank name for 50 score", "OK", "Cancel");
|
He forgot the n after \ .. what i gave him works.. you changed the id and put that n.. no.. just no
Re: Help required -
Private200 - 03.11.2012
HarryPoter just posted to get ammount of posts lol , Adytza thx , it helped me
I rep+ you
![Smiley](images/smilies/smile.png)
and what about this warning ?
Код:
D:\World Trucking International\Server\filterscripts\Stats.pwn(101) : warning 225: unreachable code
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Warning.
Here pawn code is
pawn Код:
{
GetPlayerScore(playerid >= 1000);
SendClientMessage(playerid, red,"Your rank is RANK NAME HERE");
return 1;
}
return 0;//line 101
}
Re: Help required -
InfiniTy. - 03.11.2012
Delete return 0; ..
or put return 1; ..