Posts: 210
Threads: 32
Joined: Jun 2011
Reputation:
0
Ahh don't worry that's warning.
Posts: 1,046
Threads: 29
Joined: Mar 2010
You may have a variable/constant which is called "player". Removing it might solve the first warning.
The second problem is that you use variables/constants which uses a huge cell size. Lowering its cell sizes might solve the second problem.
Quote:
Originally Posted by [BP]Tony
Ahh don't worry that's warning.
|
Never EVER ignore compiling warnings. Those might give you tips where a problem can occour.
Posts: 96
Threads: 24
Joined: Mar 2011
Reputation:
0
There is only one problem the pawn code is where i get the error when compiling(C:\Documents and Settings\Trulis\Desktop\Zonek\Zonek\gamemodes\Zone k.pwn(42150) : warning 203: symbol is never used: "players"). At the line 42150 there isn't anything. My script ends at 42149.
Posts: 1,046
Threads: 29
Joined: Mar 2010
The compiler means that the symbol "players" has been never used in your script. Search for the variable/constant "player" in your script and remove it
Posts: 860
Threads: 107
Joined: Dec 2010
Reputation:
0
Just remove new players; ... or something like that.
Posts: 96
Threads: 24
Joined: Mar 2011
Reputation:
0
Thanks i found it. It was new Text: player; but it was at line 527 i don't understand why it sayd line 42150
Posts: 1,046
Threads: 29
Joined: Mar 2010
I hope you don't also ignore this message:
Код:
Header size: 9916 bytes
Code size: 1854832 bytes
Data size: 4875884 bytes
Stack/heap size: 16384 bytes; estimated max. usage=4124 cells (16496 bytes)
Total requirements: 6757016 bytes
Normally if a script has been compiled correctly so you should only get this message:
Код:
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase