help with error rep+
#4

The input line is too long. PAWN compiler does not support such long lines - the number of characters in one line is limited. Try this compiler: https://sampforum.blast.hk/showthread.php?pid=2768123#pid2768123 it fixes this problem (actually it just increases the limit). Direct download: http://www.mediafire.com/?jqz4785ym821g5x just replace pawnc.dll and pawncc.exe in pawno folder. ZCMD uses #define directive for command definitions and preprocessor treates everything after #define as a single line.

OR

You can define your string before:
new long_string[] = "bla bla bla...";
...
CMD:command(playerid,params[])
{
ShowPlayerDialog(playerid,DIALOG_HELP,DIALOG_STYLE _MSGBOX,"Help:",long_string,"OK","");
return 1;
}
Reply


Messages In This Thread
help with error rep+ - by Mijata - 24.03.2015, 21:33
Re: help with error rep+ - by Darrenr - 24.03.2015, 23:07
Re: help with error rep+ - by RedCode - 24.03.2015, 23:08
Re: help with error rep+ - by bartekdvd - 24.03.2015, 23:31
Re: help with error rep+ - by JaydenJason - 25.03.2015, 00:20
Re: help with error rep+ - by Wolfe - 25.03.2015, 00:31

Forum Jump:


Users browsing this thread: 1 Guest(s)