[HELP] Warning - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: [HELP] Warning (
/showthread.php?tid=288358)
[HELP] Warning -
Salsa - 07.10.2011
Код:
C:\Users\Leon\Desktop\lvdm.pwn(489) : warning 201: redefinition of constant/macro (symbol "MAX_PROPERTIES")
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
Header size: 5584 bytes
Code size: 2884952 bytes
Data size: 437888 bytes
Stack/heap size: 16384 bytes; estimated max. usage=7099 cells (28396 bytes)
Total requirements: 3344808 bytes
1 Warning.
Re: [HELP] Warning -
Jafet_Macario - 07.10.2011
You have
#define MAX_PROPERTIES twice, so delete one of the defines.
Re: [HELP] Warning -
[MWR]Blood - 07.10.2011
You defined MAX_PROPERTIES twice.
Delete one of the defines.
EDIT: Lol exact words
Re: [HELP] Warning -
Salsa - 07.10.2011
No i search But i not find twice
MAX_PROPERTIES
Re: [HELP] Warning -
Mr. Random - 07.10.2011
Filterscripts ?
Re: [HELP] Warning -
Pharrel - 07.10.2011
try
pawn Код:
#if defined MAX_PROPERTIES
#undef MAX_PROPERTIES
#define MAX_PROPERTIES (101)//put here the number that you want
#endif
Re: [HELP] Warning -
Cank - 07.10.2011
You checked your includes for this define?