20.05.2013, 10:35
Hi all, I have strange problem:
I just adding some things to gamemode, and I make defines but dont make other code yet...
And, strangely, I cant compile the gamemode (end now error)! What the... I just add few defines!
I deleted defines, and compiler compile the gamemode without any problem.
Then I added few defines (whatever it is - define colors, define text or vehicle or whatever), again end now error.
Then I add define by define, and after two-three defines, compiler crashing again. It is like this:
this works and script compile
#define testblue {0000FF}
//#define testred {FF0000}
this works and script compile
//#define testblue {0000FF}
#define testred {FF0000}
this dont work and compiler crashing
#define testblue {0000FF}
#define testred {FF0000}
It is like that PAWNO have limit for defines (lets say 1024) and if I add 1025 define, it start to send dont send error...
Does anyone know whats wrong and why I cant add any more defines?
I just adding some things to gamemode, and I make defines but dont make other code yet...
And, strangely, I cant compile the gamemode (end now error)! What the... I just add few defines!
I deleted defines, and compiler compile the gamemode without any problem.
Then I added few defines (whatever it is - define colors, define text or vehicle or whatever), again end now error.
Then I add define by define, and after two-three defines, compiler crashing again. It is like this:
this works and script compile
#define testblue {0000FF}
//#define testred {FF0000}
this works and script compile
//#define testblue {0000FF}
#define testred {FF0000}
this dont work and compiler crashing
#define testblue {0000FF}
#define testred {FF0000}
It is like that PAWNO have limit for defines (lets say 1024) and if I add 1025 define, it start to send dont send error...
Does anyone know whats wrong and why I cant add any more defines?

