26 Errors of #75 - 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: 26 Errors of #75 (
/showthread.php?tid=414115)
26 Errors of #75 -
maiky1499 - 08.02.2013
When I compile the gamemode I have 26 errors of error #75:
Код:
input line too long (after substitutions)
The problem is that I have those errors on lines that does not exists, last two lines of the gamemode and lines that does not exists.
I had this before, this error on some line that I made and I requested help; there's the topic:
https://sampforum.blast.hk/showthread.php?tid=413723
But it's can't be because of that, even when I disabled it with /* I had the same errors.
Also I've noticed that:
/imageshack/img268/5064/46367698.png
It's too long, very long.
Re: 26 Errors of #75 -
maiky1499 - 08.02.2013
Help
Re: 26 Errors of #75 -
bensmart469 - 08.02.2013
The limit of lines on Pawn is 512, are you sure that you have removed the old dialog thing and added this? Post the part of the script here, i will check it for you
Re: 26 Errors of #75 -
maiky1499 - 08.02.2013
Even when I disabled it with /* I had the same errors, but here you go:
Код:
case 34: //Report
{
new dialog_str[575];
format(dialog_str, sizeof(dialog_str), "Hello there player!\nWe, the staff of Land of Role Play work very hard to keep your gaming experience top notch and you contented.\n We ask you to review your report once again and make sure you don't use");
format(dialog_str, sizeof(dialog_str), "%s the wrong chat for minor things whom forwarded through /helpme or /newbie.\n However, you may freely press the Confirm button if you don't feel so, or want to report a player for wrong-doing.\nBare in mind", dialog_str);
format(dialog_str, sizeof(dialog_str), "%s that you are not a special player, but a regular player like the rest of us.\nAlso, be patient to get better response from the staff team.\nHappy Role Playing!", dialog_str);
ShowPlayerDialog(playerid, 34, DIALOG_STYLE_MSGBOX, "Report Information", dialog_str, "Accept", "Cancel");
}