28.10.2010, 00:13
A solution to this (although it is worse performance-wise) is to do something like:
I think you get the point
pawn Код:
new string[512];
format(string, sizeof(sting), "blabla %d bla \n", number);
format(string, sizeof(sting), "%sthis is the second line: %d \n", string, another number);
format(string, sizeof(sting), "%smore text", string);