26.06.2009, 10:53
It means you used too mutch memory, it's like having mutch arrays with a hight amount in it, like using:
while you can also use:
It's not realy that bad, but your server(/players) can lag by using too mutch memory.
Here you can see how to optimise your arrays:
Код:
new string1[256]; new string2[256]; new string3[256]; new string4[256];
Код:
new string[128];
Here you can see how to optimise your arrays: