05.10.2015, 12:26
Why don't you use strcat. Its way more faster than format.
You need to use format only when you require to input numbers or floating values into a array/string.
So you can directly do something like this:
You need to use format only when you require to input numbers or floating values into a array/string.
So you can directly do something like this:
pawn Код:
strcat(str, GameStatusStr);
strcat(str, "\t");
strcat(str, JoinedPlayerStr[0]);
...