15.01.2015, 17:34
Even if I doubt that spaces don't work, you can add something like this:
pawn Код:
new space[2] = " ";
format(string, sizeof(string), "%s", space); // will store only a space in the string.
format(string, sizeof(string), "%s%s", space, space); // will store 2 spaces in the string.