-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiples errors after last merge #189
Comments
Yes, I’m having the same error, failed to compile. |
[ 79%] Building CXX object src/server/scripts/CMakeFiles/scripts.dir/World/item_scripts.cpp.o |
Hi,
Also another error in line 174 replaced for
|
659a216 edit your LfgActions.cpp in "core\modules\mod-playerbots\src\strategy\actions" to the changes in that link, it fixes the issues while compiling, namings changed in DBCStructure.h at some point and hasn't been updated in some modules so you need to manually update them until zheng get's back to fix them |
that's right! I follow this suggestion and it compiles normally! thanks! |
using that file I still get compiling errors like it made no difference. |
Send a screenshot of your error log and console output of the errors and I'll try to help, also make sure you renamed it to mod-playerbots if you downloaded as zip or it will not compile and will spit out errors like "Unresolved external symbol" |
Here is my entire compilation log. I am using the fork of AC (https://github.com/ZhengPeiRu21/azerothcore-wotlk/tree/Playerbot) and the .zip module for AC (renamed). |
Not sure if I'll be able to help much since I don't have any experiencing compiling the core outside of windows but I see a bunch of fatal errors in that log like in |
|
sadly that is the forked core acting up for me. |
@jlecoustre this should no longer be an issue, please close out |
Hello,
Unable to compile since the last updates made on https://github.com/ZhengPeiRu21/azerothcore-wotlk/tree/Playerbot
A lot of errors are present there seems to have been a lot of changes that make Playerbot mode non-functional.
Here are some errors:
`[ 31%] Building CXX object src/server/scripts/CMakeFiles/scripts.dir/Custom/custom_script_loader.cpp.o
/Games/azerothcore-wotlk/modules/mod-playerbots/src/strategy/actions/LfgActions.cpp:13:35: warning: unused parameter 'event' [-Wunused-parameter]
bool LfgJoinAction::Execute(Event event)
^
/Games/azerothcore-wotlk/modules/mod-playerbots/src/strategy/actions/LfgActions.cpp:103:35: fatal error: no member named 'type' in 'LFGDungeonEntry'
if (!dungeon || (dungeon->type != LFG_TYPE_RANDOM && dungeon->type != LFG_TYPE_DUNGEON && dungeon->type != LFG_TYPE_HEROIC && dungeon->type != LFG_TYPE_RAID))
~~~~~~~ ^
10 warnings and 1 error generated.
make[2]: *** [modules/CMakeFiles/modules.dir/build.make:1448: modules/CMakeFiles/modules.dir/mod-playerbots/src/strategy/actions/LfgActions.cpp.o] Error 1
make[2]: *** Waiting for unfinished jobs....
/Games/azerothcore-wotlk/modules/mod-playerbots/src/strategy/actions/LfgActions.cpp:107:22: fatal error: no member named 'minlevel' in 'LFGDungeonEntry'; did you mean 'MinLevel'?
if (dungeon->minlevel && botLevel < dungeon->minlevel)
^~~~~~~~
MinLevel
/Games/azerothcore-wotlk/src/server/shared/DataStores/DBCStructure.h:1276:12: note: 'MinLevel' declared here
uint32 MinLevel; // 18
^
10 warnings and 1 error generated.
/Games/azerothcore-wotlk/src/server/game/Guilds/Guild.h:244:23: warning: unused parameter 'style' [-Wunused-parameter]
EmblemInfo(uint32 style = 0, uint32 color = 0, uint32 borderStyle = 0, uint32 borderColor = 0, uint32 backgroundColor = 0) :
^
/Games/azerothcore-wotlk/src/server/game/Guilds/Guild.h:244:41: warning: unused parameter 'color' [-Wunused-parameter]
EmblemInfo(uint32 style = 0, uint32 color = 0, uint32 borderStyle = 0, uint32 borderColor = 0, uint32 backgroundColor = 0) :
^
/Games/azerothcore-wotlk/src/server/game/Guilds/Guild.h:244:59: warning: unused parameter 'borderStyle' [-Wunused-parameter]
EmblemInfo(uint32 style = 0, uint32 color = 0, uint32 borderStyle = 0, uint32 borderColor = 0, uint32 backgroundColor = 0) :
^
/Games/azerothcore-wotlk/src/server/game/Guilds/Guild.h:244:83: warning: unused parameter 'borderColor' [-Wunused-parameter]
EmblemInfo(uint32 style = 0, uint32 color = 0, uint32 borderStyle = 0, uint32 borderColor = 0, uint32 backgroundColor = 0) :
^
/Games/azerothcore-wotlk/src/server/game/Guilds/Guild.h:244:107: warning: unused parameter 'backgroundColor' [-Wunused-parameter]
EmblemInfo(uint32 style = 0, uint32 color = 0, uint32 borderStyle = 0, uint32 borderColor = 0, uint32 backgroundColor = 0) :`
Do you have the possibility to update the code?
thank you very much
The text was updated successfully, but these errors were encountered: