06.05.2010, 20:54
Quote:
Originally Posted by » RyDeR «
I used as string "\"%s\" is my name!!" (%s = pName = "RyDeR")
and both runned them 1.000.000 times and format with 128 bytes used 656 ms. CPF had 986 ms. It's clearly that using it in your command is much faster. |
pawn Код:
#define FormatMsgEx(%0,%1,%2,%3) new string[128]; \
format(string,128,%2,%3); \
SendClientMessage(%0,%1,%2)