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

WoW 私服架設:常見問題與疑難排解完整指南

前言 架設私服過程中難免遇到各種問題。本文整理了最常見的錯誤與解決方案,幫助你快速排除故障。 伺服器啟動問題 Authserver 無法啟動 錯誤訊息: Cannot connect to database 解決方案: # 檢查 MySQL 服務 systemctl status mariadb # 確認資料庫存在 mysql -u acore -p -e "SHOW DATABASES;" # 檢查連線設定 grep LoginDatabaseInfo /opt/wow/server/etc/authserver.conf Worldserver 崩潰 錯誤訊息: Segmentation fault (core dumped) 解決方案: # 檢查資料檔案完整性 ls -la /opt/wow/server/data/ # 檢查記憶體 free -h # 增加 swap fallocate -l 4G /swapfile mkswap /swapfile swapon /swapfile 找不到地圖檔案 錯誤訊息: Map file './maps/000.map' does not exist 解決方案: ...

2025年8月19日 · 4 min · 647 words · Jack

WoW 私服進階功能:Azeroth Web Map 與自訂飛行坐騎

前言 本文將介紹兩個超酷的進階功能:Web Map 能在瀏覽器上即時顯示所有玩家和機器人的位置,而自訂飛行坐騎則能讓你在任何地方飛行,包括原本禁飛的區域! 第一部分:Azeroth Web Map 什麼是 Azeroth Web Map? 這是一個基於 PHP 的網頁應用程式,能在地圖上顯示所有玩家和機器人的即時位置。雖然不是真正的即時更新(預設每 15 分鐘更新),但你可以調整更新頻率。 安裝前準備 調整玩家位置儲存頻率 編輯 worldserver.conf: world # 修改儲存間隔(毫秒) PlayerSaveInterval = 20000 # 每 20 秒儲存一次 安裝 Web Map 步驟 1:安裝 PHP 和 Apache apt update && apt install php php-mysqli apache2 -y 步驟 2:下載 Web Map cd /var/www/html git clone https://github.com/DustinHendrickson/DustinsAzerothMap.git map 步驟 3:設定自動重新導向 # 編輯 Apache 設定 nano /etc/apache2/apache2.conf # 在檔案最底部加入 RedirectMatch ^/$ /map/ # 重啟 Apache systemctl restart apache2.service 存取 Web Map 在瀏覽器輸入你的伺服器 IP: ...

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

Hugo 完整教學指南 - 從零開始建立部落格

🚀 為什麼選擇 Hugo? Hugo 是一個超快速的靜態網站生成器,它的核心理念是: 你只需要寫 Markdown Hugo 自動轉換成美觀的 HTML 網站 建置速度極快(毫秒級) 不需要資料庫,純靜態檔案 📚 Hugo 的工作原理 content/ (你的 Markdown) → Hugo 處理 → public/ (生成的 HTML) 主要目錄說明 目錄 用途 需要編輯嗎? content/ 放置所有 Markdown 文章 ✅ 是 static/ 放置圖片、CSS、JS 等靜態資源 ✅ 需要時 hugo.toml 網站配置檔 ✅ 是 themes/ 主題模板 ❌ 通常不用 public/ Hugo 生成的網站 ❌ 絕對不要 archetypes/ 文章模板 🔧 偶爾 🛠️ 安裝與設定 1. 安裝 Hugo # macOS brew install hugo # Windows (使用 Chocolatey) choco install hugo-extended # Linux snap install hugo 2. 創建新網站 hugo new site myblog cd myblog 3. 安裝主題(以 PaperMod 為例) git init git submodule add --depth=1 https://github.com/adityatelange/hugo-PaperMod.git themes/PaperMod 4. 基本配置 (hugo.toml) baseURL = 'https://yourdomain.com/' languageCode = 'zh-tw' title = '我的部落格' theme = 'PaperMod' [pagination] pagerSize = 5 [params] defaultTheme = 'auto' ShowReadingTime = true ShowShareButtons = true ShowPostNavLinks = true ShowBreadCrumbs = true ShowCodeCopyButtons = true ShowWordCount = true ShowToc = true TocOpen = false ✍️ 如何新增文章 方法 1:使用 Hugo 命令(推薦) hugo new posts/my-new-post.md 方法 2:手動創建 Markdown 在 content/posts/ 目錄下創建 .md 檔案 ...

2025年8月14日 · 3 min · 572 words · Jack