[DiscordArchive] you want to know how it works or what?
[DiscordArchive] you want to know how it works or what?
Archived author: Hex • Posted: 2024-11-29T19:32:55.265000+00:00
Original source
you want to know how it works or what?
ATABASE_NONE, AC_MODULES_LIST) :Archived author: brian8544 • Posted: 2024-11-29T19:35:07.630000+00:00
Original source
What do I do wrong to only compile Auth server?
/root/azerothcore/src/tools/dbimport/Main.cpp:112:88: fatal error: use of undeclared identifier 'AC_MODULES_LIST'
112 | (modules == "all") ? DatabaseLoader("dbimport", DatabaseLoader:
ATABASE_NONE, AC_MODULES_LIST) :
| ^
1 error generated.
make[2]: *** [src/tools/CMakeFiles/dbimport.dir/build.make:76: src/tools/CMakeFiles/dbimport.dir/dbimport/Main.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:699: src/tools/CMakeFiles/dbimport.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 94%] Building CXX object src/server/shared/CMakeFiles/shared.dir/Secrets/SecretMgr.cpp.o
[ 95%] Linking CXX static library libshared.a
[ 95%] Built target shared
make: *** [Makefile:136: all] Error 2
mkdir build && \
cd build && \
cmake ../ -DCMAKE_INSTALL_PREFIX=/root/azerothcore/env/dist/ \
-DCMAKE_C_COMPILER=/usr/bin/clang \
-DCMAKE_CXX_COMPILER=/usr/bin/clang++ \
-DWITH_WARNINGS=1 \
-DTOOLS_BUILD=all \
-DSCRIPTS=static \
-DMODULES=static \
-DAPP_AUTHSERVER:STRING="default" \
-DMODULES:STRING="none" \
-DAPPS_BUILD:STRING="auth-only" \
-DTOOL_MAP_EXTRACTOR:STRING="disabled" \
-DAPP_WORLDSERVER:STRING="disabled" \
-DTOOL_VMAP4_EXTRACTOR:STRING="disabled" \
-DTOOL_VMAP4_ASSEMBLER:STRING="disabled" \
***-DTOOL_DBIMPORT:STRING="enabled" \***
-DTOOL_MMAPS_GENERATOR:STRING="disabled" && \
make -j 4 && \
make install
Archived author: Hex • Posted: 2024-11-29T19:38:04.264000+00:00
Original source
you missing file named AC_MODULES_LIST
Archived author: Hex • Posted: 2024-11-29T19:39:43.478000+00:00
Original source
i think
Archived author: cyberpro98 • Posted: 2024-11-29T19:42:05.785000+00:00
Original source
The Anticheat sends the whole time false alerts ...
Archived author: brian8544 • Posted: 2024-11-29T19:42:18.121000+00:00
Original source
That means some of my cmake parameters are invalid? <:kek:1065379143887372398>
Since doing it on windows with APPS_BUILD auth-only returns:
(20:41:25:714 ========== Build: 7 succeeded, 0 failed, 3 up-to-date, 1 skipped ==========)
Archived author: Hex • Posted: 2024-11-29T19:47:29.944000+00:00
Original source
Yes, that's true, but it also shows the truth. This is because when the boss makes you fly, the anti-cheat counts that as you using the flying hack. There are many open issues in the repo https://github.com/azerothcore/mod-anticheat/issues about these things. When it starts spamming chat, the player is probably using a hack
[Embed: Issues · azerothcore/mod-anticheat]
Port of PassiveAnticheat to Azerothcore. Contribute to azerothcore/mod-anticheat development by creating an account on GitHub.
https://github.com/azerothcore/mod-anticheat/issues
Archived author: Hex • Posted: 2024-11-29T19:48:34.943000+00:00
Original source
Yes thats right some of the parameters you passed to cmake are either conflicting, unnecessary, or potentially invalid
Archived author: brian8544 • Posted: 2024-11-29T19:51:46.436000+00:00
Original source
-DMODULES:STRING="none" but had -DTOOL_DBIMPORT:STRING="enabled" --> created wrong condition. Thanks <@905882717370089552>
Archived author: brian8544 • Posted: 2024-11-29T19:52:21.495000+00:00
Original source
I thought modules meant the custom scripts, but internally it seems to be handling tools as well