Question about compiler
#1

i have 2 different gamemodes if i compile them one of them shows this

Код:
Header size:           8784 bytes
Code size:          1166340 bytes
Data size:          2576396 bytes
Stack/heap size:      16384 bytes; estimated max. usage=5768 cells (23072 bytes)
Total requirements: 3767904 bytes
and the other one just shows this

Код:
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase
Whats that ? Whats wrong ?
Reply
#2

Your arrays are to big, overused space.

Код:
new string[128];
format(string, 128, "HELLO");
Reply
#3

The second one is good, what it that first one about? the Gamemode?
Reply
#4

Stigg ++

Probably your arrays are I.E. new string[256]; just for normal SendClientMessage's.
Reply
#5

Maybe you accidentally created a large array, anything over [1024] won't work (not recommended though)
Reply
#6

should i just change all 256 to 128 ?
Reply
#7

Yeah, do that
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)