25.03.2013, 22:59
( I got weird ads at that site )
Uhh .. as far as I know that happens when you have too much variables with big arrays like :
Or creating many variables like
You can actually reuse a var.
There is a fix to that, you can reduce your string size ( optimize your script )
or
You can put this below #includes
#pragma dynamic doesn't actually solve the problem. It's better if you optimize your script.
****** said this in a thread :
Uhh .. as far as I know that happens when you have too much variables with big arrays like :
pawn Код:
new
str[ 256 ]; // No need for 256 if it's a client message. 128 is enough.
pawn Код:
new
str1[ 128 ], str2[ 128 ], str3[ 128 ], str4[ 128 ];
There is a fix to that, you can reduce your string size ( optimize your script )
or
You can put this below #includes
pawn Код:
#pragma dynamic 140000
****** said this in a thread :
Quote:
Originally Posted by ******
it just means you are using too many large locals.
|