azerothcore-wotlk | Complete Open Source and Modular solution for MMO | Game Engine library
kandi X-RAY | azerothcore-wotlk Summary
kandi X-RAY | azerothcore-wotlk Summary
Complete Open Source and Modular solution for MMO
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of azerothcore-wotlk
azerothcore-wotlk Key Features
azerothcore-wotlk Examples and Code Snippets
Community Discussions
Trending Discussions on azerothcore-wotlk
QUESTION
I'm trying to compile AzerothCore using the dashboard setup on Debian, so I normally compile with:
...ANSWER
Answered 2021-Jul-10 at 15:07Open the conf/config.sh
file (if you don't have it, copy it from conf/dist/config.sh
to conf/config.sh
) and change:
QUESTION
I'm having issues getting some modules to install. I've been able to get mod-1v1-arena and mod-npc-free-professions working, but I haven't been able to get these other modules to work:
mod-new-character-perks mod-learn-spells mod-quick-teleport
Can someone please confirm I have the correct workflow, or advise on what steps I'm missing.
- Clone module folder from git to .\azerothcore-wotlk\modules
- Run Git CLI: ./acore.sh docker build
- Copy mod_learnspells.conf to .\azerothcore-wotlk\env\docker\etc\modules
I see instructions about rebuilding with CMake, is that necessary if I'm using docker build...? I tried CMake too and I got an error immediately with the software setup, so haven't pursued it further.
I'm also a bit confused by the .conf files, which folder does the server read them from?
.\azerothcore-wotlk\env\docker\etc\modules or .\azerothcore-wotlk\modules\mod-learn-spells\conf
...ANSWER
Answered 2021-Jun-25 at 10:29I would try to install without any modules to check for the core stability and then work up from there one by one.
This way, if there's a module that's currently not working due to recent PR's like the Autobalance
and possibly mod-learn-spells
you can report an issue and work without it until It's back up.
AzerothCore Continuous Integration build with modules is currently failing aswell if you check the Readme notes where it says
QUESTION
I'm trying to add unit tests for some functions defined in this file:
My test file looks like this:
...ANSWER
Answered 2020-Dec-04 at 21:39You can solve by adding:
QUESTION
This was orginally asked via this github issue:
https://github.com/azerothcore/azerothcore-wotlk/issues/3527
When copying the ./.env.dist
file to ./.env
and changing the password for the mysql database the password is still set to "password" after the containers are up and running.
Per the docker install guide here:
https://www.azerothcore.org/wiki/Install-with-Docker
Doing this should change the mysql database password.
I have tried the following:
...ANSWER
Answered 2020-Oct-21 at 07:55There is a persistent volume for the ac-database docker. here is what I would try:
QUESTION
I am currently running the autobalance module on my AzerothCore server. I want to enable the DungeonScaleDownXP
:
ANSWER
Answered 2020-Sep-24 at 21:58Ended up figuring out a solution to this. First i added a new option in the conf:
QUESTION
In our C++ project, we managed to setup GitHub Actions building our sources using ccache.
It works very well on Linux where, thanks to ccache
, the build succeeds in less than 5 minutes.
Unfortunately, when trying to build on macOS, ccache
doesn't seem to work, giving:
ANSWER
Answered 2020-Aug-30 at 18:04The problem is most likely that max cache size is too small. If the results (mostly object files) from a build do not fit in max cache size then no usable results will be left for the next build and you will only get cache misses.
cleanups performed was 2976 before the build and 3353 after the build, so 377 automatic cleanups were performed. Since max cache size was 500 MB, each cleanup removed around 500 * (1 - 0.8) / 16 MB = 6.25 MB and all cleanups together therefore removed around 377 * 6.25 MB ≈ 2356 MB of data. That should be approximately the size of the results of one build. (0.8 is the default "limit_multiple" and 16 refers to the number of subdirectories in the cache.)
Try to increase the cache size limit substantially. Based on the above calculation, a good cache size would be at least 5 GB. You could also or alternatively enable compression (CCACHE_COMPRESS=1
) to fit more results in the cache.
QUESTION
I'm trying to set up AzerothCore with Docker. I'm following the instructions here: http://www.azerothcore.org/wiki/Install-with-Docker, and used the following command to clone the git repository:
...ANSWER
Answered 2020-Mar-29 at 06:55The error indicating, that acbuild:latest
cannot be found is actually only a result of the previous error to build said image. The idea of the acore-docker-build
is to build the docker image acbuild:latest
so that it can be ran afterwards. The script does not verify that the generation of the image was successful and then tries to run it anyway.
Your actual error is in all of those lines:
E: Release file for http://archive.ubuntu.com/ubuntu/dists/bionic-backports/InRelease is not valid yet (invalid for another 1h 13min 44s). Updates for this repository will not be applied.
This seems to be a timezone/time setting issue and you can find many suggestions how to fix this in the following questions (second one specifically related to docker):
QUESTION
In AzerothCore, how I can allow only character creations and disable in-game character connections?
...ANSWER
Answered 2020-Feb-04 at 21:28If you don't want to touch the code, you could implement a mysql trigger that anytime a new character is created in the characters
table, inserts a row in the character_banned
table with active
= 1
http://www.azerothcore.org/wiki/character_banned
EXAMPLE:
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install azerothcore-wotlk
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page