07.02.2013, 17:45
I believe this is caused by the usage of large strings in your mode.
For example, you shouldn't have things like this:
When you don't need a 256-cell string! EDIT: ****** made a very good topic about this.
Or, this:
That is just an outrageous string size and unnecessary to be honest. You would be better off making a smaller string and just executing what you need it for a few times. For example, I have seen people with HUGE SQL queries and they're stuffing it all into a single string. It's easier to split it up and run mysql_query() a few times, rather than a single time.
Most GF edits have this problem, due to the first example I gave you.
For example, you shouldn't have things like this:
pawn Код:
new string[256];
Or, this:
pawn Код:
new string[7000];
Most GF edits have this problem, due to the first example I gave you.