mirror of
https://github.com/EQEmu/Server.git
synced 2026-01-06 17:43:52 +00:00
commit
ca311c8990
8203
zone/bot.cpp
8203
zone/bot.cpp
File diff suppressed because it is too large
Load Diff
@ -467,6 +467,7 @@ public:
|
|||||||
uint32 GetHealRotationNextHealTime() { return _healRotationNextHeal; }
|
uint32 GetHealRotationNextHealTime() { return _healRotationNextHeal; }
|
||||||
uint32 GetHealRotationTimer () { return _healRotationTimer; }
|
uint32 GetHealRotationTimer () { return _healRotationTimer; }
|
||||||
bool GetBardUseOutOfCombatSongs() { return _bardUseOutOfCombatSongs;}
|
bool GetBardUseOutOfCombatSongs() { return _bardUseOutOfCombatSongs;}
|
||||||
|
bool GetShowHelm() { return _showhelm; }
|
||||||
inline virtual int32 GetAC() const { return AC; }
|
inline virtual int32 GetAC() const { return AC; }
|
||||||
inline virtual int32 GetSTR() const { return STR; }
|
inline virtual int32 GetSTR() const { return STR; }
|
||||||
inline virtual int32 GetSTA() const { return STA; }
|
inline virtual int32 GetSTA() const { return STA; }
|
||||||
@ -550,6 +551,7 @@ public:
|
|||||||
void SetHealRotationTimer( uint32 timer ) { _healRotationTimer = timer; }
|
void SetHealRotationTimer( uint32 timer ) { _healRotationTimer = timer; }
|
||||||
void SetNumHealRotationMembers( uint8 numMembers ) { _numHealRotationMembers = numMembers; }
|
void SetNumHealRotationMembers( uint8 numMembers ) { _numHealRotationMembers = numMembers; }
|
||||||
void SetBardUseOutOfCombatSongs(bool useOutOfCombatSongs) { _bardUseOutOfCombatSongs = useOutOfCombatSongs;}
|
void SetBardUseOutOfCombatSongs(bool useOutOfCombatSongs) { _bardUseOutOfCombatSongs = useOutOfCombatSongs;}
|
||||||
|
void SetShowHelm(bool showhelm) { _showhelm = showhelm; }
|
||||||
|
|
||||||
// Class Destructors
|
// Class Destructors
|
||||||
virtual ~Bot();
|
virtual ~Bot();
|
||||||
@ -622,6 +624,7 @@ private:
|
|||||||
std::map<uint32, BotAA> botAAs;
|
std::map<uint32, BotAA> botAAs;
|
||||||
InspectMessage_Struct _botInspectMessage;
|
InspectMessage_Struct _botInspectMessage;
|
||||||
bool _bardUseOutOfCombatSongs;
|
bool _bardUseOutOfCombatSongs;
|
||||||
|
bool _showhelm;
|
||||||
|
|
||||||
// Private "base stats" Members
|
// Private "base stats" Members
|
||||||
int32 _baseMR;
|
int32 _baseMR;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user