WoW 私服架設:PlayerBots AI 機器人完整設定教學

前言 PlayerBots 是讓私服變得生動的關鍵模組。它能添加 AI 控制的機器人玩家,讓你即使一個人也能體驗完整的團隊遊戲樂趣。 PlayerBots 功能特色 智慧型 AI:機器人會自動戰鬥、治療、施放增益 職業完整:支援所有職業和專精 隊伍協作:可組成 5 人小隊或 25 人團隊 自訂行為:可調整機器人的戰鬥策略 隨機活動:機器人會在世界中自由活動 設定檔配置 編輯 mod_playerbots.conf vim /opt/wow/server/etc/mod_playerbots.conf 基本設定 # 啟用 PlayerBots AiPlayerbot.Enabled = 1 # 機器人數量設定 AiPlayerbot.MinRandomBots = 50 AiPlayerbot.MaxRandomBots = 200 AiPlayerbot.RandomBotMinLevel = 1 AiPlayerbot.RandomBotMaxLevel = 80 # 機器人帳號前綴 AiPlayerbot.RandomBotAccountPrefix = "rndbot" AiPlayerbot.RandomBotAccountCount = 200 # 地圖分布 AiPlayerbot.RandomBotMaps = "0,1,530,571" # 起始區域機器人 AiPlayerbot.RandomBotStartingLevel = 5 AiPlayerbot.RandomBotsPerInterval = 10 AiPlayerbot.RandomBotsRefreshInterval = 60 進階行為設定 # 戰鬥行為 AiPlayerbot.BotFollowDistance = 50 AiPlayerbot.ReactDistance = 100 AiPlayerbot.SightDistance = 75 AiPlayerbot.SpellDistance = 30 # 自動接受 AiPlayerbot.AutoAcceptQuests = 1 AiPlayerbot.AutoPickReward = 1 AiPlayerbot.AutoEquipUpgradeLoot = 1 # 社交功能 AiPlayerbot.AllowGuildBots = 1 AiPlayerbot.RandomBotGuilds = "聯盟公會,部落公會" AiPlayerbot.RandomBotJoinLfg = 1 AiPlayerbot.RandomBotJoinBG = 1 # 經濟系統 AiPlayerbot.RandomBotBuyItems = 1 AiPlayerbot.RandomBotSellItems = 1 AiPlayerbot.BotRepairWhenNeed = 1 職業特定設定 # 坦克職業 AiPlayerbot.ClassRaceProbability.1 = 20 # 戰士 AiPlayerbot.ClassRaceProbability.2 = 15 # 聖騎士 AiPlayerbot.ClassRaceProbability.6 = 10 # 死亡騎士 # 治療職業 AiPlayerbot.ClassRaceProbability.5 = 15 # 牧師 AiPlayerbot.ClassRaceProbability.7 = 10 # 薩滿 AiPlayerbot.ClassRaceProbability.11 = 10 # 德魯伊 # DPS 職業 AiPlayerbot.ClassRaceProbability.3 = 10 # 獵人 AiPlayerbot.ClassRaceProbability.4 = 10 # 盜賊 AiPlayerbot.ClassRaceProbability.8 = 15 # 法師 AiPlayerbot.ClassRaceProbability.9 = 10 # 術士 機器人管理指令 召喚機器人 在遊戲中使用以下指令: ...

2025年8月19日 · 3 min · 637 words · Jack

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 ...

2025年8月19日 · 2 min · 263 words · Jack