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.
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.
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 MultiBotThe 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 namedMultiBot.
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-bridgeThe 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.
cd "World of Warcraft/Interface/AddOns/MultiBot"
git pullcd /path/to/azerothcore/modules/mod-multibot-bridge
git pullThen rebuild your AzerothCore server if the module code changed.
| 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 |
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 MultiBotFor 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-bridgeThen re-run CMake and rebuild AzerothCore.
Future active development should happen in:
This repository may remain available for reference, history, or archival purposes only.