01.07.2011, 11:24
Quote:
An array is memory that can be accessed dynamically, and unused arrays will cause CPU lagg on the server.
|
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)
}
pawn Code:
format(string, sizeof(string), "%02d", minute);