mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-21 18:58:21 +00:00
Spell Tracking
This commit is contained in:
+11
-1
@@ -88,7 +88,15 @@ struct RaidMember{
|
||||
bool IsGroupLeader;
|
||||
bool IsRaidLeader;
|
||||
bool IsLooter;
|
||||
bool SentToBotOwner;
|
||||
#ifdef BOTS
|
||||
bool IsGroupHealer;
|
||||
bool IsRaidSlower;
|
||||
bool IsRaidMainAssistOne;
|
||||
bool IsRaidMainAssistTwo;
|
||||
bool IsRaidMainTank;
|
||||
bool IsRaidOffTankOne;
|
||||
bool IsRaidOffTankTwo;
|
||||
#endif
|
||||
};
|
||||
|
||||
struct GroupMentor {
|
||||
@@ -113,8 +121,10 @@ public:
|
||||
bool IsRaid() { return true; }
|
||||
|
||||
void AddMember(Client *c, uint32 group = 0xFFFFFFFF, bool rleader=false, bool groupleader=false, bool looter=false);
|
||||
#ifdef BOTS
|
||||
void AddBot(Bot* b, uint32 group = 0xFFFFFFFF, bool rleader=false, bool groupleader=false, bool looter=false); //Mitch
|
||||
void RaidBotGroupSay(Bot* b, uint8 language, uint8 lang_skill, const char* msg, ...); //Mitch
|
||||
#endif
|
||||
void RemoveMember(const char *c);
|
||||
void DisbandRaid();
|
||||
void MoveMember(const char *name, uint32 newGroup);
|
||||
|
||||
Reference in New Issue
Block a user