11.06.2013, 01:08
It's due to string size, the size you've specified in format is 128, therefore you're limited to 128 characters total (including all of the data you used while formatting). What you're going to want to do is replace...
...with...
...and then increase the size of str1 as needed.
pawn Код:
format(str1, 128, ...
pawn Код:
format(str1, sizeof(str1), ...