[Feature] Add Bot Starting Items (#3634)

* [Feature] Add Bot Starting Items

# Notes
- This table is similar to the player starting items table, however it uses bitmasks.
- Allows operators to give bots gear on creation.
- `races` of `0` for all races.
- `classes` of `0` for all classes.

* Update bot.cpp

* Update database_update_manifest_bots.cpp
This commit is contained in:
Alex King
2023-10-17 18:00:41 -04:00
committed by GitHub
parent e19b969541
commit a4f2ed28f1
8 changed files with 541 additions and 1 deletions
+2
View File
@@ -460,6 +460,8 @@ public:
uint8 gender
);
void AddBotStartingItems(uint16 race_id, uint8 class_id);
// Static Bot Group Methods
static bool AddBotToGroup(Bot* bot, Group* group);
static bool RemoveBotFromGroup(Bot* bot, Group* group);