Quote:
Originally Posted by Vince
I don't think they cause CPU lag. They just consume more RAM and it takes longer for your script to compile.
And I think you should also have explained a little about the other format placeholders. More often that not, I see people doing something like:
pawn Code:
if(minute <= 9) { format(string, sizeof(string), "0%d", minute) } else { format(string, sizeof(string), "%d", minute) }
While you could just as easily write that in a single line using:
pawn Code:
format(string, sizeof(string), "%02d", minute);
Which will make sure the placeholder is 2 digits long and which will also pad it with zeros if it's not.
|
Oh, thank you for mentioning. I forgot explaining about the other placeholders. I added a list of them all.