Update mod names and realmlist configuration in README and setup script

This commit is contained in:
notepadguyOfficial
2025-02-18 14:25:26 +08:00
parent 6ed27152f4
commit 91703c186c
2 changed files with 5 additions and 5 deletions

View File

@@ -114,7 +114,7 @@ Includes:
- mod-fireworks-on-level (optional) - mod-fireworks-on-level (optional)
- mod-individual-progression (optional) - mod-individual-progression (optional)
- mod-junk-to-gold (optional) - mod-junk-to-gold (optional)
- mod-dungeon-respawn (optional) - mod-DungeonRespawn (optional)
### Update ### Update
- To update and get the latest versions, you can run `./uninstall.sh` without deleting the volumes and run `./setup.sh` again. It will prompt you if you want to delete the volumes. - To update and get the latest versions, you can run `./uninstall.sh` without deleting the volumes and run `./setup.sh` again. It will prompt you if you want to delete the volumes.
@@ -156,7 +156,7 @@ Includes:
7. Edit your `<your wow root directory>\Data\enUS\realmlist.wtf` and type in the wsl ip address you get in the end of installing. 7. Edit your `<your wow root directory>\Data\enUS\realmlist.wtf` and type in the wsl ip address you get in the end of installing.
``` ```
set realmlist dockerhost_ip 192.168.48.2 set realmlist 172.17.0.1
``` ```
8. Run the Game and your done. 8. Run the Game and your done.

View File

@@ -95,9 +95,9 @@ if ask_user "Install modules?"; then
install_mod "mod-aoe-loot" "https://github.com/azerothcore/mod-aoe-loot.git" install_mod "mod-aoe-loot" "https://github.com/azerothcore/mod-aoe-loot.git"
install_mod "mod-learn-spells" "https://github.com/noisiver/mod-learnspells.git" install_mod "mod-learn-spells" "https://github.com/noisiver/mod-learnspells.git"
install_mod "mod-fireworks-on-level" "https://github.com/azerothcore/mod-fireworks-on-level.git" install_mod "mod-fireworks-on-level" "https://github.com/azerothcore/mod-fireworks-on-level.git"
install_mod "mod-individual-progression" "https://github.com/ZhengPeiRu21/mod-individual-progression.git" install_mod "mod-individual-progression" "https://github.com/notepadguyOfficial/mod-individual-progression"
install_mod "mod-junk-to-gold" "https://github.com/notepadguyOfficial/mod-junk-to-gold.git" install_mod "mod-junk-to-gold" "https://github.com/notepadguyOfficial/mod-junk-to-gold.git"
install_mod "mod-dungeon-respawn" "https://github.com/notepadguyOfficial/DungeonRespawn.git" install_mod "mod-DungeonRespawn" "https://github.com/notepadguyOfficial/DungeonRespawn.git"
cd .. cd ..
fi fi
@@ -131,7 +131,7 @@ function execute_sql() {
else else
cp "$custom_sql_file" "$temp_sql_file" cp "$custom_sql_file" "$temp_sql_file"
fi fi
mysql -h "$ip_address" -uroot -ppassword "$db_name" < "$temp_sql_file" mysql -h "$ip_address" -uroot -proot "$db_name" < "$temp_sql_file"
done done
else else
echo "No SQL files found in $custom_sql_dir/$db_name, skipping..." echo "No SQL files found in $custom_sql_dir/$db_name, skipping..."