14.08.2014, 18:15
Hey , please check the following example:
when I do this I get an error
so I have to change the sizeofstring(string[0]) to 128 to get rid of the error
this works fine
Why?
pawn Код:
new string[4][128];
format(string[0], sizeof(string[0]), "BlaBla%i", int);
so I have to change the sizeofstring(string[0]) to 128 to get rid of the error
pawn Код:
new string[4][128];
format(string[0], 128, "BlaBla%i", int);
Why?