Open Roxas2712 opened 4 months ago
If you look in the setup.sh script you can add the modules you like under the install mod 'mod-name' 'github link'
and then run setup... theres different repos and different modules may come incompatible with time, so I recommend you testing them carefully. maybe have a testing environment to see if the installation and mod is working... you can also just download the modules normally and place them in the modules folder in azerothcore-wotlk. Running setup.sh
will install the modules.
Hello First of all: Thank you for your awesome work. Do you think it is feasible to add the ah-bot to your fork? Its not possible to install it manuelly. Thank you in Advance.
If you want to add Ahbot in after you've installed via docker, do this:
docker ps
to get the ID of your mysql container.docker cp ~/azerothcore-wotlk/modules/mod-ah-bot/sql/world/mod_auctionhousebot.sql <mysql-container-id-or-name>:/tmp/mod_auctionhousebot.sql
to copy the sql file from your modules folder to a temp docker location in your containerdocker exec -it <mysql-container-id-or-name> mysql -u root -p
USE acore_world;
SOURCE /tmp/mod_auctionhousebot.sql;
exit;
This should place the sql just where you need it to be. Run your build command from your working directory and you should be good to go.
Hello First of all: Thank you for your awesome work. Do you think it is feasible to add the ah-bot to your fork? Its not possible to install it manuelly. Thank you in Advance.