28.03.2015, 10:12
Quote:
How to store text data in a variable with an array?
I tried to make this but didn't work! pawn Code:
|
When using format, or text[15] = "string" it's practically just:
pawn Code:
text[0] = "s";
text[1] = "t";
text[2] = "r";
text[3] = "i";
text[4] = "n";
text[5] = "g";
text[6] = "";
So you have to use ball's method, which works fine for me.
I don't think there's a problem in using it, even though it gives that result, unless your server crashes or something ofcourse.