31.05.2009, 18:41
I thought using the same array for the params & the string, would overwrite each other.
So when you did "format(string, sizeof(string)" it would not store the params in the array, becuase it's already filling the array with new information.
And I thought this would send the newly formated string, inside the string.
I guess I still have a lot to learn.
So when you did "format(string, sizeof(string)" it would not store the params in the array, becuase it's already filling the array with new information.
pawn Код:
format(string, sizeof(string), "%s typed: %s", name, string);
I guess I still have a lot to learn.