Error #75
#1

I can't compile the gamemode because an error that I don't know how to fix:
Error #75 input line too long (after substitutions)

That's what I wrote:
Code:
ShowPlayerDialog(playerid, 33, DIALOG_STYLE_MSGBOX, "Report Information", "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 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 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!", "Accept", "Cancel");
Reply
#2

Pawno has a line limit of 512 characters per line. Try this instead.

Code:
ShowPlayerDialog(playerid, 33, DIALOG_STYLE_MSGBOX, "Report Information", "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 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.\n
Bare in mind 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!", "Accept", "Cancel");
Reply
#3

When the new line started the colros changes, I mean the format, it's should be blue but it's grey like it's not a format.
Reply
#4

Try to use strcat.
Reply
#5

How to use it on ShowPlayerDialog, how to define it?
Reply
#6

Try update your Plugins
Reply
#7

My plugins are on the newest verision.
Reply
#8

Quote:
Originally Posted by Nicks
View Post
Try update your Plugins
It's nothing to do with the plugins, it's common pawn compiler error, anyway, you can use that method:

pawn Code:
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, 33, DIALOG_STYLE_MSGBOX, "Report Information", dialog_str, "Accept", "Cancel");
Reply
#9

Thank you, works.
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)