I always wonder what affect to this "information" and why it show on compile?
#2

I believe this is caused by the usage of large strings in your mode.

For example, you shouldn't have things like this:

pawn Код:
new string[256];
When you don't need a 256-cell string! EDIT: ****** made a very good topic about this.

Or, this:

pawn Код:
new string[7000];
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.
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)