15.09.2011, 11:46
When I have a string that is too long I usually split it into several pieces and then use strcat to make them into one big string.
pawn Код:
new string[500]; //should be big enough
format(string, sizeof string, "long text 1 here");
strcat(string, "this text will be added to 'string' ");
strcat(string, "this text will be added to the new string (which contains the text above)");
//then here you use "string" instead of your long text (as "string" now contains all the text)