help : Is there a difference between PAWN ?
#2

( 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 :
pawn Код:
new
    str[ 256 ]; // No need for 256 if it's a client message. 128 is enough.
Or creating many variables like
pawn Код:
new
    str1[ 128 ], str2[ 128 ], str3[ 128 ], str4[ 128 ];
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
pawn Код:
#pragma dynamic 140000
#pragma dynamic doesn't actually solve the problem. It's better if you optimize your script.

****** said this in a thread :
Quote:
Originally Posted by ******
it just means you are using too many large locals.
Reply


Messages In This Thread
help : Is there a difference between PAWN ? - by morocco - 25.03.2013, 22:51
Re: help : Is there a difference between PAWN ? - by greentarch - 25.03.2013, 22:59
Respuesta: help : Is there a difference between PAWN ? - by Onfroi - 25.03.2013, 23:00
Re : help : Is there a difference between PAWN ? - by morocco - 25.03.2013, 23:08
Re : help : Is there a difference between PAWN ? - by morocco - 26.03.2013, 13:12

Forum Jump:


Users browsing this thread: 1 Guest(s)