23.01.2011, 18:29
I'm saying this;
Is NOT good. It creates a 128 long string * 500 = (64000), which eats up memory.
If you have something LIKE this you should alter It for;
Which only creates the 128 long string that you need instead.
pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++)
{
new string[128];
format(string, sizeof(string), "Whateveryouformatitto");
}
If you have something LIKE this you should alter It for;
pawn Код:
new string[128];
for(new i = 0; i < MAX_PLAYERS; i++)
{
format(string, sizeof(string), "Whateveryouformatitto");
}