Skip to content
This repository was archived by the owner on Apr 27, 2026. It is now read-only.

Latest commit

 

History

History
218 lines (147 loc) · 4.65 KB

File metadata and controls

218 lines (147 loc) · 4.65 KB

⚠️ MultiBot is Deprecated ⚠️

This repository is no longer the recommended installation source.


The project has been split into two dedicated repositories:



Component Repository Purpose
Client Addon Wishmaster117/MultiBot-Chatless World of Warcraft client addon installed in Interface/AddOns
AzerothCore Module Wishmaster117/mod-multibot-bridge Server-side bridge module installed in the AzerothCore modules directory

Do not use this repository for new installations.


📌 What happened?

MultiBot-Standalone was originally a combined repository containing both:

  • the MultiBot client addon
  • the AzerothCore bridge module

To make installation, updates, automation, and maintenance easier for end users, the project has now been split into two separate repositories.

This repository is kept only as a historical/legacy combined source.


✅ New Installation Method

1. Install the client addon

Use this repository:

Clone it into your World of Warcraft addon directory.

cd "World of Warcraft/Interface/AddOns"
git clone https://github.com/Wishmaster117/MultiBot-Chatless.git MultiBot

The final folder structure must look like this:

World of Warcraft/
└── Interface/
    └── AddOns/
        └── MultiBot/
            ├── MultiBot.toc
            ├── Core/
            ├── UI/
            ├── Locales/
            └── ...

Important: the repository is named MultiBot-Chatless, but the local addon folder must be named MultiBot.


2. Install the AzerothCore bridge module

Use this repository:

Clone it into your AzerothCore modules directory.

cd /path/to/azerothcore/modules
git clone https://github.com/Wishmaster117/mod-multibot-bridge.git mod-multibot-bridge

The final folder structure must look like this:

azerothcore/
└── modules/
    └── mod-multibot-bridge/
        ├── conf/
        └── src/

After installing the module, re-run CMake and rebuild your AzerothCore server.


🔄 Updating

Update the addon

cd "World of Warcraft/Interface/AddOns/MultiBot"
git pull

Update the AzerothCore module

cd /path/to/azerothcore/modules/mod-multibot-bridge
git pull

Then rebuild your AzerothCore server if the module code changed.


🧩 Repository Split Summary

Old repository Status
Wishmaster117/MultiBot-Standalone Deprecated / legacy combined repository
New repository Usage
Wishmaster117/MultiBot-Chatless Client addon
Wishmaster117/mod-multibot-bridge AzerothCore bridge module

⚠️ For Existing Users

If you previously cloned this repository directly, it is recommended to switch to the new split repositories.

Remove the old addon folder and install the new addon repository:

cd "World of Warcraft/Interface/AddOns"
rm -rf MultiBot
git clone https://github.com/Wishmaster117/MultiBot-Chatless.git MultiBot

For the server module:

cd /path/to/azerothcore/modules
rm -rf mod-multibot-bridge
git clone https://github.com/Wishmaster117/mod-multibot-bridge.git mod-multibot-bridge

Then re-run CMake and rebuild AzerothCore.


❌ This Repository Will No Longer Be the Main Update Target

Future active development should happen in:

This repository may remain available for reference, history, or archival purposes only.


✅ Please use the new repositories

Client Addon

https://github.com/Wishmaster117/MultiBot-Chatless



AzerothCore Bridge Module

https://github.com/Wishmaster117/mod-multibot-bridge