Quote:
Originally Posted by pds2k12
This error:
pawn Код:
E:\SAMP\RPG all\RPG\pawno\include\YSI\Y_Commands.inc(219) : warning 201: redefinition of constant/macro (symbol "CMD:%0(%1)") E:\SAMP\RPG all\RPG\pawno\include\YSI\Y_Commands.inc(220) : warning 201: redefinition of constant/macro (symbol "COMMAND")
You have 2 define of COMMAND and CMD do not mix zcmd and y_commands together.
This Error
pawn Код:
E:\SAMP\RPG all\RPG\pawno\include\YSI\Y_Commands.inc(1124) : error 017: undefined symbol "__InitialiseFromGroups" E:\SAMP\RPG all\RPG\pawno\include\YSI\Y_Commands.inc(1149) : error 017: undefined symbol "__InitialiseFromGroups" E:\SAMP\RPG all\RPG\pawno\include\YSI\Y_Commands.inc(1179) : error 017: undefined symbol "__InitialiseFromGroups" E:\SAMP\RPG all\RPG\pawno\include\YSI\Y_Commands.inc(2006) : error 017: undefined symbol "__InitialiseFromGroups" E:\SAMP\RPG all\RPG\pawno\include\YSI\Y_Commands.inc(2157) : error 017: undefined symbol "__InitialiseFromGroups"
Do this
pawn Код:
#include <YSI\y_commands>
instead of
pawn Код:
#include <YSI/y_commands>
NOTE - y_commands is not bug! the script is messing the include up!
|
the / didn't do the trick, as it gave a fatal error that it's missing.
I haven't mixed ZCMD & YCMD up really, could it be possible that it's bugging because I also have ZCMD commands, I am still transfering everything so I have to finish transferring everything to YCMD first?