mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-11 07:38:36 +00:00
Spell Tracking
This commit is contained in:
@@ -196,7 +196,6 @@ void Raid::AddBot(Bot* b, uint32 group, bool rleader, bool groupleader, bool loo
|
||||
//SendGroupLeadershipAA(c, RAID_GROUPLESS); Is this needed for bots?
|
||||
SendRaidAddAll(b->GetName());
|
||||
|
||||
members[GetPlayerIndex(b->GetName())].SentToBotOwner = true; //Mitch indicates that the BotOwner has received this raid info already.
|
||||
b->SetRaidGrouped(true);
|
||||
//SendRaidMOTD(b->GetOwner()->CastToClient());
|
||||
|
||||
|
||||
+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