WoW 私服架設:進階模組安裝與自訂功能
前言 AzerothCore 的模組系統讓你能輕鬆擴展伺服器功能。本文將介紹幾個熱門模組的安裝與設定方法。 模組安裝基礎 下載模組 cd /opt/wow/azerothcore-wotlk/modules git clone [模組GitHub網址] 重新編譯 cd /opt/wow/azerothcore-wotlk ./acore.sh compiler clean ./acore.sh compiler all 熱門模組介紹 1. 無爐石冷卻時間 模組名稱: mod-no-hearthstone-cooldown git clone https://github.com/azerothcore/mod-no-hearthstone-cooldown.git 設定檔: # mod_no_hearthstone_cooldown.conf NoHearthstoneCooldown.Enable = 1 2. 帳號通用功能 模組名稱: mod-account-wide 功能: 坐騎帳號通用 成就帳號通用 聲望帳號通用 git clone https://github.com/azerothcore/mod-account-mounts.git 3. 全種族全職業 (ARAC) 模組名稱: mod-arac git clone https://github.com/azerothcore/mod-arac.git 設定: # 允許所有種族選擇所有職業 ARAC.Enable = 1 4. 拍賣場機器人 模組名稱: mod-ah-bot git clone https://github.com/azerothcore/mod-ah-bot.git 設定: AuctionHouseBot.Enable = 1 AuctionHouseBot.Account = 1 # 機器人帳號ID AuctionHouseBot.GUID = 1 # 機器人角色GUID # 物品設定 AuctionHouseBot.Items.Amount.Grey = 0 AuctionHouseBot.Items.Amount.White = 2000 AuctionHouseBot.Items.Amount.Green = 5000 AuctionHouseBot.Items.Amount.Blue = 3000 AuctionHouseBot.Items.Amount.Purple = 1000 AuctionHouseBot.Items.Amount.Orange = 500 5. 單人副本縮放 模組名稱: mod-solocraft ...