Input line too long (after substitutions) error with diagog rules
#4

It means you have too many characters on a single line in your script. You could have quickly found the answer by searching, by the way. Do that in the future. Not searching is what will cause many people here to dislike you.

Either split the strings using strcat... like so:

pawn Код:
strcat(string, "rule 1 - information");
strcat(string, "rule 2 - information");
Or by doing it like this:

pawn Код:
strcat(string, "rule 1 - information  rule 2 - information  rule 3 - information \
rule 4 - information  rule 5 - information  rule 6 - information"
);
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)