Core/Creatures: Added fields for static flags to creature class for future use
Port From (https://github.com/TrinityCore/TrinityCore/commit/379b1ec6ae83229ed2c5b82480d73d509c47be33)
This commit is contained in:
@@ -264,6 +264,253 @@ namespace Framework.Constants
|
||||
QuestBoss = 0x80000000 // Not Verified
|
||||
}
|
||||
|
||||
[Flags]
|
||||
public enum CreatureStaticFlags : uint
|
||||
{
|
||||
Mountable = 0x00000001,
|
||||
NoXp = 0x00000002, // CreatureFlagExtraNoXp
|
||||
NoLoot = 0x00000004,
|
||||
Unkillable = 0x00000008,
|
||||
Tameable = 0x00000010, // CreatureTypeFlagTameable
|
||||
ImmuneToPc = 0x00000020, // UnitFlagImmuneToPc
|
||||
ImmuneToNpc = 0x00000040, // UnitFlagImmuneToNpc
|
||||
CanWieldLoot = 0x00000080,
|
||||
Sessile = 0x00000100, // CreatureTemplateMovement.Rooted = 1
|
||||
Uninteractible = 0x00000200, // UnitFlagUninteractible
|
||||
NoAutomaticRegen = 0x00000400, // Creatures With That Flag Uses No UnitFlag2RegeneratePower
|
||||
DespawnInstantly = 0x00000800, // Creature Instantly Disappear When Killed
|
||||
CorpseRaid = 0x00001000,
|
||||
CreatorLoot = 0x00002000, // Lootable Only By Creator(Engineering Dummies)
|
||||
NoDefense = 0x00004000,
|
||||
NoSpellDefense = 0x00008000,
|
||||
BossMob = 0x00010000, // CreatureTypeFlagBossMob, Original Description: Raid Boss Mob
|
||||
CombatPing = 0x00020000,
|
||||
Aquatic = 0x00040000, // Aka Water Only, CreatureTemplateMovement.Ground = 0
|
||||
Amphibious = 0x00080000, // CreatureTemplateMovement.Swim = 1
|
||||
NoMeleeFlee = 0x00100000, // Prevents Melee(Does Not Prevent Chasing, Does Not Make Creature Passive). Not Sure What 'Flee' Means But Another Flag Is Named NoMeleeApproach
|
||||
VisibleToGhosts = 0x00200000, // CreatureTypeFlagVisibleToGhosts
|
||||
PvpEnabling = 0x00400000, // Old UnitFlagPvpEnabling, Now UnitBytes2OffsetPvpFlag From UnitFieldBytes2
|
||||
DoNotPlayWoundAnim = 0x00800000, // CreatureTypeFlagDoNotPlayWoundAnim
|
||||
NoFactionTooltip = 0x01000000, // CreatureTypeFlagNoFactionTooltip
|
||||
IgnoreCombat = 0x02000000, // Actually Only Changes React State To Passive
|
||||
OnlyAttackPvpEnabling = 0x04000000, // "Only Attack Targets That Are Pvp Enabling"
|
||||
CallsGuards = 0x08000000, // Creature Will Summon A Guard If Player Is Within Its Aggro Range (Even If Creature Doesn'T Attack Per Se)
|
||||
CanSwim = 0x10000000, // Unitflags 0x8000 UnitFlagCanSwim
|
||||
Floating = 0x20000000, // CreatureTemplateMovement.Flight = 1
|
||||
MoreAudible = 0x40000000, // CreatureTypeFlagMoreAudible
|
||||
LargeAoi = 0x80000000 // Unitflags2 0x200000
|
||||
}
|
||||
|
||||
[Flags]
|
||||
public enum CreatureStaticFlags2 : uint
|
||||
{
|
||||
NoPetScaling = 0x00000001,
|
||||
ForcePartyMembersIntoCombat = 0x00000002, // Original Description: Force Raid Combat
|
||||
LockTappersToRaidOnDeath = 0x00000004, // "Lock Tappers To Raid On Death", Toggleable By 'Set "RaidLockOnDeath" Flag For Unit(S)' Action, CreatureFlagExtraInstanceBind
|
||||
SpellAttackable = 0x00000008, // CreatureTypeFlagSpellAttackable, Original Description(Not Valid Anymore?): No Harmful Vertex Coloring
|
||||
NoCrushingBlows = 0x00000010, // CreatureFlagExtraNoCrushingBlows
|
||||
NoOwnerThreat = 0x00000020,
|
||||
NoWoundedSlowdown = 0x00000040,
|
||||
UseCreatorBonuses = 0x00000080,
|
||||
IgnoreFeignDeath = 0x00000100, // CreatureFlagExtraIgnoreFeignDeath
|
||||
IgnoreSanctuary = 0x00000200,
|
||||
ActionTriggersWhileCharmed = 0x00000400,
|
||||
InteractWhileDead = 0x00000800, // CreatureTypeFlagInteractWhileDead
|
||||
NoInterruptSchoolCooldown = 0x00001000,
|
||||
ReturnSoulShardToMasterOfPet = 0x00002000,
|
||||
SkinWithHerbalism = 0x00004000, // CreatureTypeFlagSkinWithHerbalism
|
||||
SkinWithMining = 0x00008000, // CreatureTypeFlagSkinWithMining
|
||||
AlertContentTeamOnDeath = 0x00010000,
|
||||
AlertContentTeamAt90PctHp = 0x00020000,
|
||||
AllowMountedCombat = 0x00040000, // CreatureTypeFlagAllowMountedCombat
|
||||
PvpEnablingOoc = 0x00080000,
|
||||
NoDeathMessage = 0x00100000, // CreatureTypeFlagNoDeathMessage
|
||||
IgnorePathingFailure = 0x00200000,
|
||||
FullSpellList = 0x00400000,
|
||||
DoesNotReduceReputationForRaids = 0x00800000,
|
||||
IgnoreMisdirection = 0x01000000,
|
||||
HideBody = 0x02000000, // UnitFlag2HideBody
|
||||
SpawnDefensive = 0x04000000,
|
||||
ServerOnly = 0x08000000,
|
||||
CanSafeFall = 0x10000000, // Original Description: No Collision
|
||||
CanAssist = 0x20000000, // CreatureTypeFlagCanAssist, Original Description: Player Can Heal/Buff
|
||||
NoSkillGains = 0x40000000, // CreatureFlagExtraNoSkillGains
|
||||
NoPetBar = 0x80000000 // CreatureTypeFlagNoPetBar
|
||||
}
|
||||
|
||||
[Flags]
|
||||
public enum CreatureStaticFlags3 : uint
|
||||
{
|
||||
NoDamageHistory = 0x00000001,
|
||||
DontPvpEnableOwner = 0x00000002,
|
||||
DoNotFadeIn = 0x00000004, // UnitFlag2DoNotFadeIn
|
||||
MaskUid = 0x00000008, // CreatureTypeFlagMaskUid, Original Description: Non-Unique In Combat Log
|
||||
SkinWithEngineering = 0x00000010, // CreatureTypeFlagSkinWithEngineering
|
||||
NoAggroOnLeash = 0x00000020,
|
||||
NoFriendlyAreaAuras = 0x00000040,
|
||||
ExtendedCorpseDuration = 0x00000080,
|
||||
CannotSwim = 0x00000100, // UnitFlagCannotSwim
|
||||
TameableExotic = 0x00000200, // CreatureTypeFlagTameableExotic
|
||||
GiganticAoi = 0x00000400, // Since Mop, Creatures With That Flag Have Unitflags2 0x400000
|
||||
InfiniteAoi = 0x00000800, // Since Mop, Creatures With That Flag Have Unitflags2 0x40000000
|
||||
CannotPenetrateWater = 0x00001000, // Waterwalking
|
||||
NoNamePlate = 0x00002000, // CreatureTypeFlagNoNamePlate
|
||||
ChecksLiquids = 0x00004000,
|
||||
NoThreatFeedback = 0x00008000,
|
||||
UseModelCollisionSize = 0x00010000, // CreatureTypeFlagUseModelCollisionSize
|
||||
AttackerIgnoresFacing = 0x00020000, // In 3.3.5 Used Only By Rocket Propelled Warhead
|
||||
AllowInteractionWhileInCombat = 0x00040000, // CreatureTypeFlagAllowInteractionWhileInCombat
|
||||
SpellClickForPartyOnly = 0x00080000,
|
||||
FactionLeader = 0x00100000,
|
||||
ImmuneToPlayerBuffs = 0x00200000,
|
||||
CollideWithMissiles = 0x00400000, // CreatureTypeFlagCollideWithMissiles
|
||||
CanBeMultitapped = 0x00800000, // Original Description: Do Not Tap (Credit To Threat List)
|
||||
DoNotPlayMountedAnimations = 0x01000000, // CreatureTypeFlagDoNotPlayMountedAnimations, Original Description: Disable Dodge, Parry And Block Animations
|
||||
CannotTurn = 0x02000000, // UnitFlag2CannotTurn
|
||||
EnemyCheckIgnoresLos = 0x04000000,
|
||||
ForeverCorpseDuration = 0x08000000, // 7 Days
|
||||
PetsAttackWith3dPathing = 0x10000000, // "Pets Attack With 3d Pathing (Kologarn)"
|
||||
LinkAll = 0x20000000, // CreatureTypeFlagLinkAll
|
||||
AiCanAutoTakeoffInCombat = 0x40000000,
|
||||
AiCanAutoLandInCombat = 0x80000000
|
||||
}
|
||||
|
||||
[Flags]
|
||||
public enum CreatureStaticFlags4 : uint
|
||||
{
|
||||
NoBirthAnim = 0x00000001, // SmsgUpdateObject'S "Nobirthanim"
|
||||
TreatAsPlayerForDiminishingReturns = 0x00000002, // Primarily Used By Toc Champions
|
||||
TreatAsPlayerForPvpDebuffDuration = 0x00000004, // Primarily Used By Toc Champions
|
||||
InteractOnlyWithCreator = 0x00000008, // CreatureTypeFlagInteractOnlyWithCreator, Original Description: Only Display Gossip For Summoner
|
||||
DoNotPlayUnitEventSounds = 0x00000010, // CreatureTypeFlagDoNotPlayUnitEventSounds, Original Description: No Death Scream
|
||||
HasNoShadowBlob = 0x00000020, // CreatureTypeFlagHasNoShadowBlob, Original Description(Wrongly Linked Type Flag Or Behavior Was Changed?): Can Be Healed By Enemies
|
||||
DealsTripleDamageToPcControlledPets = 0x00000040,
|
||||
NoNpcDamageBelow85ptc = 0x00000080,
|
||||
ObeysTauntDiminishingReturns = 0x00000100, // CreatureFlagExtraObeysTauntDiminishingReturns
|
||||
NoMeleeApproach = 0x00000200,
|
||||
UpdateCreatureRecordWhenInstanceChangesDifficulty = 0x00000400, // Used Only By Snobold Vassal
|
||||
CannotDaze = 0x00000800, // "Cannot Daze (Combat Stun)"
|
||||
FlatHonorAward = 0x00001000,
|
||||
IgnoreLosWhenCastingOnMe = 0x00002000, // "Other Objects Can Ignore Line Of Sight Requirements When Casting Spells On Me", Used Only By Ice Tomb In 3.3.5
|
||||
GiveQuestKillCreditWhileOffline = 0x00004000,
|
||||
TreatAsRaidUnitForHelpfulSpells = 0x00008000, // CreatureTypeFlagTreatAsRaidUnit, "Treat As Raid Unit For Helpful Spells (Instances Only)", Used By Valithria Dreamwalker
|
||||
DontRepositionIfMeleeTargetIsTooClose = 0x00010000, // "Don'T Reposition Because Melee Target Is Too Close"
|
||||
PetOrGuardianAiDontGoBehindTarget = 0x00020000,
|
||||
MinuteLootRollTimer = 0x00040000, // Used By Lich King
|
||||
ForceGossip = 0x00080000, // CreatureTypeFlagForceGossip
|
||||
DontRepositionWithFriendsInCombat = 0x00100000,
|
||||
DoNotSheathe = 0x00200000, // CreatureTypeFlagDoNotSheathe, Original Description: Manual Sheathing Control
|
||||
IgnoreSpellMinRangeRestrictions = 0x00400000, // Unitflags2 0x8000000, Original Description: Attacker Ignores Minimum Ranges
|
||||
SuppressInstanceWideReleaseInCombat = 0x00800000,
|
||||
PreventSwim = 0x01000000, // Unitflags2 0x1000000, Original Description: Ai Will Only Swim If Target Swims
|
||||
HideInCombatLog = 0x02000000, // Unitflags2 0x2000000, Original Description: Don'T Generate Combat Log When Engaged With Npc'S
|
||||
AllowNpcCombatWhileUninteractible = 0x04000000,
|
||||
PreferNpcsWhenSearchingForEnemies = 0x08000000,
|
||||
OnlyGenerateInitialThreat = 0x10000000,
|
||||
DoNotTargetOnInteraction = 0x20000000, // CreatureTypeFlagDoNotTargetOnInteraction, Original Description: Doesn'T Change Target On Right Click
|
||||
DoNotRenderObjectName = 0x40000000, // CreatureTypeFlagDoNotRenderObjectName, Original Description: Hide Name In World Frame
|
||||
QuestBoss = 0x80000000 // CreatureTypeFlagQuestBoss
|
||||
}
|
||||
|
||||
[Flags]
|
||||
public enum CreatureStaticFlags5 : uint
|
||||
{
|
||||
UntargetableByClient = 0x00000001, // Unitflags2 0x4000000 UnitFlag2UntargetableByClient
|
||||
ForceSelfMounting = 0x00000002,
|
||||
UninteractibleIfHostile = 0x00000004, // Unitflags2 0x10000000
|
||||
DisablesXpAward = 0x00000008,
|
||||
DisableAiPrediction = 0x00000010,
|
||||
NoLeavecombatStateRestore = 0x00000020,
|
||||
BypassInteractInterrupts = 0x00000040,
|
||||
BackArc240Degree = 0x00000080,
|
||||
InteractWhileHostile = 0x00000100, // Unitflags2 0x4000 UnitFlag2InteractWhileHostile
|
||||
DontDismissOnFlyingMount = 0x00000200,
|
||||
PredictivePowerRegen = 0x00000400, // CreatureTypeflags2Unk1
|
||||
HideLevelInfoInTooltip = 0x00000800, // CreatureTypeflags2Unk2
|
||||
HideHealthBarUnderTooltip = 0x00001000, // CreatureTypeflags2Unk3
|
||||
SuppressHighlightWhenTargetedOrMousedOver = 0x00002000, // Unitflags2 0x80000
|
||||
AiPreferPathableTargets = 0x00004000,
|
||||
FrequentAreaTriggerChecks = 0x00008000,
|
||||
AssignKillCreditToEncounterList = 0x00010000,
|
||||
NeverEvade = 0x00020000,
|
||||
AiCantPathOnSteepSlopes = 0x00040000,
|
||||
AiIgnoreLosToMeleeTarget = 0x00080000,
|
||||
NoTextInChatBubble = 0x00100000, // "Never Display Emote Or Chat Text In A Chat Bubble", CreatureTypeflags2Unk4
|
||||
CloseInOnUnpathableTarget = 0x00200000, // "Ai Pets Close In On Unpathable Target"
|
||||
DontGoBehindMe = 0x00400000, // "Pet/Guardian Ai Don'T Go Behind Me (Use On Target)"
|
||||
NoDeathThud = 0x00800000, // CreatureTypeflags2Unk5
|
||||
ClientLocalCreature = 0x01000000,
|
||||
CanDropLootWhileInAChallengeModeInstance = 0x02000000,
|
||||
HasSafeLocation = 0x04000000,
|
||||
NoHealthRegen = 0x08000000,
|
||||
NoPowerRegen = 0x10000000,
|
||||
NoPetUnitFrame = 0x20000000,
|
||||
NoInteractOnLeftClick = 0x40000000, // CreatureTypeflags2Unk6
|
||||
GiveCriteriaKillCreditWhenCharmed = 0x80000000
|
||||
}
|
||||
|
||||
[Flags]
|
||||
public enum CreatureStaticFlags6 : uint
|
||||
{
|
||||
DoNotAutoResummon = 0x00000001, // "Do Not Auto-Resummon This Companion Creature"
|
||||
ReplaceVisibleUnitIfAvailable = 0x00000002, // "Smooth Phasing: Replace Visible Unit If Available"
|
||||
IgnoreRealmCoalescingHidingCode = 0x00000004, // "Ignore The Realm Coalescing Hiding Code (Always Show)"
|
||||
TapsToFaction = 0x00000008,
|
||||
OnlyQuestgiverForSummoner = 0x00000010,
|
||||
AiCombatReturnPrecise = 0x00000020,
|
||||
HomeRealmOnlyLoot = 0x00000040,
|
||||
NoInteractResponse = 0x00000080, // Tflag2Unk7
|
||||
NoInitialPower = 0x00000100,
|
||||
DontCancelChannelOnMasterMounting = 0x00000200,
|
||||
CanToggleBetweenDeathAndPersonalLoot = 0x00000400,
|
||||
AlwaysStandOnTopOfTarget = 0x00000800, // "Always, Always Tries To Stand Right On Top Of His Move To Target. Always!!", Toggleable By 'Set "Always Stand On Target" Flag For Unit(S)' Or Not Same?
|
||||
UnconsciousOnDeath = 0x00001000,
|
||||
DontReportToLocalDefenseChannelOnDeath = 0x00002000,
|
||||
PreferUnengagedMonsters = 0x00004000, // "Prefer Unengaged Monsters When Picking A Target"
|
||||
UsePvpPowerAndResilience = 0x00008000, // "Use Pvp Power And Resilience When Players Attack This Creature"
|
||||
DontClearDebuffsOnLeaveCombat = 0x00010000,
|
||||
PersonalLootHasFullSecurity = 0x00020000, // "Personal Loot Has Full Security (Guaranteed Push/Mail Delivery)"
|
||||
TripleSpellVisuals = 0x00040000,
|
||||
UseGarrisonOwnerLevel = 0x00080000,
|
||||
ImmediateAoiUpdateOnSpawn = 0x00100000,
|
||||
UiCanGetPosition = 0x00200000,
|
||||
SeamlessTransferProhibited = 0x00400000,
|
||||
AlwaysUseGroupLootMethod = 0x00800000,
|
||||
NoBossKillBanner = 0x01000000,
|
||||
ForceTriggeringPlayerLootOnly = 0x02000000,
|
||||
ShowBossFrameWhileUninteractable = 0x04000000,
|
||||
ScalesToPlayerLevel = 0x08000000,
|
||||
AiDontLeaveMeleeForRangedWhenTargetGetsRooted = 0x10000000,
|
||||
DontUseCombatReachForChaining = 0x20000000,
|
||||
DoNotPlayProceduralWoundAnim = 0x40000000,
|
||||
ApplyProceduralWoundAnimToBase = 0x80000000 // Tflag2Unk14
|
||||
}
|
||||
|
||||
[Flags]
|
||||
public enum CreatureStaticFlags7
|
||||
{
|
||||
ImportantNpc = 0x00000001,
|
||||
ImportantQuestNpc = 0x00000002,
|
||||
LargeNameplate = 0x00000004,
|
||||
TrivialPet = 0x00000008,
|
||||
AiEnemiesDontBackupWhenIGetRooted = 0x00000010,
|
||||
NoAutomaticCombatAnchor = 0x00000020,
|
||||
OnlyTargetableByCreator = 0x00000040,
|
||||
TreatAsPlayerForIsplayercontrolled = 0x00000080,
|
||||
GenerateNoThreatOrDamage = 0x00000100,
|
||||
InteractOnlyOnQuest = 0x00000200,
|
||||
DisableKillCreditForOfflinePlayers = 0x00000400,
|
||||
AiAdditionalPathing = 0x00080000,
|
||||
}
|
||||
|
||||
[Flags]
|
||||
public enum CreatureStaticFlags8
|
||||
{
|
||||
ForceCloseInOnPathFailBehavior = 0x00000002,
|
||||
Use2dChasingCalculation = 0x00000020,
|
||||
UseFastClassicHeartbeat = 0x00000040,
|
||||
}
|
||||
|
||||
[Flags]
|
||||
public enum CreatureFlagsExtra : uint
|
||||
{
|
||||
|
||||
@@ -21,9 +21,17 @@ namespace Game.Entities
|
||||
long _lastDamagedTime; // Part of Evade mechanics
|
||||
MultiMap<byte, byte> m_textRepeat = new();
|
||||
|
||||
CreatureStaticFlags _staticFlags;
|
||||
CreatureStaticFlags2 _staticFlags2;
|
||||
CreatureStaticFlags3 _staticFlags3;
|
||||
CreatureStaticFlags4 _staticFlags4;
|
||||
CreatureStaticFlags5 _staticFlags5;
|
||||
CreatureStaticFlags6 _staticFlags6;
|
||||
CreatureStaticFlags7 _staticFlags7;
|
||||
CreatureStaticFlags8 _staticFlags8;
|
||||
|
||||
// Regenerate health
|
||||
bool _regenerateHealth; // Set on creation
|
||||
bool _regenerateHealthLock; // Dynamically set
|
||||
|
||||
bool _isMissingCanSwimFlagOutOfCombat;
|
||||
|
||||
|
||||
@@ -1129,6 +1129,15 @@ namespace Game.Entities
|
||||
SetHomePosition(GetPosition());
|
||||
}
|
||||
|
||||
public bool HasFlag(CreatureStaticFlags flag) { return _staticFlags.HasFlag(flag); }
|
||||
public bool HasFlag(CreatureStaticFlags2 flag) { return _staticFlags2.HasFlag(flag); }
|
||||
public bool HasFlag(CreatureStaticFlags3 flag) { return _staticFlags3.HasFlag(flag); }
|
||||
public bool HasFlag(CreatureStaticFlags4 flag) { return _staticFlags4.HasFlag(flag); }
|
||||
public bool HasFlag(CreatureStaticFlags5 flag) { return _staticFlags5.HasFlag(flag); }
|
||||
public bool HasFlag(CreatureStaticFlags6 flag) { return _staticFlags6.HasFlag(flag); }
|
||||
public bool HasFlag(CreatureStaticFlags7 flag) { return _staticFlags7.HasFlag(flag); }
|
||||
public bool HasFlag(CreatureStaticFlags8 flag) { return _staticFlags8.HasFlag(flag); }
|
||||
|
||||
public uint GetTrainerId()
|
||||
{
|
||||
if (_trainerId.HasValue)
|
||||
@@ -1141,7 +1150,7 @@ namespace Game.Entities
|
||||
{
|
||||
_trainerId = trainerId;
|
||||
}
|
||||
|
||||
|
||||
public override bool IsMovementPreventedByCasting()
|
||||
{
|
||||
// first check if currently a movement allowed channel is active and we're not casting
|
||||
@@ -1150,7 +1159,7 @@ namespace Game.Entities
|
||||
{
|
||||
if (spell.GetState() != SpellState.Finished && spell.IsChannelActive())
|
||||
if (spell.CheckMovement() != SpellCastResult.SpellCastOk)
|
||||
return true;
|
||||
return true;
|
||||
}
|
||||
|
||||
if (HasSpellFocus())
|
||||
@@ -1208,7 +1217,7 @@ namespace Game.Entities
|
||||
|
||||
public bool IsTappedBy(Player player)
|
||||
{
|
||||
return m_tapList.Contains(player.GetGUID());
|
||||
return m_tapList.Contains(player.GetGUID());
|
||||
}
|
||||
|
||||
public override Loot GetLootForPlayer(Player player)
|
||||
@@ -1247,7 +1256,7 @@ namespace Game.Entities
|
||||
public HashSet<ObjectGuid> GetTapList() { return m_tapList; }
|
||||
public void SetTapList(HashSet<ObjectGuid> tapList) { m_tapList = tapList; }
|
||||
public bool HasLootRecipient() { return !m_tapList.Empty(); }
|
||||
|
||||
|
||||
public void SaveToDB()
|
||||
{
|
||||
// this should only be used when the creature has already been loaded
|
||||
@@ -1615,7 +1624,7 @@ namespace Game.Entities
|
||||
|
||||
public void SetSpawnHealth()
|
||||
{
|
||||
if (_regenerateHealthLock)
|
||||
if (_staticFlags5.HasFlag(CreatureStaticFlags5.NoHealthRegen))
|
||||
return;
|
||||
|
||||
ulong curhealth;
|
||||
@@ -1852,7 +1861,7 @@ namespace Game.Entities
|
||||
else
|
||||
m_respawnTime = GameTime.GetGameTime() + respawnDelay;
|
||||
}
|
||||
|
||||
|
||||
SaveRespawnTime();
|
||||
|
||||
ReleaseSpellFocus(null, false); // remove spellcast focus
|
||||
@@ -1864,7 +1873,7 @@ namespace Game.Entities
|
||||
|
||||
SetMountDisplayId(0); // if creature is mounted on a virtual mount, remove it at death
|
||||
|
||||
SetActive(false);
|
||||
SetActive(false);
|
||||
SetNoSearchAssistance(false);
|
||||
|
||||
//Dismiss group if is leader
|
||||
@@ -2765,7 +2774,7 @@ namespace Game.Entities
|
||||
}
|
||||
|
||||
public string[] GetStringIds() { return m_stringIds; }
|
||||
|
||||
|
||||
public VendorItemData GetVendorItems()
|
||||
{
|
||||
return Global.ObjectMgr.GetNpcVendorItemList(GetEntry());
|
||||
@@ -2967,7 +2976,7 @@ namespace Game.Entities
|
||||
{
|
||||
return GetCreatureTemplate().Scale;
|
||||
}
|
||||
|
||||
|
||||
public override void SetObjectScale(float scale)
|
||||
{
|
||||
base.SetObjectScale(scale);
|
||||
@@ -3153,9 +3162,9 @@ namespace Game.Entities
|
||||
{
|
||||
return GetCreatureTemplate().FlagsExtra.HasAnyFlag(CreatureFlagsExtra.Guard);
|
||||
}
|
||||
|
||||
|
||||
public bool CanWalk() { return GetMovementTemplate().IsGroundAllowed(); }
|
||||
public override bool CanFly() { return GetMovementTemplate().IsFlightAllowed() || IsFlying(); }
|
||||
public override bool CanFly() { return GetMovementTemplate().IsFlightAllowed() || IsFlying(); }
|
||||
bool CanHover() { return GetMovementTemplate().Ground == CreatureGroundMovementType.Hover || IsHovering(); }
|
||||
|
||||
public bool IsDungeonBoss() { return (GetCreatureTemplate().FlagsExtra.HasAnyFlag(CreatureFlagsExtra.DungeonBoss)); }
|
||||
@@ -3306,7 +3315,7 @@ namespace Game.Entities
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
public LootModes GetLootMode() { return m_LootMode; }
|
||||
public bool HasLootMode(LootModes lootMode) { return Convert.ToBoolean(m_LootMode & lootMode); }
|
||||
public void SetLootMode(LootModes lootMode) { m_LootMode = lootMode; }
|
||||
@@ -3318,7 +3327,7 @@ namespace Game.Entities
|
||||
public void SetNoSearchAssistance(bool val) { m_AlreadySearchedAssistance = val; }
|
||||
public bool HasSearchedAssistance() { return m_AlreadySearchedAssistance; }
|
||||
public bool CanIgnoreFeignDeath() { return GetCreatureTemplate().FlagsExtra.HasFlag(CreatureFlagsExtra.IgnoreFeighDeath); }
|
||||
|
||||
|
||||
public override MovementGeneratorType GetDefaultMovementType() { return DefaultMovementType; }
|
||||
public void SetDefaultMovementType(MovementGeneratorType mgt) { DefaultMovementType = mgt; }
|
||||
|
||||
@@ -3340,8 +3349,14 @@ namespace Game.Entities
|
||||
m_combatPulseTime = delay;
|
||||
}
|
||||
|
||||
public bool CanRegenerateHealth() { return !_regenerateHealthLock && _regenerateHealth; }
|
||||
public void SetRegenerateHealth(bool value) { _regenerateHealthLock = !value; }
|
||||
public bool CanRegenerateHealth() { return !_staticFlags5.HasFlag(CreatureStaticFlags5.NoHealthRegen) && _regenerateHealth; }
|
||||
public void SetRegenerateHealth(bool value)
|
||||
{
|
||||
if (!value)
|
||||
_staticFlags5 |= CreatureStaticFlags5.NoHealthRegen;
|
||||
else
|
||||
_staticFlags5 &= ~CreatureStaticFlags5.NoHealthRegen;
|
||||
}
|
||||
|
||||
public void SetHomePosition(float x, float y, float z, float o)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user