02.06.2013, 05:10
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:
Or by doing it like this:
Either split the strings using strcat... like so:
pawn Код:
strcat(string, "rule 1 - information");
strcat(string, "rule 2 - information");
pawn Код:
strcat(string, "rule 1 - information rule 2 - information rule 3 - information \
rule 4 - information rule 5 - information rule 6 - information");