mirror of
https://github.com/azerothcore/mod-solo-lfg
synced 2025-11-29 15:58:17 +08:00
* Update README.md Updated readme. * Update to work with AzerothCore 17/09/2021 Update to work with AzerothCore 17/09/2021, since the core added a m_Testing variable the vanilla lfg-solo.patch didn't account for. * Update README.md * Update lfg-solo.patch Fix to handle core commit 606ea32 changes (or previous commits). * Update README.md Restored the original git clone link (git clone https://github.com/azerothcore/mod-solo-lfg.git) to make this compatible for the pull request. * update Co-authored-by: Patrick Lewis <pat@lo5t.com>
2.9 KiB
2.9 KiB
Solo Dungeon Finder
Description
Allows for players to use dungeon finder solo or in groups less than and up to 5 players. Use on azerothcore 3.3.5a. Good companion module for mod-solocraft and mod-autobalance.
Standard Installation
1. Go inside your /modules/ folder
2. git clone https://github.com/azerothcore/mod-solo-lfg.git
3. Apply lfg-solo.patch to your core.
a. In order to do this, please go to the root /azerothcore-wotlk of your installation.
b. Then do git apply modules/mod-solo-lfg/lfg-solo.patch
4. Re-run cmake and launch a clean build of AzerothCore.
a. If using AzerothCore Bash Dashboard setup: Do a ./acore.sh compiler configure followed by ./acore.sh compiler build.
b. If using standard installation, refer to https://www.azerothcore.org/wiki/installation
Docker Installation
1. Go inside your /modules/ folder
2. git clone https://github.com/azerothcore/mod-solo-lfg.git
3. Apply lfg-solo.patch to your core.
a. In order to do this, please go to the root /azerothcore-wotlk of your installation.
b. Then do 'git apply modules/mod-solo-lfg/lfg-solo.patch'
(make sure the path is indeed pointing to your lfg-solo.patch file)
4. Apply lfg-solo.patch to your core.
a. In order to do this, please go to the mod-solo-lfg module directory 'modules/mod-solo-lfg'.
b. Then do 'git apply docker.patch'
(make sure the path is indeed pointing to your docker.patch file)
5. Re-run cmake and launch a clean build of AzerothCore.
a. Go to your root folder and ./bin/acore-docker-build
b. Then do a docker-compose up
Edit module configuration (optional)
If you need to change the module configuration, go to your server configuration folder (where your worldserver or worldserver.exe is)
copy the file SoloLfg.conf.dist to SoloLfg.conf and edit it (keep both files).
Standard Uninstallation
1. Remove the lfg-solo.patch from y our core.
a. In order to do this, please go to the root /azerothcore-wotlk of your installation.
b. Then do git apply -R modules/mod-solo-lfg/lfg-solo.patch
2. Re-run cmake and launch a clean build of AzerothCore.
Docker Uninstallation
1. Remove the /modules/mod-solo-lfg folder
2. Remove the lfg-solo.patch from your core.
a. In order to do this, please go to the root /azerothcore-wotlk of your installation.
b. Then do git apply -R modules/mod-solo-lfg/lfg-solo.patch
3. Re-run cmake and launch a clean build of AzerothCore.
a. Go to your root folder and ./bin/acore-docker-build
b. Then do a docker-compose up
Credits
- Traesh: Original Script
- Micrah/Milestorme: Module Creator.
- Conan513.
- Artanisx - Update for Docker installations. Updated LFG-Solo.patch to work with the latest AzerothCore version (17/09/2021). Updated standard installation instructions.