├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── dotnet.yml ├── .gitignore ├── ForgedCore.sln ├── Forged_Logo.png ├── LICENSE ├── README.md ├── Source ├── BNetServer │ ├── BNetServer.conf.dist │ ├── BNetServer.csproj │ ├── BNetServer.pfx │ ├── Managers │ │ ├── Global.cs │ │ └── LoginServiceManager.cs │ ├── Networking │ │ ├── RestSession.cs │ │ ├── Services │ │ │ ├── Account.cs │ │ │ ├── Authentication.cs │ │ │ ├── Connection.cs │ │ │ └── GameUtilities.cs │ │ └── Session.cs │ ├── Red.ico │ └── Server.cs ├── Framework │ ├── Algorithms │ │ ├── DepthFirstSearch.cs │ │ ├── DijkstraShortestPath.cs │ │ └── EdgeWeightedDigraph.cs │ ├── Collections │ │ ├── Array.cs │ │ ├── BitSet.cs │ │ ├── CircularBuffer.cs │ │ ├── ConcurrentMultiMap.cs │ │ ├── IndexMinPriorityQueue.cs │ │ ├── LinkedListElement.cs │ │ ├── LoopSafeDictionary.cs │ │ ├── LoopSafeDoubleDictionary.cs │ │ ├── LoopSafeSortedDictionary.cs │ │ ├── ManyToOneLookup.cs │ │ ├── MultiMap.cs │ │ ├── MultiMapHashset.cs │ │ └── StringArray.cs │ ├── Configuration │ │ └── ConfigMgr.cs │ ├── Constants │ │ ├── Account │ │ │ ├── AccountDataTypes.cs │ │ │ ├── AccountTypes.cs │ │ │ ├── MountStatusFlags.cs │ │ │ ├── RBACPermissions.cs │ │ │ ├── ToyFlags.cs │ │ │ └── TutorialAction.cs │ │ ├── Achievement │ │ │ ├── AchievementFaction.cs │ │ │ ├── AchievementFlags.cs │ │ │ ├── CriteriaDataType.cs │ │ │ ├── CriteriaFailEvent.cs │ │ │ ├── CriteriaFlags.cs │ │ │ ├── CriteriaFlagsCu.cs │ │ │ ├── CriteriaStartEvent.cs │ │ │ ├── CriteriaTreeFlags.cs │ │ │ ├── CriteriaTreeOperator.cs │ │ │ ├── CriteriaType.cs │ │ │ ├── ModifierTreeType.cs │ │ │ └── ProgressType.cs │ │ ├── AreaId.cs │ │ ├── AreaTrigger │ │ │ ├── AreaTriggerActionTypes.cs │ │ │ ├── AreaTriggerActionUserTypes.cs │ │ │ ├── AreaTriggerFlags.cs │ │ │ └── AreaTriggerTypes.cs │ │ ├── Auction │ │ │ ├── AuctionCommand.cs │ │ │ ├── AuctionHouseBrowseMode.cs │ │ │ ├── AuctionHouseFilterMask.cs │ │ │ ├── AuctionHouseListType.cs │ │ │ ├── AuctionHouseResultLimits.cs │ │ │ ├── AuctionHouseSortOrder.cs │ │ │ ├── AuctionMailType.cs │ │ │ ├── AuctionPostingServerFlag.cs │ │ │ └── AuctionResult.cs │ │ ├── Authentication │ │ │ ├── BattlenetRpcErrorCode.cs │ │ │ ├── CharacterUndeleteResult.cs │ │ │ ├── RealmFlags.cs │ │ │ ├── RealmType.cs │ │ │ ├── RealmZones.cs │ │ │ └── ResponseCodes.cs │ │ ├── BanMode.cs │ │ ├── BanReturn.cs │ │ ├── BattleField │ │ │ ├── BattleFieldObjectiveStates.cs │ │ │ ├── BattlefieldIds.cs │ │ │ ├── BattlefieldSounds.cs │ │ │ └── BattlefieldState.cs │ │ ├── BattleGrounds │ │ │ ├── ArenaBroadcastTexts.cs │ │ │ ├── ArenaErrorType.cs │ │ │ ├── ArenaSpellIds.cs │ │ │ ├── ArenaTeamCommandErrors.cs │ │ │ ├── ArenaTeamCommandTypes.cs │ │ │ ├── ArenaTeamEvents.cs │ │ │ ├── ArenaTeamInfoType.cs │ │ │ ├── ArenaTypes.cs │ │ │ ├── BGHonorMode.cs │ │ │ ├── BattlegroundBroadcastTexts.cs │ │ │ ├── BattlegroundCapturePointState.cs │ │ │ ├── BattlegroundConst.cs │ │ │ ├── BattlegroundCreatures.cs │ │ │ ├── BattlegroundEventFlags.cs │ │ │ ├── BattlegroundMarksCount.cs │ │ │ ├── BattlegroundPointCaptureStatus.cs │ │ │ ├── BattlegroundQueueIdType.cs │ │ │ ├── BattlegroundQueueInvitationType.cs │ │ │ ├── BattlegroundSounds.cs │ │ │ ├── BattlegroundStartTimeIntervals.cs │ │ │ ├── BattlegroundStatus.cs │ │ │ ├── BattlegroundTypeId.cs │ │ │ ├── BracketType.cs │ │ │ ├── GroupJoinBattlegroundResult.cs │ │ │ ├── PvPTeamId.cs │ │ │ └── ScoreType.cs │ │ ├── BattlePet │ │ │ ├── BattlePetBreedQuality.cs │ │ │ ├── BattlePetError.cs │ │ │ ├── BattlePetSaveInfo.cs │ │ │ ├── BattlePetState.cs │ │ │ ├── BattlePetXpSource.cs │ │ │ └── FlagsControlType.cs │ │ ├── BattlePetDbFlags.cs │ │ ├── BattlePetSlots.cs │ │ ├── BlackMarket │ │ │ ├── BMAHMailAuctionAnswers.cs │ │ │ ├── BlackMarketConst.cs │ │ │ └── BlackMarketError.cs │ │ ├── Calendar │ │ │ ├── CalendarError.cs │ │ │ ├── CalendarEventType.cs │ │ │ ├── CalendarFlags.cs │ │ │ ├── CalendarInviteStatus.cs │ │ │ ├── CalendarMailAnswers.cs │ │ │ ├── CalendarModerationRank.cs │ │ │ ├── CalendarRepeatType.cs │ │ │ └── CalendarSendEventType.cs │ │ ├── CascLocaleBit.cs │ │ ├── Chat │ │ │ ├── ChannelDBCFlags.cs │ │ │ ├── ChannelFlags.cs │ │ │ ├── ChannelMemberFlags.cs │ │ │ └── ChatNotify.cs │ │ ├── ChatMsg.cs │ │ ├── ChatRestrictionType.cs │ │ ├── Class.cs │ │ ├── ComparisionType.cs │ │ ├── ComplaintStatus.cs │ │ ├── Condition │ │ │ ├── ConditionSourceType.cs │ │ │ ├── ConditionTypes.cs │ │ │ ├── InstanceInfo.cs │ │ │ └── RelationType.cs │ │ ├── Connect │ │ │ ├── ConnectToSerial.cs │ │ │ ├── ConnectionType.cs │ │ │ └── LoginFailureReason.cs │ │ ├── ContentLevels.cs │ │ ├── ConversationActorType.cs │ │ ├── CorpseDynFlags.cs │ │ ├── Covenant │ │ │ ├── Covenant.cs │ │ │ ├── CovenantQuests.cs │ │ │ └── CovenantSpells.cs │ │ ├── Creature │ │ │ ├── AiReaction.cs │ │ │ ├── CreatureChaseMovementType.cs │ │ │ ├── CreatureEliteType.cs │ │ │ ├── CreatureFamily.cs │ │ │ ├── CreatureFlagsExtra.cs │ │ │ ├── CreatureFlightMovementType.cs │ │ │ ├── CreatureGroundMovementType.cs │ │ │ ├── CreatureLinkedRespawnType.cs │ │ │ ├── CreatureRandomMovementType.cs │ │ │ ├── CreatureStaticFlags.cs │ │ │ ├── CreatureStaticFlags2.cs │ │ │ ├── CreatureStaticFlags3.cs │ │ │ ├── CreatureStaticFlags4.cs │ │ │ ├── CreatureStaticFlags5.cs │ │ │ ├── CreatureStaticFlags6.cs │ │ │ ├── CreatureStaticFlags7.cs │ │ │ ├── CreatureStaticFlags8.cs │ │ │ ├── CreatureType.cs │ │ │ ├── CreatureTypeFlags.cs │ │ │ ├── EvadeReason.cs │ │ │ ├── GroupAIFlags.cs │ │ │ ├── InhabitType.cs │ │ │ ├── NPCFlags.cs │ │ │ ├── NPCFlags2.cs │ │ │ ├── SelectTargetMethod.cs │ │ │ ├── UnitFlags.cs │ │ │ ├── UnitFlags2.cs │ │ │ ├── UnitFlags3.cs │ │ │ └── VendorInventoryReason.cs │ │ ├── DataStorage │ │ │ ├── AbilityLearnType.cs │ │ │ ├── Anim.cs │ │ │ ├── AreaFlags.cs │ │ │ ├── AreaFlags2.cs │ │ │ ├── AreaMountFlags.cs │ │ │ ├── ArtifactCategory.cs │ │ │ ├── ArtifactPowerFlag.cs │ │ │ ├── AzeriteItemMilestoneType.cs │ │ │ ├── AzeriteTierUnlockSetFlags.cs │ │ │ ├── BattlePetSpeciesFlags.cs │ │ │ ├── BattlegroundBracketId.cs │ │ │ ├── BattlemasterListFlags.cs │ │ │ ├── CharSectionType.cs │ │ │ ├── ChrCustomizationOptionFlag.cs │ │ │ ├── ChrCustomizationReqFlag.cs │ │ │ ├── ChrRacesFlag.cs │ │ │ ├── ChrSpecializationFlag.cs │ │ │ ├── ContentTuningCalcType.cs │ │ │ ├── ContentTuningFlag.cs │ │ │ ├── CorruptionEffectsFlag.cs │ │ │ ├── CreatureModelDataFlags.cs │ │ │ ├── CurrencyTypesFlags.cs │ │ │ ├── CurrencyTypesFlagsB.cs │ │ │ ├── Curves.cs │ │ │ ├── DB2ColumnCompression.cs │ │ │ ├── Emote.cs │ │ │ ├── ExpectedStatType.cs │ │ │ ├── FriendshipReputationFlags.cs │ │ │ ├── GlobalCurve.cs │ │ │ ├── GlyphSlotType.cs │ │ │ ├── HeaderFlags.cs │ │ │ ├── ItemSetFlags.cs │ │ │ ├── ItemSpecStat.cs │ │ │ ├── LockKeyType.cs │ │ │ ├── LockType.cs │ │ │ ├── MapDifficultyFlags.cs │ │ │ ├── MapDifficultyResetInterval.cs │ │ │ ├── MapTypes.cs │ │ │ ├── ModifierTreeOperator.cs │ │ │ ├── MountCapabilityFlags.cs │ │ │ ├── MountFlags.cs │ │ │ ├── PhaseEntryFlags.cs │ │ │ ├── PhaseUseFlagsValues.cs │ │ │ ├── PlayerConditionLfgStatus.cs │ │ │ ├── PlayerInteractionType.cs │ │ │ ├── PrestigeLevelInfoFlags.cs │ │ │ ├── QuestPackageFilter.cs │ │ │ ├── ScenarioStepFlags.cs │ │ │ ├── SkillLineAbilityFlags.cs │ │ │ ├── SkillLineFlags.cs │ │ │ ├── SkillRaceClassInfoFlags.cs │ │ │ ├── SpellCategoryFlags.cs │ │ │ ├── SpellEffectAttributes.cs │ │ │ ├── SpellProcsPerMinuteModType.cs │ │ │ ├── SpellShapeshiftFormFlags.cs │ │ │ ├── SpellVisualEffectNameType.cs │ │ │ ├── SummonPropertiesFlags.cs │ │ │ ├── TaxiNodeFlags.cs │ │ │ ├── TaxiPathNodeFlags.cs │ │ │ ├── TextEmotes.cs │ │ │ ├── TraitCombatConfigFlags.cs │ │ │ ├── TraitCondFlags.cs │ │ │ ├── TraitConditionType.cs │ │ │ ├── TraitConfigType.cs │ │ │ ├── TraitCurrencyType.cs │ │ │ ├── TraitEdgeType.cs │ │ │ ├── TraitNodeEntryType.cs │ │ │ ├── TraitNodeGroupFlag.cs │ │ │ ├── TraitNodeType.cs │ │ │ ├── TraitPointsOperationType.cs │ │ │ ├── TraitTreeFlag.cs │ │ │ ├── TransmogIllusionFlags.cs │ │ │ ├── UiMapFlag.cs │ │ │ ├── UiMapSystem.cs │ │ │ ├── UiMapType.cs │ │ │ ├── UnitConditionFlags.cs │ │ │ ├── UnitConditionOp.cs │ │ │ ├── UnitConditionVariable.cs │ │ │ ├── WorldStateExpressionComparisonType.cs │ │ │ ├── WorldStateExpressionFunctions.cs │ │ │ ├── WorldStateExpressionLogic.cs │ │ │ ├── WorldStateExpressionOperatorType.cs │ │ │ └── WorldStateExpressionValueType.cs │ │ ├── Difficulty.cs │ │ ├── DifficultyFlags.cs │ │ ├── Expansion.cs │ │ ├── FactionMasks.cs │ │ ├── FactionTemplateFlags.cs │ │ ├── FactionTemplates.cs │ │ ├── GameError.cs │ │ ├── GameObject │ │ │ ├── GameObjectActions.cs │ │ │ ├── GameObjectDestructibleState.cs │ │ │ ├── GameObjectDynamicLowFlags.cs │ │ │ ├── GameObjectFlags.cs │ │ │ ├── GameObjectState.cs │ │ │ ├── GameObjectSummonType.cs │ │ │ ├── GameObjectTypes.cs │ │ │ ├── LootState.cs │ │ │ └── TransportMovementState.cs │ │ ├── Garrison │ │ │ ├── GarrisonAbilityFlags.cs │ │ │ ├── GarrisonBuildingFlags.cs │ │ │ ├── GarrisonError.cs │ │ │ ├── GarrisonFactionIndex.cs │ │ │ ├── GarrisonFollowerFlags.cs │ │ │ ├── GarrisonFollowerStatus.cs │ │ │ ├── GarrisonFollowerType.cs │ │ │ └── GarrisonType.cs │ │ ├── Gender.cs │ │ ├── Gossip │ │ │ ├── GossipAction.cs │ │ │ ├── GossipOption.cs │ │ │ ├── GossipOptionFlags.cs │ │ │ ├── GossipOptionNpc.cs │ │ │ ├── GossipOptionRewardType.cs │ │ │ ├── GossipOptionStatus.cs │ │ │ ├── GossipSender.cs │ │ │ └── eTradeskill.cs │ │ ├── Group │ │ │ ├── GroupCategory.cs │ │ │ ├── GroupFlags.cs │ │ │ ├── GroupMemberAssignment.cs │ │ │ ├── GroupMemberFlags.cs │ │ │ ├── GroupMemberOnlineStatus.cs │ │ │ ├── GroupType.cs │ │ │ ├── GroupUpdateFlags.cs │ │ │ ├── GroupUpdatePetFlags.cs │ │ │ ├── PartyOperation.cs │ │ │ ├── PartyResult.cs │ │ │ └── RemoveMethod.cs │ │ ├── Guild │ │ │ ├── CharterCosts.cs │ │ │ ├── CharterTypes.cs │ │ │ ├── GuildBankEventLogTypes.cs │ │ │ ├── GuildBankRights.cs │ │ │ ├── GuildCommandError.cs │ │ │ ├── GuildCommandType.cs │ │ │ ├── GuildConst.cs │ │ │ ├── GuildEmblemError.cs │ │ │ ├── GuildEventLogTypes.cs │ │ │ ├── GuildMemberData.cs │ │ │ ├── GuildMemberFlags.cs │ │ │ ├── GuildNews.cs │ │ │ ├── GuildRankId.cs │ │ │ ├── GuildRankOrder.cs │ │ │ ├── GuildRankRights.cs │ │ │ ├── PetitionSigns.cs │ │ │ └── PetitionTurns.cs │ │ ├── HolidayIds.cs │ │ ├── Item │ │ │ ├── AzeriteEssenceActivateResult.cs │ │ │ ├── BagFamilyMask.cs │ │ │ ├── BuyBankSlotResult.cs │ │ │ ├── BuyResult.cs │ │ │ ├── CurrencyTypes.cs │ │ │ ├── EnchantmentSlot.cs │ │ │ ├── EquipableSpellSlots.cs │ │ │ ├── EquipmentSlot.cs │ │ │ ├── InventoryResult.cs │ │ │ ├── InventorySlots.cs │ │ │ ├── InventoryType.cs │ │ │ ├── ItemBondingType.cs │ │ │ ├── ItemBonusType.cs │ │ │ ├── ItemClass.cs │ │ │ ├── ItemConst.cs │ │ │ ├── ItemContext.cs │ │ │ ├── ItemEnchantmentType.cs │ │ │ ├── ItemExtendedCostFlags.cs │ │ │ ├── ItemFieldFlags.cs │ │ │ ├── ItemFieldFlags2.cs │ │ │ ├── ItemFlags.cs │ │ │ ├── ItemFlags2.cs │ │ │ ├── ItemFlags3.cs │ │ │ ├── ItemFlags4.cs │ │ │ ├── ItemFlagsCustom.cs │ │ │ ├── ItemModType.cs │ │ │ ├── ItemModifier.cs │ │ │ ├── ItemQuality.cs │ │ │ ├── ItemSpelltriggerType.cs │ │ │ ├── ItemSubClassArmor.cs │ │ │ ├── ItemSubClassConsumable.cs │ │ │ ├── ItemSubClassContainer.cs │ │ │ ├── ItemSubClassGem.cs │ │ │ ├── ItemSubClassGlyph.cs │ │ │ ├── ItemSubClassJunk.cs │ │ │ ├── ItemSubClassKey.cs │ │ │ ├── ItemSubClassMoney.cs │ │ │ ├── ItemSubClassPermanent.cs │ │ │ ├── ItemSubClassProjectile.cs │ │ │ ├── ItemSubClassQuest.cs │ │ │ ├── ItemSubClassQuiver.cs │ │ │ ├── ItemSubClassReagent.cs │ │ │ ├── ItemSubClassRecipe.cs │ │ │ ├── ItemSubClassTradeGoods.cs │ │ │ ├── ItemSubClassWeapon.cs │ │ │ ├── ItemSubclassBattlePet.cs │ │ │ ├── ItemSubclassItemEnhancement.cs │ │ │ ├── ItemSubclassProfession.cs │ │ │ ├── ItemSubclassWowToken.cs │ │ │ ├── ItemTransmogrificationWeaponCategory.cs │ │ │ ├── ItemUpdateState.cs │ │ │ ├── ItemVendorType.cs │ │ │ ├── PlayerCurrencyState.cs │ │ │ ├── ProfessionSlots.cs │ │ │ ├── SellResult.cs │ │ │ ├── SocketColor.cs │ │ │ ├── SpellItemEnchantmentFlags.cs │ │ │ └── VisibleEquipmentSlot.cs │ │ ├── LFG │ │ │ ├── LfgAnswer.cs │ │ │ ├── LfgCompatibility.cs │ │ │ ├── LfgFlags.cs │ │ │ ├── LfgJoinResult.cs │ │ │ ├── LfgLockStatusType.cs │ │ │ ├── LfgOptions.cs │ │ │ ├── LfgProposalState.cs │ │ │ ├── LfgQueueType.cs │ │ │ ├── LfgRoleCheckState.cs │ │ │ ├── LfgRoles.cs │ │ │ ├── LfgState.cs │ │ │ ├── LfgTeleportResult.cs │ │ │ ├── LfgType.cs │ │ │ └── LfgUpdateType.cs │ │ ├── Language │ │ │ ├── BroadcastTextIds.cs │ │ │ ├── CypherStrings.cs │ │ │ ├── Language.cs │ │ │ └── LanguageType.cs │ │ ├── Locale.cs │ │ ├── Loot │ │ │ ├── LootError.cs │ │ │ ├── LootItemType.cs │ │ │ ├── LootMethod.cs │ │ │ ├── LootModes.cs │ │ │ ├── LootRollIneligibilityReason.cs │ │ │ ├── LootSlotType.cs │ │ │ ├── LootType.cs │ │ │ ├── RollMask.cs │ │ │ └── RollVote.cs │ │ ├── Mail │ │ │ ├── MailCheckMask.cs │ │ │ ├── MailMessageType.cs │ │ │ ├── MailResponseResult.cs │ │ │ ├── MailResponseType.cs │ │ │ ├── MailShowFlags.cs │ │ │ ├── MailState.cs │ │ │ └── MailStationery.cs │ │ ├── Map │ │ │ ├── AreaHeaderFlags.cs │ │ │ ├── DoorType.cs │ │ │ ├── EncounterCreditType.cs │ │ │ ├── EncounterFrameType.cs │ │ │ ├── EncounterState.cs │ │ │ ├── GridMapTypeMask.cs │ │ │ ├── GridType.cs │ │ │ ├── HeightHeaderFlags.cs │ │ │ ├── InstanceResetMethod.cs │ │ │ ├── InstanceResetResult.cs │ │ │ ├── InstanceResetWarningType.cs │ │ │ ├── InstanceSpawnGroupFlags.cs │ │ │ ├── LineOfSightChecks.cs │ │ │ ├── LiquidHeaderFlags.cs │ │ │ ├── LiquidHeaderTypeFlags.cs │ │ │ ├── MapConst.cs │ │ │ ├── ModelIgnoreFlags.cs │ │ │ ├── NewWorldReason.cs │ │ │ ├── SpawnGroupFlags.cs │ │ │ ├── SpawnObjectType.cs │ │ │ ├── SpawnObjectTypeMask.cs │ │ │ └── ZLiquidStatus.cs │ │ ├── MapFlags.cs │ │ ├── MapFlags2.cs │ │ ├── Movement │ │ │ ├── EventId.cs │ │ │ ├── MonsterMoveType.cs │ │ │ ├── MotionMasterDelayedActionType.cs │ │ │ ├── MotionMasterFlags.cs │ │ │ ├── MovementFlag.cs │ │ │ ├── MovementFlag2.cs │ │ │ ├── MovementFlags3.cs │ │ │ ├── MovementForceType.cs │ │ │ ├── MovementGeneratorFlags.cs │ │ │ ├── MovementGeneratorMode.cs │ │ │ ├── MovementGeneratorPriority.cs │ │ │ ├── MovementGeneratorType.cs │ │ │ ├── MovementSlot.cs │ │ │ ├── MovementStopReason.cs │ │ │ ├── MovementWalkRunSpeedSelectionMode.cs │ │ │ ├── RotateDirection.cs │ │ │ ├── SplineFlag.cs │ │ │ └── UpdateCollisionHeightReason.cs │ │ ├── Network │ │ │ ├── ClientOpcodes.cs │ │ │ ├── PacketProcessing.cs │ │ │ ├── ServerOpcodes.cs │ │ │ └── SessionStatus.cs │ │ ├── Object │ │ │ ├── GhostVisibilityType.cs │ │ │ ├── HighGuid.cs │ │ │ ├── InvisibilityType.cs │ │ │ ├── NotifyFlags.cs │ │ │ ├── ServerSideVisibilityType.cs │ │ │ ├── SessionFlags.cs │ │ │ ├── StealthType.cs │ │ │ ├── SummonCategory.cs │ │ │ ├── SummonTitle.cs │ │ │ ├── SummonerType.cs │ │ │ ├── TempSummonType.cs │ │ │ ├── TypeId.cs │ │ │ └── TypeMask.cs │ │ ├── OutdoorPvP │ │ │ ├── ObjectiveStates.cs │ │ │ └── OutdoorPvPTypes.cs │ │ ├── Pet │ │ │ ├── CharmType.cs │ │ │ ├── CommandStates.cs │ │ │ ├── PetActionFeedback.cs │ │ │ ├── PetNameInvalidReason.cs │ │ │ ├── PetSaveMode.cs │ │ │ ├── PetSpellState.cs │ │ │ ├── PetSpellType.cs │ │ │ ├── PetStableinfo.cs │ │ │ ├── PetTalk.cs │ │ │ ├── PetTameResult.cs │ │ │ ├── PetType.cs │ │ │ └── StableResult.cs │ │ ├── Player │ │ │ ├── ActionButtonType.cs │ │ │ ├── ActionButtonUpdateState.cs │ │ │ ├── ActivateTaxiReply.cs │ │ │ ├── ArenaTeams.cs │ │ │ ├── AtLoginFlags.cs │ │ │ ├── AttackSwingErr.cs │ │ │ ├── CUFBoolOptions.cs │ │ │ ├── CharacterCustomizeFlags.cs │ │ │ ├── CharacterFlags.cs │ │ │ ├── CharacterFlags3.cs │ │ │ ├── CharacterFlags4.cs │ │ │ ├── ChatFlags.cs │ │ │ ├── CorpseFlags.cs │ │ │ ├── CorpseType.cs │ │ │ ├── CurrencyDbFlags.cs │ │ │ ├── CurrencyDestroyReason.cs │ │ │ ├── CurrencyGainFlags.cs │ │ │ ├── CurrencyGainSource.cs │ │ │ ├── DeclinedNameResult.cs │ │ │ ├── DisplayToastMethod.cs │ │ │ ├── DisplayToastType.cs │ │ │ ├── DrunkenState.cs │ │ │ ├── DuelCompleteType.cs │ │ │ ├── DuelState.cs │ │ │ ├── EnviromentalDamage.cs │ │ │ ├── EquipmentSetUpdateState.cs │ │ │ ├── HeirloomItemFlags.cs │ │ │ ├── HeirloomPlayerFlags.cs │ │ │ ├── ItemSearchLocation.cs │ │ │ ├── MirrorTimerType.cs │ │ │ ├── MoneyConstants.cs │ │ │ ├── PlayerCommandStates.cs │ │ │ ├── PlayerConst.cs │ │ │ ├── PlayerCreateMode.cs │ │ │ ├── PlayerDelayedOperations.cs │ │ │ ├── PlayerExtraFlags.cs │ │ │ ├── PlayerFieldByte2Flags.cs │ │ │ ├── PlayerFlags.cs │ │ │ ├── PlayerFlagsEx.cs │ │ │ ├── PlayerLocalFlags.cs │ │ │ ├── PlayerLogXPReason.cs │ │ │ ├── PlayerRestState.cs │ │ │ ├── PlayerSlots.cs │ │ │ ├── PlayerTitle.cs │ │ │ ├── PlayerUnderwaterState.cs │ │ │ ├── RaidGroupReason.cs │ │ │ ├── ReferAFriendError.cs │ │ │ ├── ResetFailedReason.cs │ │ │ ├── RestFlag.cs │ │ │ ├── RestTypes.cs │ │ │ ├── RuneCooldowns.cs │ │ │ ├── SpecResetType.cs │ │ │ ├── TalentLearnResult.cs │ │ │ ├── TalentSpecialization.cs │ │ │ ├── TaxiNodeStatus.cs │ │ │ ├── TeleportToOptions.cs │ │ │ ├── TextureSection.cs │ │ │ ├── TradeSlots.cs │ │ │ ├── TradeStatus.cs │ │ │ ├── TransferAbortReason.cs │ │ │ ├── Tutorials.cs │ │ │ ├── TutorialsFlag.cs │ │ │ └── ZonePVPTypeOverride.cs │ │ ├── PowerType.cs │ │ ├── QueryDataGroup.cs │ │ ├── Quest │ │ │ ├── QuestFailedReasons.cs │ │ │ ├── QuestFlags.cs │ │ │ ├── QuestFlagsEx.cs │ │ │ ├── QuestFlagsEx2.cs │ │ │ ├── QuestGiverStatus.cs │ │ │ ├── QuestInfos.cs │ │ │ ├── QuestObjectiveFlags.cs │ │ │ ├── QuestObjectiveType.cs │ │ │ ├── QuestPushReason.cs │ │ │ ├── QuestSaveType.cs │ │ │ ├── QuestSlotOffsets.cs │ │ │ ├── QuestSlotStateMask.cs │ │ │ ├── QuestSort.cs │ │ │ ├── QuestSpecialFlags.cs │ │ │ ├── QuestStatus.cs │ │ │ ├── QuestTagType.cs │ │ │ ├── QuestTradeSkill.cs │ │ │ └── QuestType.cs │ │ ├── Race.cs │ │ ├── ReputationFlags.cs │ │ ├── ReputationRank.cs │ │ ├── ReputationSource.cs │ │ ├── SceneFlags.cs │ │ ├── SceneType.cs │ │ ├── ScriptCommands.cs │ │ ├── Scripts │ │ │ ├── AuraScriptHookType.cs │ │ │ ├── SpellScriptHookType.cs │ │ │ └── SpellScriptState.cs │ │ ├── ScriptsType.cs │ │ ├── Service │ │ │ ├── NameHash.cs │ │ │ └── OriginalHash.cs │ │ ├── SharedConst.cs │ │ ├── SmartAI │ │ │ ├── LOSHostilityMode.cs │ │ │ ├── SmartActionSummonCreatureFlags.cs │ │ │ ├── SmartActions.cs │ │ │ ├── SmartAiSpawnFlags.cs │ │ │ ├── SmartCastFlags.cs │ │ │ ├── SmartEventFlags.cs │ │ │ ├── SmartEventPhaseBits.cs │ │ │ ├── SmartEvents.cs │ │ │ ├── SmartPhase.cs │ │ │ ├── SmartRespawnCondition.cs │ │ │ ├── SmartScriptType.cs │ │ │ ├── SmartScriptTypeMaskId.cs │ │ │ └── SmartTargets.cs │ │ ├── SpellClickUserTypes.cs │ │ ├── Spells │ │ │ ├── AuraEffectHandleModes.cs │ │ │ ├── AuraStateType.cs │ │ │ ├── AuraTriggerOnHealthChangeDirection.cs │ │ │ ├── AuraTriggerOnPowerChangeDirection.cs │ │ │ ├── AuraType.cs │ │ │ ├── DiminishingGroup.cs │ │ │ ├── DiminishingLevels.cs │ │ │ ├── DiminishingReturnsType.cs │ │ │ ├── DispelType.cs │ │ │ ├── EffectRadiusIndex.cs │ │ │ ├── EmpowerState.cs │ │ │ ├── EnchantProcAttributes.cs │ │ │ ├── Mechanics.cs │ │ │ ├── MountResult.cs │ │ │ ├── PlayerSpellState.cs │ │ │ ├── ProcAttributes.cs │ │ │ ├── ProcFlags.cs │ │ │ ├── ProcFlags2.cs │ │ │ ├── ProcFlagsHit.cs │ │ │ ├── ProcFlagsSpellPhase.cs │ │ │ ├── ProcFlagsSpellType.cs │ │ │ ├── SelectEffect.cs │ │ │ ├── SelectTargetType.cs │ │ │ ├── SkillCategory.cs │ │ │ ├── SkillConst.cs │ │ │ ├── SkillRangeType.cs │ │ │ ├── SkillState.cs │ │ │ ├── SkillType.cs │ │ │ ├── SpellAreaFlag.cs │ │ │ ├── SpellAttr0.cs │ │ │ ├── SpellAttr1.cs │ │ │ ├── SpellAttr10.cs │ │ │ ├── SpellAttr11.cs │ │ │ ├── SpellAttr12.cs │ │ │ ├── SpellAttr13.cs │ │ │ ├── SpellAttr14.cs │ │ │ ├── SpellAttr2.cs │ │ │ ├── SpellAttr3.cs │ │ │ ├── SpellAttr4.cs │ │ │ ├── SpellAttr5.cs │ │ │ ├── SpellAttr6.cs │ │ │ ├── SpellAttr7.cs │ │ │ ├── SpellAttr8.cs │ │ │ ├── SpellAttr9.cs │ │ │ ├── SpellAuraInterruptFlags.cs │ │ │ ├── SpellAuraInterruptFlags2.cs │ │ │ ├── SpellCastFlags.cs │ │ │ ├── SpellCastFlagsEx.cs │ │ │ ├── SpellCastResult.cs │ │ │ ├── SpellCastSource.cs │ │ │ ├── SpellCastTargetFlags.cs │ │ │ ├── SpellCategories.cs │ │ │ ├── SpellConst.cs │ │ │ ├── SpellCooldownFlags.cs │ │ │ ├── SpellCustomAttributes.cs │ │ │ ├── SpellCustomErrors.cs │ │ │ ├── SpellDmgClass.cs │ │ │ ├── SpellEffectHandle.cs │ │ │ ├── SpellEffectImplicitTargetTypes.cs │ │ │ ├── SpellEffectName.cs │ │ │ ├── SpellFamilyNames.cs │ │ │ ├── SpellGroup.cs │ │ │ ├── SpellGroupStackRule.cs │ │ │ ├── SpellHitType.cs │ │ │ ├── SpellInterruptFlags.cs │ │ │ ├── SpellLinkedType.cs │ │ │ ├── SpellMissInfo.cs │ │ │ ├── SpellModOp.cs │ │ │ ├── SpellModType.cs │ │ │ ├── SpellPreventionType.cs │ │ │ ├── SpellRangeFlag.cs │ │ │ ├── SpellSchoolMask.cs │ │ │ ├── SpellSchools.cs │ │ │ ├── SpellSpecificType.cs │ │ │ ├── SpellState.cs │ │ │ ├── SpellTargetCheckTypes.cs │ │ │ ├── SpellTargetDirectionTypes.cs │ │ │ ├── SpellTargetObjectTypes.cs │ │ │ ├── SpellTargetReferenceTypes.cs │ │ │ ├── SpellTargetSelectionCategories.cs │ │ │ ├── Targets.cs │ │ │ └── TriggerCastFlags.cs │ │ ├── Stats.cs │ │ ├── SupportSystem │ │ │ ├── GMTicketSystemStatus.cs │ │ │ ├── ReportMajorCategory.cs │ │ │ ├── ReportMinorCategory.cs │ │ │ ├── ReportType.cs │ │ │ └── SupportSpamType.cs │ │ ├── TeamFaction.cs │ │ ├── TeamIds.cs │ │ ├── TimerType.cs │ │ ├── TokenResult.cs │ │ ├── TrainerFailReason.cs │ │ ├── TrainerSpellState.cs │ │ ├── TrainerType.cs │ │ ├── Unit │ │ │ ├── AnimTier.cs │ │ │ ├── BaseModGroup.cs │ │ │ ├── BaseModType.cs │ │ │ ├── CombatRating.cs │ │ │ ├── CurrentSpellTypes.cs │ │ │ ├── DamageEffectType.cs │ │ │ ├── DeathState.cs │ │ │ ├── HitInfo.cs │ │ │ ├── MeleeHitOutcome.cs │ │ │ ├── ReactStates.cs │ │ │ ├── ReactiveType.cs │ │ │ ├── ShapeShiftForm.cs │ │ │ ├── SheathState.cs │ │ │ ├── SpellClickCastFlags.cs │ │ │ ├── SpellImmunity.cs │ │ │ ├── SpellValueMod.cs │ │ │ ├── SummonSlot.cs │ │ │ ├── UnitDynFlags.cs │ │ │ ├── UnitModifierFlatType.cs │ │ │ ├── UnitModifierPctType.cs │ │ │ ├── UnitMods.cs │ │ │ ├── UnitMoveType.cs │ │ │ ├── UnitPVPStateFlags.cs │ │ │ ├── UnitPetFlags.cs │ │ │ ├── UnitStandStateType.cs │ │ │ ├── UnitState.cs │ │ │ ├── UnitTypeMask.cs │ │ │ ├── UnitVisFlags.cs │ │ │ ├── VehicleSeatFlags.cs │ │ │ ├── VehicleSeatFlagsB.cs │ │ │ ├── VictimState.cs │ │ │ ├── WeaponAttackType.cs │ │ │ └── WeaponDamageRange.cs │ │ ├── Update │ │ │ ├── UpdateFieldFlag.cs │ │ │ └── UpdateType.cs │ │ ├── Vehicle │ │ │ ├── VehicleExitParameters.cs │ │ │ ├── VehicleFlags.cs │ │ │ └── VehiclePowerType.cs │ │ ├── VisibilityDistanceType.cs │ │ ├── VoidTransferError.cs │ │ ├── WorldCfg.cs │ │ ├── WorldMapTransformsFlags.cs │ │ ├── WorldStates.cs │ │ ├── XPColorChar.cs │ │ └── eScriptFlags.cs │ ├── Cryptography │ │ ├── Ed25519 │ │ │ ├── CryptoBytes.cs │ │ │ ├── Ed25519.cs │ │ │ ├── Internal │ │ │ │ ├── Array16.cs │ │ │ │ ├── Array8.cs │ │ │ │ ├── ByteIntegerConverter.cs │ │ │ │ ├── Ed25519Ref10 │ │ │ │ │ ├── FieldElement.cs │ │ │ │ │ ├── GroupElement.cs │ │ │ │ │ ├── base.cs │ │ │ │ │ ├── base2.cs │ │ │ │ │ ├── d.cs │ │ │ │ │ ├── d2.cs │ │ │ │ │ ├── fe_0.cs │ │ │ │ │ ├── fe_1.cs │ │ │ │ │ ├── fe_add.cs │ │ │ │ │ ├── fe_cmov.cs │ │ │ │ │ ├── fe_cswap.cs │ │ │ │ │ ├── fe_frombytes.cs │ │ │ │ │ ├── fe_invert.cs │ │ │ │ │ ├── fe_isnegative.cs │ │ │ │ │ ├── fe_isnonzero.cs │ │ │ │ │ ├── fe_mul.cs │ │ │ │ │ ├── fe_mul121666.cs │ │ │ │ │ ├── fe_neg.cs │ │ │ │ │ ├── fe_pow22523.cs │ │ │ │ │ ├── fe_sq.cs │ │ │ │ │ ├── fe_sq2.cs │ │ │ │ │ ├── fe_sub.cs │ │ │ │ │ ├── fe_tobytes.cs │ │ │ │ │ ├── ge_add.cs │ │ │ │ │ ├── ge_double_scalarmult.cs │ │ │ │ │ ├── ge_frombytes.cs │ │ │ │ │ ├── ge_madd.cs │ │ │ │ │ ├── ge_msub.cs │ │ │ │ │ ├── ge_p1p1_to_p2.cs │ │ │ │ │ ├── ge_p1p1_to_p3.cs │ │ │ │ │ ├── ge_p2_0.cs │ │ │ │ │ ├── ge_p2_dbl.cs │ │ │ │ │ ├── ge_p3_0.cs │ │ │ │ │ ├── ge_p3_dbl.cs │ │ │ │ │ ├── ge_p3_to_cached.cs │ │ │ │ │ ├── ge_p3_to_p2.cs │ │ │ │ │ ├── ge_p3_tobytes.cs │ │ │ │ │ ├── ge_precomp_0.cs │ │ │ │ │ ├── ge_scalarmult_base.cs │ │ │ │ │ ├── ge_sub.cs │ │ │ │ │ ├── ge_tobytes.cs │ │ │ │ │ ├── keypair.cs │ │ │ │ │ ├── open.cs │ │ │ │ │ ├── sc_clamp.cs │ │ │ │ │ ├── sc_mul_add.cs │ │ │ │ │ ├── sc_reduce.cs │ │ │ │ │ ├── scalarmult.cs │ │ │ │ │ ├── sign.cs │ │ │ │ │ └── sqrtm1.cs │ │ │ │ └── Sha512Internal.cs │ │ │ └── Sha512.cs │ │ ├── PacketCrypt.cs │ │ ├── RsaCrypt.cs │ │ ├── SARC4.cs │ │ ├── SRP6.cs │ │ ├── SessionKeyGeneration.cs │ │ └── ShaHmac.cs │ ├── Database │ │ ├── AppliedFileEntry.cs │ │ ├── AsyncCallbackProcessor.cs │ │ ├── DB.cs │ │ ├── DBExecutableUtil.cs │ │ ├── DBVersion.cs │ │ ├── DatabaseLoader.cs │ │ ├── DatabaseTypeFlags.cs │ │ ├── DatabaseUpdater.cs │ │ ├── DatabaseWorker.cs │ │ ├── Databases │ │ │ ├── CharStatements.cs │ │ │ ├── CharacterDatabase.cs │ │ │ ├── HotfixDatabase.cs │ │ │ ├── HotfixStatements.cs │ │ │ ├── LoginDatabase.cs │ │ │ ├── LoginStatements.cs │ │ │ ├── WorldDatabase.cs │ │ │ └── WorldStatements.cs │ │ ├── FileEntry.cs │ │ ├── ISqlCallback.cs │ │ ├── ISqlOperation.cs │ │ ├── MySqlBase.cs │ │ ├── MySqlConnectionInfo.cs │ │ ├── PreparedStatement.cs │ │ ├── PreparedStatementTask.cs │ │ ├── QueryCallback.cs │ │ ├── SQLEx.cs │ │ ├── SQLFields.cs │ │ ├── SQLQueryHolder.cs │ │ ├── SQLQueryHolderCallback.cs │ │ ├── SQLQueryHolderTask.cs │ │ ├── SQLResult.cs │ │ ├── SQLTransaction.cs │ │ ├── State.cs │ │ ├── TransactionCallback.cs │ │ ├── TransactionTask.cs │ │ ├── TransactionWithResultTask.cs │ │ ├── UpdateMode.cs │ │ └── UpdateResult.cs │ ├── Dynamic │ │ ├── AbortState.cs │ │ ├── BasicEvent.cs │ │ ├── EventMap.cs │ │ ├── EventSystem.cs │ │ ├── FlagArray128.cs │ │ ├── FlaggedArray32.cs │ │ ├── FlaggedArray64.cs │ │ ├── FlagsArray.cs │ │ ├── LambdaBasicEvent.cs │ │ ├── RefManager.cs │ │ ├── Reference.cs │ │ ├── RepeatEvent.cs │ │ ├── TaskContext.cs │ │ ├── TaskQueue.cs │ │ ├── TaskScheduler.cs │ │ └── TaskSchedulerTask.cs │ ├── Framework - Backup.csproj │ ├── Framework.csproj │ ├── GameMath │ │ ├── AxisAlignedBox.cs │ │ ├── Box.cs │ │ ├── CollisionDetection.cs │ │ ├── Ray.cs │ │ └── RayConverter.cs │ ├── IO │ │ ├── ByteBuffer.cs │ │ ├── SocketBuffer.cs │ │ ├── StringArguments.cs │ │ └── Zlib │ │ │ ├── Adler32.cs │ │ │ ├── Crc32.cs │ │ │ ├── Deflate.cs │ │ │ ├── Trees.cs │ │ │ ├── ZLib.cs │ │ │ ├── ZUtil.cs │ │ │ └── compress.cs │ ├── Logging │ │ ├── Appender.cs │ │ ├── AppenderFlags.cs │ │ ├── AppenderType.cs │ │ ├── ConsoleAppender.cs │ │ ├── DBAppender.cs │ │ ├── FileAppender.cs │ │ ├── Log.cs │ │ ├── LogFilter.cs │ │ ├── LogLevel.cs │ │ ├── LogMessage.cs │ │ └── Logger.cs │ ├── Metrics │ │ ├── MeteredMetric.cs │ │ └── MetricFactory.cs │ ├── Models │ │ └── BoxedValue.cs │ ├── Networking │ │ ├── AsyncAcceptor.cs │ │ ├── ISocket.cs │ │ ├── NetworkThread.cs │ │ ├── SSLSocket.cs │ │ ├── SocketAcceptDelegate.cs │ │ ├── SocketBase.cs │ │ └── SocketManager.cs │ ├── Proto │ │ ├── AccountService.cs │ │ ├── AccountTypes.cs │ │ ├── Api │ │ │ ├── V1 │ │ │ │ └── ChannelId.cs │ │ │ └── V2 │ │ │ │ ├── AttributeTypes.cs │ │ │ │ ├── ReportService.cs │ │ │ │ └── ReportTypes.cs │ │ ├── AttributeTypes.cs │ │ ├── AuroraError.cs │ │ ├── AuthenticationService.cs │ │ ├── CASInitError.cs │ │ ├── ChallengeService.cs │ │ ├── ChannelTypes.cs │ │ ├── ClientCancelConnect.cs │ │ ├── ClientDisconnect.cs │ │ ├── ClientLoadingTime.cs │ │ ├── ClientNameLookup.cs │ │ ├── ClientPerformance.cs │ │ ├── ClientPerformanceShared.cs │ │ ├── ClientRestrictedAction.cs │ │ ├── ClientReturningPlayerPrompt.cs │ │ ├── ClientShared.cs │ │ ├── ClientSharedImports.cs │ │ ├── ClientTradingPost.cs │ │ ├── ClientVoiceChannelJoin.cs │ │ ├── ClientVoiceChannelLeave.cs │ │ ├── ClientVoiceLoginState.cs │ │ ├── ClientVoiceProviderError.cs │ │ ├── ClubBan.cs │ │ ├── ClubCore.cs │ │ ├── ClubEnum.cs │ │ ├── ClubInvitation.cs │ │ ├── ClubMember.cs │ │ ├── ClubMemberId.cs │ │ ├── ClubMembershipListener.cs │ │ ├── ClubMembershipService.cs │ │ ├── ClubMembershipTypes.cs │ │ ├── ClubNotification.cs │ │ ├── ClubRangeSet.cs │ │ ├── ClubRequest.cs │ │ ├── ClubRole.cs │ │ ├── ClubStream.cs │ │ ├── ClubTypes.cs │ │ ├── ConnectionService.cs │ │ ├── ContentHandleTypes.cs │ │ ├── CriticalStreamingError.cs │ │ ├── EmbedTypes.cs │ │ ├── EntityTypes.cs │ │ ├── EtsTypes.cs │ │ ├── EventViewTypes.cs │ │ ├── FriendsService.cs │ │ ├── FriendsTypes.cs │ │ ├── GameUtilitiesService.cs │ │ ├── GameUtilitiesTypes.cs │ │ ├── GlobalExtensions │ │ │ ├── FieldOptions.cs │ │ │ ├── MessageOptions.cs │ │ │ ├── MethodOptions.cs │ │ │ ├── Range.cs │ │ │ ├── Routing.cs │ │ │ └── ServiceOptions.cs │ │ ├── Google │ │ │ └── Protobuf │ │ │ │ └── Descriptor.cs │ │ ├── InvitationTypes.cs │ │ ├── MessageTypes.cs │ │ ├── NotificationTypes.cs │ │ ├── PresenceListener.cs │ │ ├── PresenceService.cs │ │ ├── PresenceTypes.cs │ │ ├── ProfanityFilterConfig.cs │ │ ├── ReportService.cs │ │ ├── ReportTypes.cs │ │ ├── ResourceService.cs │ │ ├── RoleTypes.cs │ │ ├── RpcConfig.cs │ │ ├── RpcTypes.cs │ │ ├── TelemetryExtensions.cs │ │ ├── TelemetrySharedClientImports.cs │ │ ├── TelemetrySharedImports.cs │ │ ├── UserManagerService.cs │ │ ├── UserManagerTypes.cs │ │ ├── VoiceChannelJoin.cs │ │ ├── VoiceChannelLeave.cs │ │ ├── VoiceProviderError.cs │ │ ├── VoiceTypes.cs │ │ ├── WorldLoadFailed.cs │ │ └── WorldSceneLoadFailed.cs │ ├── Realm │ │ ├── Realm.cs │ │ ├── RealmBuildInfo.cs │ │ ├── RealmId.cs │ │ └── RealmManager.cs │ ├── RecastDetour │ │ └── Detour │ │ │ ├── DetourCommon.cs │ │ │ ├── DetourNavMesh.cs │ │ │ ├── DetourNavMeshBuilder.cs │ │ │ ├── DetourNavMeshQuery.cs │ │ │ ├── DetourNode.cs │ │ │ └── DetourStatus.cs │ ├── Serialization │ │ └── Json.cs │ ├── Singleton │ │ └── Singleton.cs │ ├── Threading │ │ ├── LimitedThreadTaskManager.cs │ │ └── ThreadingUtil.cs │ ├── Util │ │ ├── CollectionExtensions.cs │ │ ├── Extensions.cs │ │ ├── ICheck.cs │ │ ├── IDoWork.cs │ │ ├── MathFunctions.cs │ │ ├── NetworkExtensions.cs │ │ ├── RandomHelper.cs │ │ ├── Time.cs │ │ └── VariableStore.cs │ └── Web │ │ ├── API │ │ └── ApiRequest.cs │ │ ├── Http.cs │ │ └── Rest │ │ ├── Authentication │ │ ├── LogonData.cs │ │ └── LogonResult.cs │ │ ├── Forms │ │ ├── FormInput.cs │ │ ├── FormInputValue.cs │ │ └── FormInputs.cs │ │ ├── Misc │ │ ├── Address.cs │ │ ├── AddressFamily.cs │ │ ├── ClientVersion.cs │ │ └── RealmCharacterCountEntry.cs │ │ └── Realmlist │ │ ├── RealmCharacterCountList.cs │ │ ├── RealmEntry.cs │ │ ├── RealmListServerIPAddresses.cs │ │ ├── RealmListTicketClientInformation.cs │ │ ├── RealmListTicketIdentity.cs │ │ ├── RealmListTicketInformation.cs │ │ ├── RealmListUpdate.cs │ │ └── RealmListUpdates.cs ├── Game │ ├── AI │ │ ├── AISelector.cs │ │ ├── CoreAI │ │ │ ├── AICondition.cs │ │ │ ├── AISpellInfoType.cs │ │ │ ├── AITarget.cs │ │ │ ├── AggressorAI.cs │ │ │ ├── ArcherAI.cs │ │ │ ├── AreaTriggerAI.cs │ │ │ ├── CasterAI.cs │ │ │ ├── CombatAI.cs │ │ │ ├── CreatureAI.cs │ │ │ ├── CritterAI.cs │ │ │ ├── DefaultTargetSelector.cs │ │ │ ├── FarthestTargetSelector.cs │ │ │ ├── GameObjectAI.cs │ │ │ ├── GuardAI.cs │ │ │ ├── IUnitAI.cs │ │ │ ├── NonTankTargetSelector.cs │ │ │ ├── NullAreaTriggerAI.cs │ │ │ ├── NullCreatureAI.cs │ │ │ ├── PassiveAI.cs │ │ │ ├── PetAI.cs │ │ │ ├── PossessedAI.cs │ │ │ ├── PowerUsersSelector.cs │ │ │ ├── ReactorAI.cs │ │ │ ├── ScheduledChangeAI.cs │ │ │ ├── SpellTargetSelector.cs │ │ │ ├── TotemAI.cs │ │ │ ├── TriggerAI.cs │ │ │ ├── TurretAI.cs │ │ │ ├── UnitAI.cs │ │ │ └── VehicleAI.cs │ │ ├── PlayerAI │ │ │ ├── PlayerAI.cs │ │ │ ├── SimpleCharmedPlayerAI.cs │ │ │ ├── Spells.cs │ │ │ └── ValidTargetSelectPredicate.cs │ │ ├── ScriptedAI │ │ │ ├── BossAI.cs │ │ │ ├── EntryCheckPredicate.cs │ │ │ ├── EscortAI.cs │ │ │ ├── EscortPointIds.cs │ │ │ ├── EscortState.cs │ │ │ ├── FollowState.cs │ │ │ ├── FollowerAI.cs │ │ │ ├── ScriptedAI.cs │ │ │ ├── SummonList.cs │ │ │ └── WorldBossAI.cs │ │ └── SmartScripts │ │ │ ├── ObjectGuidList.cs │ │ │ ├── SmartAI.cs │ │ │ ├── SmartAIManager.cs │ │ │ ├── SmartAction.cs │ │ │ ├── SmartAreaTriggerAI.cs │ │ │ ├── SmartEscortState.cs │ │ │ ├── SmartEvent.cs │ │ │ ├── SmartGameObjectAI.cs │ │ │ ├── SmartScript.cs │ │ │ ├── SmartScriptHolder.cs │ │ │ └── SmartTarget.cs │ ├── Accounts │ │ ├── AccountManager.cs │ │ ├── AccountOpResult.cs │ │ ├── BNetAccountManager.cs │ │ ├── RBACCommandResult.cs │ │ ├── RBACData.cs │ │ └── RBACPermission.cs │ ├── Achievements │ │ ├── AchievementGlobalMgr.cs │ │ ├── AchievementManager.cs │ │ ├── AchievementReward.cs │ │ ├── AchievementRewardLocale.cs │ │ ├── CompletedAchievementData.cs │ │ ├── Criteria.cs │ │ ├── CriteriaData.cs │ │ ├── CriteriaDataSet.cs │ │ ├── CriteriaHandler.cs │ │ ├── CriteriaManager.cs │ │ ├── CriteriaProgress.cs │ │ ├── CriteriaTree.cs │ │ ├── GuildAchievementMgr.cs │ │ ├── ModifierTreeNode.cs │ │ └── PlayerAchievementMgr.cs │ ├── Arenas │ │ ├── Arena.cs │ │ ├── ArenaScore.cs │ │ ├── ArenaTeam.cs │ │ ├── ArenaTeamManager.cs │ │ └── Zones │ │ │ ├── BladesEdgeArena.cs │ │ │ ├── DalaranSewers.cs │ │ │ ├── NagrandArena.cs │ │ │ ├── RingofValor.cs │ │ │ ├── RuinsofLordaeron.cs │ │ │ ├── TigersPeak.cs │ │ │ └── TolvironArena.cs │ ├── AuctionHouse │ │ ├── AuctionHouseObject.cs │ │ ├── AuctionManager.cs │ │ ├── AuctionPosting.cs │ │ ├── AuctionSearchClassFilters.cs │ │ ├── AuctionThrottleResult.cs │ │ ├── AuctionsBucketData.cs │ │ ├── AuctionsBucketKey.cs │ │ ├── AuctionsResultBuilder.cs │ │ └── CommodityQuote.cs │ ├── BattleFields │ │ ├── BattleField.cs │ │ └── BattleFieldManager.cs │ ├── BattleGrounds │ │ ├── BattleGround.cs │ │ ├── BattleGroundManager.cs │ │ ├── BattleGroundQueue.cs │ │ ├── BattleGroundScore.cs │ │ └── Zones │ │ │ ├── AlteracValley.cs │ │ │ ├── ArathiBasin.cs │ │ │ ├── BattleforGilneas.cs │ │ │ ├── DeepwindGorge.cs │ │ │ ├── EyeofStorm.cs │ │ │ ├── IsleofConquest.cs │ │ │ ├── SilvershardMines.cs │ │ │ ├── StrandofAncients.cs │ │ │ ├── TempleofKotmogu.cs │ │ │ ├── TwinPeaks.cs │ │ │ └── WarsongGluch.cs │ ├── BattlePets │ │ ├── BattlePet.cs │ │ └── BattlePetMgr.cs │ ├── Battlepay │ │ ├── BattlePayDistribution.cs │ │ ├── BattlepayManager.cs │ │ ├── BpayDistributionStatus.cs │ │ ├── BpayError.cs │ │ ├── BpayStatusString.cs │ │ ├── BpayUpdateStatus.cs │ │ ├── ProductListResult.cs │ │ ├── ProductType.cs │ │ ├── Purchase.cs │ │ └── VasPurchaseProgress.cs │ ├── BlackMarket │ │ ├── BlackMarketEntry.cs │ │ ├── BlackMarketManager.cs │ │ └── BlackMarketTemplate.cs │ ├── Cache │ │ ├── CharacterCache.cs │ │ └── CharacterCacheEntry.cs │ ├── Calendar │ │ ├── CalendarEvent.cs │ │ ├── CalendarInvite.cs │ │ └── CalendarManager.cs │ ├── Chat │ │ ├── AccountIdentifier.cs │ │ ├── AddonChannelCommandHandler.cs │ │ ├── Channels │ │ │ ├── AnnouncementsOffAppend.cs │ │ │ ├── AnnouncementsOnAppend.cs │ │ │ ├── BannedAppend.cs │ │ │ ├── Channel.cs │ │ │ ├── ChannelManager.cs │ │ │ ├── ChannelNameBuilder.cs │ │ │ ├── ChannelNotifyJoinedBuilder.cs │ │ │ ├── ChannelNotifyLeftBuilder.cs │ │ │ ├── ChannelOwnerAppend.cs │ │ │ ├── ChannelSayBuilder.cs │ │ │ ├── ChannelUserlistAddBuilder.cs │ │ │ ├── ChannelUserlistRemoveBuilder.cs │ │ │ ├── ChannelUserlistUpdateBuilder.cs │ │ │ ├── ChannelWhisperBuilder.cs │ │ │ ├── IChannelAppender.cs │ │ │ ├── InvalidNameAppend.cs │ │ │ ├── InviteAppend.cs │ │ │ ├── InviteWrongFactionAppend.cs │ │ │ ├── JoinedAppend.cs │ │ │ ├── LeftAppend.cs │ │ │ ├── ModeChangeAppend.cs │ │ │ ├── MutedAppend.cs │ │ │ ├── NotInAreaAppend.cs │ │ │ ├── NotInLFGAppend.cs │ │ │ ├── NotMemberAppend.cs │ │ │ ├── NotModeratedAppend.cs │ │ │ ├── NotModeratorAppend.cs │ │ │ ├── NotOwnerAppend.cs │ │ │ ├── OwnerChangedAppend.cs │ │ │ ├── PasswordChangedAppend.cs │ │ │ ├── PlayerAlreadyMemberAppend.cs │ │ │ ├── PlayerBannedAppend.cs │ │ │ ├── PlayerInviteBannedAppend.cs │ │ │ ├── PlayerInvitedAppend.cs │ │ │ ├── PlayerKickedAppend.cs │ │ │ ├── PlayerNotBannedAppend.cs │ │ │ ├── PlayerNotFoundAppend.cs │ │ │ ├── PlayerUnbannedAppend.cs │ │ │ ├── ThrottledAppend.cs │ │ │ ├── VoiceOffAppend.cs │ │ │ ├── VoiceOnAppend.cs │ │ │ ├── WrongFactionAppend.cs │ │ │ ├── WrongPasswordAppend.cs │ │ │ ├── YouJoinedAppend.cs │ │ │ └── YouLeftAppend.cs │ │ ├── ChatCommandNode.cs │ │ ├── ChatCommandResult.cs │ │ ├── CommandArgs.cs │ │ ├── CommandAttribute.cs │ │ ├── CommandGroupAttribute.cs │ │ ├── CommandHandler.cs │ │ ├── CommandManager.cs │ │ ├── CommandNonGroupAttribute.cs │ │ ├── CommandPermissions.cs │ │ ├── Commands │ │ │ ├── AccountCommands.cs │ │ │ ├── AchievementCommand.cs │ │ │ ├── AhBotCommands.cs │ │ │ ├── ArenaCommands.cs │ │ │ ├── BNetAccountCommands.cs │ │ │ ├── BanCommands.cs │ │ │ ├── BanInfoCommands.cs │ │ │ ├── BanListCommands.cs │ │ │ ├── BattleFieldCommands.cs │ │ │ ├── CastCommands.cs │ │ │ ├── ChannelCommands.cs │ │ │ ├── CharacterCommands.cs │ │ │ ├── CheatCommands.cs │ │ │ ├── DebugCommands.cs │ │ │ ├── DeserterCommands.cs │ │ │ ├── DisableCommands.cs │ │ │ ├── EventCommands.cs │ │ │ ├── GMCommands.cs │ │ │ ├── GameObjectCommands.cs │ │ │ ├── GoCommands.cs │ │ │ ├── GroupCommands.cs │ │ │ ├── GuildCommands.cs │ │ │ ├── HonorCommands.cs │ │ │ ├── InstanceCommands.cs │ │ │ ├── LFGCommands.cs │ │ │ ├── LearnCommands.cs │ │ │ ├── ListCommands.cs │ │ │ ├── LookupCommands.cs │ │ │ ├── MMapsCommands.cs │ │ │ ├── MessageCommands.cs │ │ │ ├── MiscAddItemCommands.cs │ │ │ ├── MiscCommands.cs │ │ │ ├── ModifyCommand.cs │ │ │ ├── NPCCommands.cs │ │ │ ├── PdumpCommand.cs │ │ │ ├── PetCommands.cs │ │ │ ├── QuestCommands.cs │ │ │ ├── RbacComands.cs │ │ │ ├── ReloadCommand.cs │ │ │ ├── ResetCommands.cs │ │ │ ├── SceneCommands.cs │ │ │ ├── SendCommands.cs │ │ │ ├── ServerCommands.cs │ │ │ ├── SpellCommands.cs │ │ │ ├── Spells.cs │ │ │ ├── TeleCommands.cs │ │ │ ├── TicketCommands.cs │ │ │ ├── TitleCommands.cs │ │ │ ├── UnBanCommands.cs │ │ │ └── WPCommands.cs │ │ ├── ConsoleHandler.cs │ │ ├── HandleCommandDelegate.cs │ │ ├── Hyperlink.cs │ │ ├── HyperlinkColor.cs │ │ ├── HyperlinkDataTokenizer.cs │ │ ├── HyperlinkInfo.cs │ │ ├── LanguageManager.cs │ │ ├── OptionalArgAttribute.cs │ │ ├── PlayerIdentifier.cs │ │ ├── QuotedString.cs │ │ ├── RemoteAccessHandler.cs │ │ ├── Tail.cs │ │ └── VariantArgAttribute.cs │ ├── Collision │ │ ├── AABound.cs │ │ ├── AreaInfoCallback.cs │ │ ├── BIH.cs │ │ ├── BIHWrap.cs │ │ ├── DynTreeImpl.cs │ │ ├── DynamicMapTree.cs │ │ ├── DynamicTreeAreaInfoCallback.cs │ │ ├── DynamicTreeIntersectionCallback.cs │ │ ├── DynamicTreeLocationInfoCallback.cs │ │ ├── GModelRayCallback.cs │ │ ├── LocationInfoCallback.cs │ │ ├── Management │ │ │ ├── AreaAndLiquidData.cs │ │ │ ├── LoadResult.cs │ │ │ ├── ManagedModel.cs │ │ │ ├── VMAPLoadResult.cs │ │ │ └── VMapManager.cs │ │ ├── MapRayCallback.cs │ │ ├── Maps │ │ │ ├── AreaInfo.cs │ │ │ ├── GroupLocationInfo.cs │ │ │ ├── LocationInfo.cs │ │ │ ├── StaticMapTree.cs │ │ │ └── TileFileOpenResult.cs │ │ ├── Models │ │ │ ├── GameObjectModel.cs │ │ │ ├── GameObjectModelOwnerBase.cs │ │ │ ├── GameobjectModelData.cs │ │ │ ├── GroupModel.cs │ │ │ ├── IModel.cs │ │ │ ├── MeshTriangle.cs │ │ │ ├── ModelFlags.cs │ │ │ ├── ModelInstance.cs │ │ │ ├── ModelMinimalData.cs │ │ │ ├── ModelSpawn.cs │ │ │ ├── StaticModelList.cs │ │ │ ├── WmoLiquid.cs │ │ │ └── WorldModel.cs │ │ ├── RegularGrid2D.cs │ │ ├── TriBoundFunc.cs │ │ ├── WModelAreaCallback.cs │ │ ├── WModelRayCallBack.cs │ │ └── WorkerCallback.cs │ ├── Combat │ │ ├── CombatManager.cs │ │ ├── CombatReference.cs │ │ ├── OnlineState.cs │ │ ├── PvPCombatReference.cs │ │ ├── TauntState.cs │ │ ├── ThreatManager.cs │ │ └── ThreatReference.cs │ ├── Conditions │ │ ├── Condition.cs │ │ ├── ConditionManager.cs │ │ └── DisableManager.cs │ ├── DataStorage │ │ ├── AreaTriggerDataStorage.cs │ │ ├── CharacterTemplate.cs │ │ ├── CharacterTemplateClass.cs │ │ ├── CharacterTemplateDataStorage.cs │ │ ├── ChrClassesXPowerTypesRecordComparer.cs │ │ ├── CliDB.cs │ │ ├── ClientReader │ │ │ ├── BitReader.cs │ │ │ ├── ColumnCompressionData_Common.cs │ │ │ ├── ColumnCompressionData_Immediate.cs │ │ │ ├── ColumnCompressionData_Pallet.cs │ │ │ ├── ColumnMetaData.cs │ │ │ ├── DB6Storage.cs │ │ │ ├── DBReader.cs │ │ │ ├── FieldMetaData.cs │ │ │ ├── GameTable.cs │ │ │ ├── GameTableReader.cs │ │ │ ├── IDB2Storage.cs │ │ │ ├── LocalizedString.cs │ │ │ ├── ReferenceData.cs │ │ │ ├── ReferenceEntry.cs │ │ │ ├── SectionHeader.cs │ │ │ ├── SparseEntry.cs │ │ │ ├── Value32.cs │ │ │ ├── WDC3Row.cs │ │ │ └── WDCHeader.cs │ │ ├── ContentTuningLevels.cs │ │ ├── ConversationActorActivePlayerTemplate.cs │ │ ├── ConversationActorNoObjectTemplate.cs │ │ ├── ConversationActorTalkingHeadTemplate.cs │ │ ├── ConversationActorTemplate.cs │ │ ├── ConversationActorWorldObjectTemplate.cs │ │ ├── ConversationDataStorage.cs │ │ ├── ConversationLineTemplate.cs │ │ ├── ConversationTemplate.cs │ │ ├── CurveInterpolationMode.cs │ │ ├── DB2Manager.cs │ │ ├── FlyByCamera.cs │ │ ├── FriendshipRepReactionRecordComparer.cs │ │ ├── HotfixId.cs │ │ ├── HotfixOptionalData.cs │ │ ├── HotfixRecord.cs │ │ ├── M2Storage.cs │ │ ├── MountTypeXCapabilityRecordComparer.cs │ │ ├── ShapeshiftFormModelData.cs │ │ ├── Structs │ │ │ ├── A │ │ │ │ ├── AchievementCategoryRecord.cs │ │ │ │ ├── AchievementRecord.cs │ │ │ │ ├── AdventureJournalRecord.cs │ │ │ │ ├── AdventureMapPOIRecord.cs │ │ │ │ ├── AnimKitRecord.cs │ │ │ │ ├── AnimationDataRecord.cs │ │ │ │ ├── AreaGroupMemberRecord.cs │ │ │ │ ├── AreaPOIRecord.cs │ │ │ │ ├── AreaPOIStateRecord.cs │ │ │ │ ├── AreaTableRecord.cs │ │ │ │ ├── AreaTriggerRecord.cs │ │ │ │ ├── ArmorLocationRecord.cs │ │ │ │ ├── ArtifactAppearanceRecord.cs │ │ │ │ ├── ArtifactAppearanceSetRecord.cs │ │ │ │ ├── ArtifactCategoryRecord.cs │ │ │ │ ├── ArtifactPowerLinkRecord.cs │ │ │ │ ├── ArtifactPowerPickerRecord.cs │ │ │ │ ├── ArtifactPowerRankRecord.cs │ │ │ │ ├── ArtifactPowerRecord.cs │ │ │ │ ├── ArtifactQuestXPRecord.cs │ │ │ │ ├── ArtifactRecord.cs │ │ │ │ ├── ArtifactTierRecord.cs │ │ │ │ ├── ArtifactUnlockRecord.cs │ │ │ │ ├── AuctionHouseRecord.cs │ │ │ │ ├── AzeriteEmpoweredItemRecord.cs │ │ │ │ ├── AzeriteEssencePowerRecord.cs │ │ │ │ ├── AzeriteEssenceRecord.cs │ │ │ │ ├── AzeriteItemMilestonePowerRecord.cs │ │ │ │ ├── AzeriteItemRecord.cs │ │ │ │ ├── AzeriteKnowledgeMultiplierRecord.cs │ │ │ │ ├── AzeriteLevelInfoRecord.cs │ │ │ │ ├── AzeritePowerRecord.cs │ │ │ │ ├── AzeritePowerSetMemberRecord.cs │ │ │ │ ├── AzeriteTierUnlockRecord.cs │ │ │ │ ├── AzeriteTierUnlockSetRecord.cs │ │ │ │ └── AzeriteUnlockMappingRecord.cs │ │ │ ├── B │ │ │ │ ├── BankBagSlotPricesRecord.cs │ │ │ │ ├── BannedAddonsRecord.cs │ │ │ │ ├── BarberShopStyleRecord.cs │ │ │ │ ├── BattlePetBreedQualityRecord.cs │ │ │ │ ├── BattlePetBreedStateRecord.cs │ │ │ │ ├── BattlePetSpeciesRecord.cs │ │ │ │ ├── BattlePetSpeciesStateRecord.cs │ │ │ │ ├── BattlemasterListRecord.cs │ │ │ │ ├── BroadcastTextDurationRecord.cs │ │ │ │ └── BroadcastTextRecord.cs │ │ │ ├── C │ │ │ │ ├── Cfg_RegionsRecord.cs │ │ │ │ ├── CharBaseInfo.cs │ │ │ │ ├── CharTitlesRecord.cs │ │ │ │ ├── CharacterLoadoutItemRecord.cs │ │ │ │ ├── CharacterLoadoutRecord.cs │ │ │ │ ├── ChatChannelsRecord.cs │ │ │ │ ├── ChrClassUIDisplayRecord.cs │ │ │ │ ├── ChrClassesRecord.cs │ │ │ │ ├── ChrClassesXPowerTypesRecord.cs │ │ │ │ ├── ChrCustomizationChoiceRecord.cs │ │ │ │ ├── ChrCustomizationDisplayInfoRecord.cs │ │ │ │ ├── ChrCustomizationElementRecord.cs │ │ │ │ ├── ChrCustomizationOptionRecord.cs │ │ │ │ ├── ChrCustomizationReqChoiceRecord.cs │ │ │ │ ├── ChrCustomizationReqRecord.cs │ │ │ │ ├── ChrModelRecord.cs │ │ │ │ ├── ChrRaceXChrModelRecord.cs │ │ │ │ ├── ChrRacesRecord.cs │ │ │ │ ├── ChrSpecializationRecord.cs │ │ │ │ ├── CinematicCameraRecord.cs │ │ │ │ ├── CinematicSequencesRecord.cs │ │ │ │ ├── ContentTuningRecord.cs │ │ │ │ ├── ContentTuningXExpectedRecord.cs │ │ │ │ ├── ConversationLineRecord.cs │ │ │ │ ├── CorruptionEffectsRecord.cs │ │ │ │ ├── CreatureDisplayInfoExtraRecord.cs │ │ │ │ ├── CreatureDisplayInfoRecord.cs │ │ │ │ ├── CreatureFamilyRecord.cs │ │ │ │ ├── CreatureModelDataRecord.cs │ │ │ │ ├── CreatureTypeRecord.cs │ │ │ │ ├── CriteriaRecord.cs │ │ │ │ ├── CriteriaTreeRecord.cs │ │ │ │ ├── CurrencyContainerRecord.cs │ │ │ │ ├── CurrencyTypesRecord.cs │ │ │ │ ├── CurvePointRecord.cs │ │ │ │ └── CurveRecord.cs │ │ │ ├── D │ │ │ │ ├── DestructibleModelDataRecord.cs │ │ │ │ ├── DifficultyRecord.cs │ │ │ │ ├── DungeonEncounterRecord.cs │ │ │ │ ├── DurabilityCostsRecord.cs │ │ │ │ └── DurabilityQualityRecord.cs │ │ │ ├── E │ │ │ │ ├── EmotesRecord.cs │ │ │ │ ├── EmotesTextRecord.cs │ │ │ │ ├── EmotesTextSoundRecord.cs │ │ │ │ ├── ExpectedStatModRecord.cs │ │ │ │ └── ExpectedStatRecord.cs │ │ │ ├── F │ │ │ │ ├── FactionRecord.cs │ │ │ │ ├── FactionTemplateRecord.cs │ │ │ │ ├── FriendshipRepReactionRecord.cs │ │ │ │ └── FriendshipReputationRecord.cs │ │ │ ├── G │ │ │ │ ├── GameObjectArtKitRecord.cs │ │ │ │ ├── GameObjectDisplayInfoRecord.cs │ │ │ │ ├── GameObjectsRecord.cs │ │ │ │ ├── GarrAbilityRecord.cs │ │ │ │ ├── GarrBuildingPlotInstRecord.cs │ │ │ │ ├── GarrBuildingRecord.cs │ │ │ │ ├── GarrClassSpecRecord.cs │ │ │ │ ├── GarrFollowerRecord.cs │ │ │ │ ├── GarrFollowerXAbilityRecord.cs │ │ │ │ ├── GarrMissionRecord.cs │ │ │ │ ├── GarrPlotBuildingRecord.cs │ │ │ │ ├── GarrPlotInstanceRecord.cs │ │ │ │ ├── GarrPlotRecord.cs │ │ │ │ ├── GarrSiteLevelPlotInstRecord.cs │ │ │ │ ├── GarrSiteLevelRecord.cs │ │ │ │ ├── GarrTalentTreeRecord.cs │ │ │ │ ├── GemPropertiesRecord.cs │ │ │ │ ├── GlobalCurveRecord.cs │ │ │ │ ├── GlyphBindableSpellRecord.cs │ │ │ │ ├── GlyphPropertiesRecord.cs │ │ │ │ ├── GlyphRequiredSpecRecord.cs │ │ │ │ ├── GossipNPCOptionRecord.cs │ │ │ │ ├── GuildColorBackgroundRecord.cs │ │ │ │ ├── GuildColorBorderRecord.cs │ │ │ │ ├── GuildColorEmblemRecord.cs │ │ │ │ └── GuildPerkSpellsRecord.cs │ │ │ ├── GameTable │ │ │ │ ├── GtArtifactKnowledgeMultiplierRecord.cs │ │ │ │ ├── GtArtifactLevelXPRecord.cs │ │ │ │ ├── GtBarberShopCostBaseRecord.cs │ │ │ │ ├── GtBaseMPRecord.cs │ │ │ │ ├── GtBattlePetXPRecord.cs │ │ │ │ ├── GtCombatRatingsRecord.cs │ │ │ │ ├── GtGenericMultByILvlRecord.cs │ │ │ │ ├── GtHpPerStaRecord.cs │ │ │ │ ├── GtItemSocketCostPerLevelRecord.cs │ │ │ │ ├── GtNpcManaCostScalerRecord.cs │ │ │ │ ├── GtSpellScalingRecord.cs │ │ │ │ └── GtXpRecord.cs │ │ │ ├── H │ │ │ │ ├── HeirloomRecord.cs │ │ │ │ └── HolidaysRecord.cs │ │ │ ├── I │ │ │ │ ├── ImportPriceArmorRecord.cs │ │ │ │ ├── ImportPriceQualityRecord.cs │ │ │ │ ├── ImportPriceShieldRecord.cs │ │ │ │ ├── ImportPriceWeaponRecord.cs │ │ │ │ ├── ItemAppearanceRecord.cs │ │ │ │ ├── ItemArmorQualityRecord.cs │ │ │ │ ├── ItemArmorShieldRecord.cs │ │ │ │ ├── ItemArmorTotalRecord.cs │ │ │ │ ├── ItemBagFamilyRecord.cs │ │ │ │ ├── ItemBonusListGroupEntryRecord.cs │ │ │ │ ├── ItemBonusListLevelDeltaRecord.cs │ │ │ │ ├── ItemBonusRecord.cs │ │ │ │ ├── ItemBonusSequenceSpellRecord.cs │ │ │ │ ├── ItemBonusTreeNodeRecord.cs │ │ │ │ ├── ItemChildEquipmentRecord.cs │ │ │ │ ├── ItemClassRecord.cs │ │ │ │ ├── ItemCurrencyCostRecord.cs │ │ │ │ ├── ItemDamageRecord.cs │ │ │ │ ├── ItemDisenchantLootRecord.cs │ │ │ │ ├── ItemEffectRecord.cs │ │ │ │ ├── ItemExtendedCostRecord.cs │ │ │ │ ├── ItemLevelSelectorQualityRecord.cs │ │ │ │ ├── ItemLevelSelectorQualitySetRecord.cs │ │ │ │ ├── ItemLevelSelectorRecord.cs │ │ │ │ ├── ItemLimitCategoryConditionRecord.cs │ │ │ │ ├── ItemLimitCategoryRecord.cs │ │ │ │ ├── ItemModifiedAppearanceExtraRecord.cs │ │ │ │ ├── ItemModifiedAppearanceRecord.cs │ │ │ │ ├── ItemNameDescriptionRecord.cs │ │ │ │ ├── ItemPriceBaseRecord.cs │ │ │ │ ├── ItemRecord.cs │ │ │ │ ├── ItemSearchNameRecord.cs │ │ │ │ ├── ItemSetRecord.cs │ │ │ │ ├── ItemSetSpellRecord.cs │ │ │ │ ├── ItemSparseRecord.cs │ │ │ │ ├── ItemSpecOverrideRecord.cs │ │ │ │ ├── ItemSpecRecord.cs │ │ │ │ ├── ItemXBonusTreeRecord.cs │ │ │ │ └── ItemXItemEffectRecord.cs │ │ │ ├── J │ │ │ │ ├── JournalEncounterRecord.cs │ │ │ │ ├── JournalEncounterSectionRecord.cs │ │ │ │ ├── JournalInstanceRecord.cs │ │ │ │ └── JournalTierRecord.cs │ │ │ ├── K │ │ │ │ ├── KeyChainRecord.cs │ │ │ │ └── KeystoneAffixRecord.cs │ │ │ ├── L │ │ │ │ ├── LFGDungeonsRecord.cs │ │ │ │ ├── LanguageWordsRecord.cs │ │ │ │ ├── LanguagesRecord.cs │ │ │ │ ├── LightRecord.cs │ │ │ │ ├── LiquidTypeRecord.cs │ │ │ │ └── LockRecord.cs │ │ │ ├── M │ │ │ │ ├── MailTemplateRecord.cs │ │ │ │ ├── MapChallengeModeRecord.cs │ │ │ │ ├── MapDifficultyRecord.cs │ │ │ │ ├── MapDifficultyXConditionRecord.cs │ │ │ │ ├── MapRecord.cs │ │ │ │ ├── MawPowerRecord.cs │ │ │ │ ├── ModifierTreeRecord.cs │ │ │ │ ├── MountCapabilityRecord.cs │ │ │ │ ├── MountRecord.cs │ │ │ │ ├── MountTypeXCapabilityRecord.cs │ │ │ │ ├── MountXDisplayRecord.cs │ │ │ │ └── MovieRecord.cs │ │ │ ├── M2Array.cs │ │ │ ├── M2Camera.cs │ │ │ ├── M2Header.cs │ │ │ ├── M2SplineKey.cs │ │ │ ├── M2Track.cs │ │ │ ├── MetaStructs │ │ │ │ ├── TaxiPathBySourceAndDestination.cs │ │ │ │ └── WMOAreaTableTripple.cs │ │ │ ├── N │ │ │ │ ├── NameGenRecord.cs │ │ │ │ ├── NamesProfanityRecord.cs │ │ │ │ ├── NamesReservedLocaleRecord.cs │ │ │ │ ├── NamesReservedRecord.cs │ │ │ │ └── NumTalentsAtLevelRecord.cs │ │ │ ├── O │ │ │ │ └── OverrideSpellDataRecord.cs │ │ │ ├── P │ │ │ │ ├── ParagonReputationRecord.cs │ │ │ │ ├── PhaseRecord.cs │ │ │ │ ├── PhaseXPhaseGroupRecord.cs │ │ │ │ ├── PlayerConditionRecord.cs │ │ │ │ ├── PowerDisplayRecord.cs │ │ │ │ ├── PowerTypeRecord.cs │ │ │ │ ├── PrestigeLevelInfoRecord.cs │ │ │ │ ├── PvpDifficultyRecord.cs │ │ │ │ ├── PvpItemRecord.cs │ │ │ │ ├── PvpTalentCategoryRecord.cs │ │ │ │ ├── PvpTalentRecord.cs │ │ │ │ ├── PvpTalentSlotUnlockRecord.cs │ │ │ │ └── PvpTierRecord.cs │ │ │ ├── Q │ │ │ │ ├── QuestFactionRewardRecord.cs │ │ │ │ ├── QuestInfoRecord.cs │ │ │ │ ├── QuestLineXQuestRecord.cs │ │ │ │ ├── QuestMoneyRewardRecord.cs │ │ │ │ ├── QuestPOIBlobEntry.cs │ │ │ │ ├── QuestPOIPointEntry.cs │ │ │ │ ├── QuestPackageItemRecord.cs │ │ │ │ ├── QuestSortRecord.cs │ │ │ │ ├── QuestV2Record.cs │ │ │ │ └── QuestXPRecord.cs │ │ │ ├── R │ │ │ │ ├── RandPropPointsRecord.cs │ │ │ │ ├── RewardPackRecord.cs │ │ │ │ ├── RewardPackXCurrencyTypeRecord.cs │ │ │ │ └── RewardPackXItemRecord.cs │ │ │ ├── S │ │ │ │ ├── ScenarioRecord.cs │ │ │ │ ├── ScenarioStepRecord.cs │ │ │ │ ├── SceneScriptGlobalTextRecord.cs │ │ │ │ ├── SceneScriptPackageRecord.cs │ │ │ │ ├── SceneScriptRecord.cs │ │ │ │ ├── SceneScriptTextRecord.cs │ │ │ │ ├── SkillLineAbilityRecord.cs │ │ │ │ ├── SkillLineRecord.cs │ │ │ │ ├── SkillLineXTraitTreeRecord.cs │ │ │ │ ├── SkillRaceClassInfoRecord.cs │ │ │ │ ├── SoulbindConduitRankRecord.cs │ │ │ │ ├── SoundKitRecord.cs │ │ │ │ ├── SpecSetMemberRecord.cs │ │ │ │ ├── SpecializationSpellsRecord.cs │ │ │ │ ├── SpellAuraOptionsRecord.cs │ │ │ │ ├── SpellAuraRestrictionsRecord.cs │ │ │ │ ├── SpellCastTimesRecord.cs │ │ │ │ ├── SpellCastingRequirementsRecord.cs │ │ │ │ ├── SpellCategoriesRecord.cs │ │ │ │ ├── SpellCategoryRecord.cs │ │ │ │ ├── SpellClassOptionsRecord.cs │ │ │ │ ├── SpellCooldownsRecord.cs │ │ │ │ ├── SpellDurationRecord.cs │ │ │ │ ├── SpellEffectRecord.cs │ │ │ │ ├── SpellEmpowerRecord.cs │ │ │ │ ├── SpellEmpowerStageRecord.cs │ │ │ │ ├── SpellEquippedItemsRecord.cs │ │ │ │ ├── SpellFocusObjectRecord.cs │ │ │ │ ├── SpellIconRecord.cs │ │ │ │ ├── SpellInterruptsRecord.cs │ │ │ │ ├── SpellItemEnchantmentConditionRecord.cs │ │ │ │ ├── SpellItemEnchantmentRecord.cs │ │ │ │ ├── SpellKeyboundOverrideRecord.cs │ │ │ │ ├── SpellLabelRecord.cs │ │ │ │ ├── SpellLearnSpellRecord.cs │ │ │ │ ├── SpellLevelsRecord.cs │ │ │ │ ├── SpellMiscRecord.cs │ │ │ │ ├── SpellNameRecord.cs │ │ │ │ ├── SpellPowerDifficultyRecord.cs │ │ │ │ ├── SpellPowerRecord.cs │ │ │ │ ├── SpellProcsPerMinuteModRecord.cs │ │ │ │ ├── SpellProcsPerMinuteRecord.cs │ │ │ │ ├── SpellRadiusRecord.cs │ │ │ │ ├── SpellRangeRecord.cs │ │ │ │ ├── SpellReagentsCurrencyRecord.cs │ │ │ │ ├── SpellReagentsRecord.cs │ │ │ │ ├── SpellRecord.cs │ │ │ │ ├── SpellReplacementRecord.cs │ │ │ │ ├── SpellScalingRecord.cs │ │ │ │ ├── SpellShapeshiftFormRecord.cs │ │ │ │ ├── SpellShapeshiftRecord.cs │ │ │ │ ├── SpellTargetRestrictionsRecord.cs │ │ │ │ ├── SpellTotemsRecord.cs │ │ │ │ ├── SpellVisualEffectNameRecord.cs │ │ │ │ ├── SpellVisualKitRecord.cs │ │ │ │ ├── SpellVisualMissileRecord.cs │ │ │ │ ├── SpellVisualRecord.cs │ │ │ │ ├── SpellXSpellVisualRecord.cs │ │ │ │ └── SummonPropertiesRecord.cs │ │ │ ├── T │ │ │ │ ├── TactKeyRecord.cs │ │ │ │ ├── TalentRecord.cs │ │ │ │ ├── TaxiNodesRecord.cs │ │ │ │ ├── TaxiPathNodeRecord.cs │ │ │ │ ├── TaxiPathRecord.cs │ │ │ │ ├── TotemCategoryRecord.cs │ │ │ │ ├── ToyRecord.cs │ │ │ │ ├── TraitCondRecord.cs │ │ │ │ ├── TraitCostRecord.cs │ │ │ │ ├── TraitCurrencyRecord.cs │ │ │ │ ├── TraitCurrencySourceRecord.cs │ │ │ │ ├── TraitDefinitionEffectPointsRecord.cs │ │ │ │ ├── TraitDefinitionRecord.cs │ │ │ │ ├── TraitEdgeRecord.cs │ │ │ │ ├── TraitNodeEntryRecord.cs │ │ │ │ ├── TraitNodeEntryXTraitCondRecord.cs │ │ │ │ ├── TraitNodeEntryXTraitCostRecord.cs │ │ │ │ ├── TraitNodeGroupRecord.cs │ │ │ │ ├── TraitNodeGroupXTraitCondRecord.cs │ │ │ │ ├── TraitNodeGroupXTraitCostRecord.cs │ │ │ │ ├── TraitNodeGroupXTraitNodeRecord.cs │ │ │ │ ├── TraitNodeRecord.cs │ │ │ │ ├── TraitNodeXTraitCondRecord.cs │ │ │ │ ├── TraitNodeXTraitCostRecord.cs │ │ │ │ ├── TraitNodeXTraitNodeEntryRecord.cs │ │ │ │ ├── TraitSystemRecord.cs │ │ │ │ ├── TraitTreeLoadoutEntryRecord.cs │ │ │ │ ├── TraitTreeLoadoutRecord.cs │ │ │ │ ├── TraitTreeRecord.cs │ │ │ │ ├── TraitTreeXTraitCostRecord.cs │ │ │ │ ├── TraitTreeXTraitCurrencyRecord.cs │ │ │ │ ├── TransmogHolidayRecord.cs │ │ │ │ ├── TransmogIllusionRecord.cs │ │ │ │ ├── TransmogSetGroupRecord.cs │ │ │ │ ├── TransmogSetItemRecord.cs │ │ │ │ ├── TransmogSetRecord.cs │ │ │ │ ├── TransportAnimationRecord.cs │ │ │ │ └── TransportRotationRecord.cs │ │ │ ├── U │ │ │ │ ├── UISplashScreenRecord.cs │ │ │ │ ├── UiMapAssignmentRecord.cs │ │ │ │ ├── UiMapLinkRecord.cs │ │ │ │ ├── UiMapRecord.cs │ │ │ │ ├── UiMapXMapArtRecord.cs │ │ │ │ ├── UnitConditionRecord.cs │ │ │ │ └── UnitPowerBarRecord.cs │ │ │ ├── V │ │ │ │ ├── VehicleRecord.cs │ │ │ │ └── VehicleSeatRecord.cs │ │ │ └── W │ │ │ │ ├── WMOAreaTableRecord.cs │ │ │ │ ├── WorldEffectRecord.cs │ │ │ │ ├── WorldMapOverlayRecord.cs │ │ │ │ └── WorldStateExpressionRecord.cs │ │ ├── UiMapAssignmentStatus.cs │ │ ├── UiMapBounds.cs │ │ ├── WhoListPlayerInfo.cs │ │ └── WhoListStorageManager.cs │ ├── DungeonFinding │ │ ├── LFGGroupData.cs │ │ ├── LFGManager.cs │ │ ├── LFGPlayerData.cs │ │ ├── LFGQueue.cs │ │ └── LFGScripts.cs │ ├── Entities │ │ ├── ActiveStates.cs │ │ ├── AreaTriggers │ │ │ ├── AreaTrigger.cs │ │ │ ├── AreaTriggerAction.cs │ │ │ ├── AreaTriggerCreateProperties.cs │ │ │ ├── AreaTriggerData.cs │ │ │ ├── AreaTriggerId.cs │ │ │ ├── AreaTriggerMovementScriptInfo.cs │ │ │ ├── AreaTriggerOrbitInfo.cs │ │ │ ├── AreaTriggerScaleInfo.cs │ │ │ ├── AreaTriggerShapeInfo.cs │ │ │ ├── AreaTriggerSpawn.cs │ │ │ └── AreaTriggerTemplate.cs │ │ ├── Conversation.cs │ │ ├── ConversationActorFillVisitor.cs │ │ ├── Corpse.cs │ │ ├── Creatures │ │ │ ├── AssistDelayEvent.cs │ │ │ ├── Creature.Fields.cs │ │ │ ├── Creature.Stats.cs │ │ │ ├── Creature.cs │ │ │ ├── CreatureAddon.cs │ │ │ ├── CreatureBaseStats.cs │ │ │ ├── CreatureData.cs │ │ │ ├── CreatureGroup.cs │ │ │ ├── CreatureLevelScaling.cs │ │ │ ├── CreatureLocale.cs │ │ │ ├── CreatureModel.cs │ │ │ ├── CreatureModelInfo.cs │ │ │ ├── CreatureMovementData.cs │ │ │ ├── CreatureSummonedData.cs │ │ │ ├── CreatureTemplate.cs │ │ │ ├── EquipmentInfo.cs │ │ │ ├── EquipmentItem.cs │ │ │ ├── ForcedDespawnDelayEvent.cs │ │ │ ├── FormationInfo.cs │ │ │ ├── FormationMgr.cs │ │ │ ├── GossipMenu.cs │ │ │ ├── GossipMenuAddon.cs │ │ │ ├── GossipMenuItem.cs │ │ │ ├── GossipMenuItems.cs │ │ │ ├── GossipMenus.cs │ │ │ ├── InteractionData.cs │ │ │ ├── NpcText.cs │ │ │ ├── NpcTextData.cs │ │ │ ├── ObjectCellMoveState.cs │ │ │ ├── PageTextLocale.cs │ │ │ ├── PlayerMenu.cs │ │ │ ├── PointOfInterest.cs │ │ │ ├── PointOfInterestLocale.cs │ │ │ ├── QuestMenu.cs │ │ │ ├── QuestMenuItem.cs │ │ │ ├── SpellFocusInfo.cs │ │ │ ├── StaticCreatureFlags.cs │ │ │ ├── Trainer.cs │ │ │ ├── TrainerSpell.cs │ │ │ ├── VendorItem.cs │ │ │ ├── VendorItemCount.cs │ │ │ └── VendorItemData.cs │ │ ├── DynamicObject.cs │ │ ├── DynamicObjectType.cs │ │ ├── ForcedUnsummonDelayEvent.cs │ │ ├── GameObjects │ │ │ ├── GameObject.cs │ │ │ ├── GameObjectAddon.cs │ │ │ ├── GameObjectData.cs │ │ │ ├── GameObjectLocale.cs │ │ │ ├── GameObjectModelOwnerImpl.cs │ │ │ ├── GameObjectOverride.cs │ │ │ ├── GameObjectTemplate.cs │ │ │ ├── GameObjectTemplateAddon.cs │ │ │ ├── GameObjectTypeBase.cs │ │ │ ├── GameObjectValue.cs │ │ │ ├── PerPlayerState.cs │ │ │ ├── SetTransportAutoCycleBetweenStopFrames.cs │ │ │ └── Transport.cs │ │ ├── Guardian.cs │ │ ├── ITransport.cs │ │ ├── Items │ │ │ ├── ArtifactData.cs │ │ │ ├── ArtifactPowerData.cs │ │ │ ├── AzeriteData.cs │ │ │ ├── AzeriteEmpoweredData.cs │ │ │ ├── AzeriteEmpoweredItem.cs │ │ │ ├── AzeriteItem.cs │ │ │ ├── AzeriteItemSelectedEssencesData.cs │ │ │ ├── Bag.cs │ │ │ ├── BonusData.cs │ │ │ ├── Item.cs │ │ │ ├── ItemAdditionalLoadInfo.cs │ │ │ ├── ItemDynamicFieldGems.cs │ │ │ ├── ItemEnchantmentManager.cs │ │ │ ├── ItemPosCount.cs │ │ │ ├── ItemSetEffect.cs │ │ │ ├── ItemTemplate.cs │ │ │ └── RandomBonusListIds.cs │ │ ├── Minion.cs │ │ ├── Objects │ │ │ ├── CombatLogSender.cs │ │ │ ├── CreateObjectBits.cs │ │ │ ├── FindCreatureOptions.cs │ │ │ ├── MovementForce.cs │ │ │ ├── MovementForces.cs │ │ │ ├── MovementInfo.cs │ │ │ ├── ObjectGuid.cs │ │ │ ├── ObjectGuidFactory.cs │ │ │ ├── ObjectGuidGenerator.cs │ │ │ ├── ObjectGuidInfo.cs │ │ │ ├── Position.cs │ │ │ ├── SmoothPhasing.cs │ │ │ ├── SmoothPhasingInfo.cs │ │ │ ├── Update │ │ │ │ ├── ActivePlayerData.cs │ │ │ │ ├── ActivePlayerUnk901.cs │ │ │ │ ├── AreaTriggerFieldData.cs │ │ │ │ ├── ArenaCooldown.cs │ │ │ │ ├── ArtifactPower.cs │ │ │ │ ├── AzeriteEmpoweredItemData.cs │ │ │ │ ├── AzeriteItemData.cs │ │ │ │ ├── BaseUpdateData.cs │ │ │ │ ├── CTROptions.cs │ │ │ │ ├── CharacterRestriction.cs │ │ │ │ ├── ChrCustomizationChoice.cs │ │ │ │ ├── ContainerData.cs │ │ │ │ ├── ConversationActorField.cs │ │ │ │ ├── ConversationData.cs │ │ │ │ ├── ConversationLine.cs │ │ │ │ ├── CorpseData.cs │ │ │ │ ├── CraftingOrder.cs │ │ │ │ ├── CraftingOrderData.cs │ │ │ │ ├── CraftingOrderItem.cs │ │ │ │ ├── DynamicObjectData.cs │ │ │ │ ├── DynamicUpdateField.cs │ │ │ │ ├── DynamicUpdateFieldSetter.cs │ │ │ │ ├── GameObjectFieldData.cs │ │ │ │ ├── IHasChangesMask.cs │ │ │ │ ├── IUpdateField.cs │ │ │ │ ├── ItemData.cs │ │ │ │ ├── ItemEnchantment.cs │ │ │ │ ├── ItemMod.cs │ │ │ │ ├── ItemModList.cs │ │ │ │ ├── MawPower.cs │ │ │ │ ├── MultiFloorExplore.cs │ │ │ │ ├── ObjectFieldData.cs │ │ │ │ ├── OptionalUpdateField.cs │ │ │ │ ├── PVPInfo.cs │ │ │ │ ├── PassiveSpellHistory.cs │ │ │ │ ├── PersonalCraftingOrderCount.cs │ │ │ │ ├── PlayerData.cs │ │ │ │ ├── QuestLog.cs │ │ │ │ ├── QuestSession.cs │ │ │ │ ├── RecipeProgressionInfo.cs │ │ │ │ ├── ReplayedQuest.cs │ │ │ │ ├── Research.cs │ │ │ │ ├── RestInfo.cs │ │ │ │ ├── ScaleCurve.cs │ │ │ │ ├── SceneObjectData.cs │ │ │ │ ├── SelectedAzeriteEssences.cs │ │ │ │ ├── SkillInfo.cs │ │ │ │ ├── SocketedGem.cs │ │ │ │ ├── SpellCastVisualField.cs │ │ │ │ ├── SpellFlatModByLabel.cs │ │ │ │ ├── SpellPctModByLabel.cs │ │ │ │ ├── TraitConfig.cs │ │ │ │ ├── TraitEntry.cs │ │ │ │ ├── UnitChannel.cs │ │ │ │ ├── UnitData.cs │ │ │ │ ├── UnlockedAzeriteEssence.cs │ │ │ │ ├── UpdateData.cs │ │ │ │ ├── UpdateField.cs │ │ │ │ ├── UpdateFieldArray.cs │ │ │ │ ├── UpdateFieldHolder.cs │ │ │ │ ├── UpdateFieldString.cs │ │ │ │ ├── UpdateMask.cs │ │ │ │ ├── VisibleItem.cs │ │ │ │ └── VisualAnim.cs │ │ │ ├── WorldLocation.cs │ │ │ └── WorldObject.cs │ │ ├── PassengerInfo.cs │ │ ├── Pet.cs │ │ ├── PetEntry.cs │ │ ├── PetLoadQueryHolder.cs │ │ ├── PetLoginQueryLoad.cs │ │ ├── PetSpell.cs │ │ ├── PetStable.cs │ │ ├── Players │ │ │ ├── AccessRequirement.cs │ │ │ ├── ActionButton.cs │ │ │ ├── BgBattlegroundQueueIdRec.cs │ │ │ ├── BgData.cs │ │ │ ├── CharDeleteMethod.cs │ │ │ ├── CinematicManager.cs │ │ │ ├── CollectionMgr.cs │ │ │ ├── CufProfile.cs │ │ │ ├── DuelInfo.cs │ │ │ ├── EnchantDuration.cs │ │ │ ├── EquipmentSetInfo.cs │ │ │ ├── FavoriteAppearanceState.cs │ │ │ ├── FriendInfo.cs │ │ │ ├── FriendStatus.cs │ │ │ ├── FriendsResult.cs │ │ │ ├── GroupUpdateCounter.cs │ │ │ ├── HeirloomData.cs │ │ │ ├── KillRewarder.cs │ │ │ ├── Petition.cs │ │ │ ├── PetitionManager.cs │ │ │ ├── Player.Achievement.cs │ │ │ ├── Player.Combat.cs │ │ │ ├── Player.DB.cs │ │ │ ├── Player.Fields.cs │ │ │ ├── Player.Groups.cs │ │ │ ├── Player.Items.cs │ │ │ ├── Player.Map.cs │ │ │ ├── Player.PvP.cs │ │ │ ├── Player.Quest.cs │ │ │ ├── Player.Spells.cs │ │ │ ├── Player.Stats.cs │ │ │ ├── Player.Talents.cs │ │ │ ├── Player.cs │ │ │ ├── PlayerCreateInfoAction.cs │ │ │ ├── PlayerCreateInfoItem.cs │ │ │ ├── PlayerCurrency.cs │ │ │ ├── PlayerInfo.cs │ │ │ ├── PlayerLevelInfo.cs │ │ │ ├── PlayerSocial.cs │ │ │ ├── PlayerSpell.cs │ │ │ ├── PlayerTaxi.cs │ │ │ ├── PvPInfo.cs │ │ │ ├── QuestObjectiveStatusData.cs │ │ │ ├── RestMgr.cs │ │ │ ├── ResurrectionData.cs │ │ │ ├── Runes.cs │ │ │ ├── SceneMgr.cs │ │ │ ├── SocialFlag.cs │ │ │ ├── SocialManager.cs │ │ │ ├── SpecializationInfo.cs │ │ │ ├── StoredAuraTeleportLocation.cs │ │ │ ├── TradeData.cs │ │ │ └── VoidStorageItem.cs │ │ ├── Puppet.cs │ │ ├── SceneObject.cs │ │ ├── Taxis │ │ │ └── TaxiPathGraph.cs │ │ ├── TempSummon.cs │ │ ├── TempSummonData.cs │ │ ├── Totem.cs │ │ ├── TotemType.cs │ │ ├── Transport.cs │ │ ├── Units │ │ │ ├── CalcDamageInfo.cs │ │ │ ├── CharmInfo.cs │ │ │ ├── CleanDamage.cs │ │ │ ├── DamageInfo.cs │ │ │ ├── DeclinedName.cs │ │ │ ├── DiminishingReturn.cs │ │ │ ├── DispelInfo.cs │ │ │ ├── HealInfo.cs │ │ │ ├── HealthPctOrderPred.cs │ │ │ ├── ObjectDistanceOrderPred.cs │ │ │ ├── PositionUpdateInfo.cs │ │ │ ├── PowerPctOrderPred.cs │ │ │ ├── ProcEventInfo.cs │ │ │ ├── SpellNonMeleeDamage.cs │ │ │ ├── SpellPeriodicAuraLogInfo.cs │ │ │ ├── Unit.Combat.cs │ │ │ ├── Unit.Fields.cs │ │ │ ├── Unit.Movement.cs │ │ │ ├── Unit.Pets.cs │ │ │ ├── Unit.Spells.cs │ │ │ ├── Unit.Stats.cs │ │ │ ├── Unit.cs │ │ │ ├── UnitActionBarEntry.cs │ │ │ └── VisibleAuraSlotCompare.cs │ │ ├── Vehicle.cs │ │ ├── VehicleAccessory.cs │ │ ├── VehicleJoinEvent.cs │ │ ├── VehicleSeat.cs │ │ ├── VehicleSeatAddon.cs │ │ └── VehicleTemplate.cs │ ├── Events │ │ ├── GameEventManager.cs │ │ └── GameEventSender.cs │ ├── Extendability │ │ ├── Extentions.cs │ │ └── IOHelpers.cs │ ├── Game.csproj │ ├── Garrisons │ │ ├── GarrisonManager.cs │ │ ├── GarrisonMap.cs │ │ └── Garrisons.cs │ ├── Globals │ │ ├── BattlePayDataStoreMgr.cs │ │ ├── Global.cs │ │ ├── ObjectAccessor.cs │ │ ├── ObjectManager.cs │ │ └── ProductAddon.cs │ ├── Groups │ │ ├── GroupInstanceRefManager.cs │ │ ├── GroupInstanceReference.cs │ │ ├── GroupManager.cs │ │ ├── GroupRefManager.cs │ │ ├── GroupReference.cs │ │ ├── MemberSlot.cs │ │ ├── PlayerGroup.cs │ │ └── RaidMarker.cs │ ├── Guilds │ │ ├── Guild.cs │ │ └── GuildManager.cs │ ├── Handlers │ │ ├── AdventureJournalHandler.cs │ │ ├── AdventureMapHandler.cs │ │ ├── ArtifactHandler.cs │ │ ├── AuctionHandler.cs │ │ ├── AuthenticationHandler.cs │ │ ├── AzeriteHandler.cs │ │ ├── BankHandler.cs │ │ ├── BattleGroundHandler.cs │ │ ├── BattlePetHandler.cs │ │ ├── BattlenetHandler.cs │ │ ├── BattlepayHandler.cs │ │ ├── BlackMarketHandlers.cs │ │ ├── CalendarHandler.cs │ │ ├── ChannelHandler.cs │ │ ├── CharacterHandler.cs │ │ ├── ChatHandler.cs │ │ ├── CollectionsHandler.cs │ │ ├── CombatHandler.cs │ │ ├── DuelHandler.cs │ │ ├── GarrisonHandler.cs │ │ ├── GroupHandler.cs │ │ ├── GuildHandler.cs │ │ ├── HotfixHandler.cs │ │ ├── InspectHandler.cs │ │ ├── ItemHandler.cs │ │ ├── LFGHandler.cs │ │ ├── LogoutHandler.cs │ │ ├── LootHandler.cs │ │ ├── MailHandler.cs │ │ ├── MiscHandler.cs │ │ ├── MovementHandler.cs │ │ ├── MythicPlusHandler.cs │ │ ├── NPCHandler.cs │ │ ├── PetHandler.cs │ │ ├── PetitionsHandler.cs │ │ ├── QueryHandler.cs │ │ ├── QuestHandler.cs │ │ ├── RAFHandler.cs │ │ ├── ScenarioHandler.cs │ │ ├── SceneHandler.cs │ │ ├── SkillHandler.cs │ │ ├── SocialHandler.cs │ │ ├── SpellHandler.cs │ │ ├── TaxiHandler.cs │ │ ├── TicketHandler.cs │ │ ├── TimeHandler.cs │ │ ├── TokenHandler.cs │ │ ├── ToyHandler.cs │ │ ├── TradeHandler.cs │ │ ├── TraitHandler.cs │ │ ├── TransmogrificationHandler.cs │ │ ├── VehicleHandler.cs │ │ └── VoidStorageHandler.cs │ ├── Loot │ │ ├── Loot.cs │ │ ├── LootItemStorage.cs │ │ ├── LootManager.cs │ │ └── LootStorage.cs │ ├── Mails │ │ ├── Mail.cs │ │ └── MailDraft.cs │ ├── Maps │ │ ├── AreaBoundary.cs │ │ ├── BattlegroundMap.cs │ │ ├── BoundaryUnionBoundary.cs │ │ ├── Cell.cs │ │ ├── CellArea.cs │ │ ├── Checks │ │ │ ├── AllAttackableUnitsInRange.cs │ │ │ ├── AllCreaturesOfEntriesInRange.cs │ │ │ ├── AllCreaturesOfEntryInRange.cs │ │ │ ├── AllCreaturesWithinRange.cs │ │ │ ├── AllFriendlyUnitsInGrid.cs │ │ │ ├── AllFriendlyUnitsInRange.cs │ │ │ ├── AllGameObjectsWithEntryInRange.cs │ │ │ ├── AllWorldObjectsInRange.cs │ │ │ ├── AnyAoETargetUnitInObjectRangeCheck.cs │ │ │ ├── AnyAssistCreatureInRangeCheck.cs │ │ │ ├── AnyDeadUnitCheck.cs │ │ │ ├── AnyDeadUnitObjectInRangeCheck.cs │ │ │ ├── AnyDeadUnitSpellTargetInRangeCheck.cs │ │ │ ├── AnyFriendlyUnitInObjectRangeCheck.cs │ │ │ ├── AnyGroupedUnitInObjectRangeCheck.cs │ │ │ ├── AnyPlayerInObjectRangeCheck.cs │ │ │ ├── AnyPlayerInPositionRangeCheck.cs │ │ │ ├── AnyUnfriendlyUnitInObjectRangeCheck.cs │ │ │ ├── AnyUnitInObjectRangeCheck.cs │ │ │ ├── CreatureWithOptionsInObjectRangeCheck.cs │ │ │ ├── FriendlyBelowHpPctEntryInRange.cs │ │ │ ├── FriendlyCCedInRange.cs │ │ │ ├── FriendlyMissingBuffInRange.cs │ │ │ ├── GameObjectFocusCheck.cs │ │ │ ├── GameObjectInRangeCheck.cs │ │ │ ├── GetAllAlliesOfTargetCreaturesWithinRange.cs │ │ │ ├── HeightDifferenceCheck.cs │ │ │ ├── NearestAssistCreatureInCreatureRangeCheck.cs │ │ │ ├── NearestAttackableNoTotemUnitInObjectRangeCheck.cs │ │ │ ├── NearestAttackableUnitInObjectRangeCheck.cs │ │ │ ├── NearestCheckCustomizer.cs │ │ │ ├── NoopCheckCustomizer.cs │ │ │ ├── ObjectEntryAndPrivateOwnerIfExistsCheck.cs │ │ │ ├── ObjectGUIDCheck.cs │ │ │ ├── ObjectTypeIdCheck.cs │ │ │ ├── PlayerAtMinimumRangeAway.cs │ │ │ ├── PlayerOrPetCheck.cs │ │ │ └── UnitAuraCheck.cs │ │ ├── CompareRespawnInfo.cs │ │ ├── GridNotifiers │ │ │ ├── AIRelocationNotifier.cs │ │ │ ├── CreatureLastSearcher.cs │ │ │ ├── CreatureListSearcher.cs │ │ │ ├── CreatureRelocationNotifier.cs │ │ │ ├── CreatureSearcher.cs │ │ │ ├── CreatureWorker.cs │ │ │ ├── DelayedUnitRelocation.cs │ │ │ ├── GameObjectLastSearcher.cs │ │ │ ├── GameObjectListSearcher.cs │ │ │ ├── GameObjectSearcher.cs │ │ │ ├── GameObjectWorker.cs │ │ │ ├── MessageDistDeliverer.cs │ │ │ ├── MessageDistDelivererToHostile.cs │ │ │ ├── MostHPMissingInRange.cs │ │ │ ├── MostHPPercentMissingInRange.cs │ │ │ ├── NearestCreatureEntryWithLiveStateInObjectRangeCheck.cs │ │ │ ├── NearestGameObjectCheck.cs │ │ │ ├── NearestGameObjectEntryInObjectRangeCheck.cs │ │ │ ├── NearestGameObjectFishingHole.cs │ │ │ ├── NearestGameObjectTypeInObjectRangeCheck.cs │ │ │ ├── NearestHostileUnitCheck.cs │ │ │ ├── NearestHostileUnitInAggroRangeCheck.cs │ │ │ ├── NearestHostileUnitInAttackDistanceCheck.cs │ │ │ ├── NearestPlayerInObjectRangeCheck.cs │ │ │ ├── NearestUnspawnedGameObjectEntryInObjectRangeCheck.cs │ │ │ ├── NotifierHelpers.cs │ │ │ ├── PlayerDistWorker.cs │ │ │ ├── PlayerLastSearcher.cs │ │ │ ├── PlayerListSearcher.cs │ │ │ ├── PlayerRelocationNotifier.cs │ │ │ ├── PlayerSearcher.cs │ │ │ ├── PlayerWorker.cs │ │ │ ├── ResetNotifier.cs │ │ │ ├── UnitLastSearcher.cs │ │ │ ├── UnitListSearcher.cs │ │ │ ├── UnitSearcher.cs │ │ │ ├── UpdaterNotifier.cs │ │ │ ├── VisibleChangesNotifier.cs │ │ │ ├── VisibleNotifier.cs │ │ │ ├── WorldObjectChangeAccumulator.cs │ │ │ ├── WorldObjectLastSearcher.cs │ │ │ ├── WorldObjectListSearcher.cs │ │ │ ├── WorldObjectSearcher.cs │ │ │ └── WorldObjectWorker.cs │ │ ├── Grids │ │ │ ├── CellCoord.cs │ │ │ ├── Grid.cs │ │ │ ├── GridCell.cs │ │ │ ├── GridCoord.cs │ │ │ ├── GridDefines.cs │ │ │ ├── GridInfo.cs │ │ │ ├── GridMap.cs │ │ │ ├── GridState.cs │ │ │ ├── ICoord.cs │ │ │ ├── LiquidData.cs │ │ │ ├── MapAreaHeader.cs │ │ │ ├── MapFileHeader.cs │ │ │ ├── MapHeightHeader.cs │ │ │ └── MapLiquidHeader.cs │ │ ├── InstanceMap.cs │ │ ├── Instances │ │ │ ├── BossBoundaryEntry.cs │ │ │ ├── BossInfo.cs │ │ │ ├── DoorData.cs │ │ │ ├── DoorInfo.cs │ │ │ ├── DungeonEncounterData.cs │ │ │ ├── InstanceLock.cs │ │ │ ├── InstanceLockData.cs │ │ │ ├── InstanceLockManager.cs │ │ │ ├── InstanceLockUpdateEvent.cs │ │ │ ├── InstanceLocksStatistics.cs │ │ │ ├── InstanceScript.cs │ │ │ ├── InstanceScriptDataReader.cs │ │ │ ├── InstanceScriptDataWriter.cs │ │ │ ├── MapDb2Entries.cs │ │ │ ├── MinionData.cs │ │ │ ├── MinionInfo.cs │ │ │ ├── ObjectData.cs │ │ │ ├── PersistentInstanceScriptValue.cs │ │ │ ├── PersistentInstanceScriptValueBase.cs │ │ │ ├── SharedInstanceLock.cs │ │ │ ├── SharedInstanceLockData.cs │ │ │ ├── UpdateAdditionalSaveDataEvent.cs │ │ │ └── UpdateBossStateSaveDataEvent.cs │ │ ├── Interfaces │ │ │ ├── IGridNotifier.cs │ │ │ ├── IGridNotifierAreaTrigger.cs │ │ │ ├── IGridNotifierConversation.cs │ │ │ ├── IGridNotifierCorpse.cs │ │ │ ├── IGridNotifierCreature.cs │ │ │ ├── IGridNotifierDynamicObject.cs │ │ │ ├── IGridNotifierGameObject.cs │ │ │ ├── IGridNotifierPlayer.cs │ │ │ ├── IGridNotifierSceneObject.cs │ │ │ └── IGridNotifierWorldObject.cs │ │ ├── MMapData.cs │ │ ├── MMapManager.cs │ │ ├── Map.cs │ │ ├── MapManager.cs │ │ ├── MmapTileHeader.cs │ │ ├── ObjectGridCleaner.cs │ │ ├── ObjectGridEvacuator.cs │ │ ├── ObjectGridLoader.cs │ │ ├── ObjectGridLoaderBase.cs │ │ ├── ObjectGridStoper.cs │ │ ├── ObjectGridUnloader.cs │ │ ├── ObjectWorldLoader.cs │ │ ├── ParallelogramBoundary.cs │ │ ├── PersonalPhaseGridLoader.cs │ │ ├── PositionFullTerrainStatus.cs │ │ ├── RectangleBoundary.cs │ │ ├── RespawnInfo.cs │ │ ├── ScriptAction.cs │ │ ├── SpawnData.cs │ │ ├── SpawnGroupTemplateData.cs │ │ ├── SpawnMetadata.cs │ │ ├── SplineRawInitializer.cs │ │ ├── SplitByFactionMapScript.cs │ │ ├── TerrainInfo.cs │ │ ├── TerrainManager.cs │ │ ├── TransferAbortParams.cs │ │ ├── TransportAnimation.cs │ │ ├── TransportManager.cs │ │ ├── TransportPathEvent.cs │ │ ├── TransportPathLeg.cs │ │ ├── TransportPathSegment.cs │ │ ├── TransportSpawn.cs │ │ ├── TransportTemplate.cs │ │ ├── TriangleBoundary.cs │ │ ├── Workers │ │ │ ├── CallOfHelpCreatureInRangeDo.cs │ │ │ ├── LocalizedDo.cs │ │ │ ├── PacketSenderOwning.cs │ │ │ ├── PacketSenderRef.cs │ │ │ └── RespawnDo.cs │ │ ├── WorldObjectTypedList.cs │ │ ├── ZRangeBoundary.cs │ │ ├── ZoneDynamicInfo.cs │ │ └── ZoneScript.cs │ ├── Miscellaneous │ │ ├── CommonPredicates.cs │ │ └── Formulas.cs │ ├── Movement │ │ ├── AbstractFollower.cs │ │ ├── Generators │ │ │ ├── ChaseMovementGenerator.cs │ │ │ ├── ConfusedMovementGenerator.cs │ │ │ ├── FleeingMovementGenerator.cs │ │ │ ├── FlightPathMovementGenerator.cs │ │ │ ├── FollowMovementGenerator.cs │ │ │ ├── FormationMovement.cs │ │ │ ├── GenericMovementGenerator.cs │ │ │ ├── HomeMovement.cs │ │ │ ├── IdleMovement.cs │ │ │ ├── MovementGenerators.cs │ │ │ ├── PathGenerator.cs │ │ │ ├── PointMovement.cs │ │ │ ├── RandomMovementGenerator.cs │ │ │ ├── SplineChainMovementGenerator.cs │ │ │ └── WaypointMovement.cs │ │ ├── MotionMaster.cs │ │ ├── MoveSpline.cs │ │ ├── MoveSplineFlags.cs │ │ ├── MoveSplineInit.cs │ │ ├── MoveSplineInitArgs.cs │ │ ├── Spline.cs │ │ └── WaypointManager.cs │ ├── Networking │ │ ├── AccountInfo.cs │ │ ├── ClientPacket.cs │ │ ├── PacketHandler.cs │ │ ├── PacketHeader.cs │ │ ├── PacketLog.cs │ │ ├── PacketManager.cs │ │ ├── Packets │ │ │ ├── Achievements │ │ │ │ ├── AccountCriteriaUpdate.cs │ │ │ │ ├── AchievementDeleted.cs │ │ │ │ ├── AchievementEarned.cs │ │ │ │ ├── AllAccountCriteria.cs │ │ │ │ ├── AllAchievementData.cs │ │ │ │ ├── AllAchievements.cs │ │ │ │ ├── AllGuildAchievements.cs │ │ │ │ ├── BroadcastAchievement.cs │ │ │ │ ├── CriteriaDeleted.cs │ │ │ │ ├── CriteriaProgressPkt.cs │ │ │ │ ├── CriteriaUpdate.cs │ │ │ │ ├── EarnedAchievement.cs │ │ │ │ ├── GuildAchievementDeleted.cs │ │ │ │ ├── GuildAchievementEarned.cs │ │ │ │ ├── GuildAchievementMembers.cs │ │ │ │ ├── GuildCriteriaDeleted.cs │ │ │ │ ├── GuildCriteriaProgress.cs │ │ │ │ ├── GuildCriteriaUpdate.cs │ │ │ │ ├── GuildGetAchievementMembers.cs │ │ │ │ ├── GuildSetFocusedAchievement.cs │ │ │ │ └── RespondInspectAchievements.cs │ │ │ ├── Addon │ │ │ │ └── AddOnInfo.cs │ │ │ ├── AdventureJournal │ │ │ │ ├── AdventureJournalDataResponse.cs │ │ │ │ ├── AdventureJournalEntry.cs │ │ │ │ ├── AdventureJournalOpenQuest.cs │ │ │ │ └── AdventureJournalUpdateSuggestions.cs │ │ │ ├── AdventureMap │ │ │ │ └── AdventureMapStartQuest.cs │ │ │ ├── AreaTrigger │ │ │ │ ├── AreaTriggerDenied.cs │ │ │ │ ├── AreaTriggerNoCorpse.cs │ │ │ │ ├── AreaTriggerPkt.cs │ │ │ │ ├── AreaTriggerRePath.cs │ │ │ │ └── AreaTriggerSplineInfo.cs │ │ │ ├── Artifact │ │ │ │ ├── ArtifactAddPower.cs │ │ │ │ ├── ArtifactRespecPrompt.cs │ │ │ │ ├── ArtifactSetAppearance.cs │ │ │ │ ├── ArtifactXpGain.cs │ │ │ │ ├── ConfirmArtifactRespec.cs │ │ │ │ └── OpenArtifactForge.cs │ │ │ ├── AuctionHouse │ │ │ │ ├── AuctionBidderNotification.cs │ │ │ │ ├── AuctionBrowseQuery.cs │ │ │ │ ├── AuctionBucketKey.cs │ │ │ │ ├── AuctionCancelCommoditiesPurchase.cs │ │ │ │ ├── AuctionClosedNotification.cs │ │ │ │ ├── AuctionCommandResult.cs │ │ │ │ ├── AuctionConfirmCommoditiesPurchase.cs │ │ │ │ ├── AuctionFavoriteInfo.cs │ │ │ │ ├── AuctionFavoriteList.cs │ │ │ │ ├── AuctionGetCommodityQuote.cs │ │ │ │ ├── AuctionGetCommodityQuoteResult.cs │ │ │ │ ├── AuctionHelloRequest.cs │ │ │ │ ├── AuctionHelloResponse.cs │ │ │ │ ├── AuctionItem.cs │ │ │ │ ├── AuctionItemForSale.cs │ │ │ │ ├── AuctionListBiddedItems.cs │ │ │ │ ├── AuctionListBiddedItemsResult.cs │ │ │ │ ├── AuctionListBucketsByBucketKeys.cs │ │ │ │ ├── AuctionListBucketsResult.cs │ │ │ │ ├── AuctionListFilterClass.cs │ │ │ │ ├── AuctionListFilterSubClass.cs │ │ │ │ ├── AuctionListItemsByBucketKey.cs │ │ │ │ ├── AuctionListItemsByItemID.cs │ │ │ │ ├── AuctionListItemsResult.cs │ │ │ │ ├── AuctionListOwnedItems.cs │ │ │ │ ├── AuctionListOwnedItemsResult.cs │ │ │ │ ├── AuctionOutbidNotification.cs │ │ │ │ ├── AuctionOwnerBidNotification.cs │ │ │ │ ├── AuctionOwnerNotification.cs │ │ │ │ ├── AuctionPlaceBid.cs │ │ │ │ ├── AuctionRemoveItem.cs │ │ │ │ ├── AuctionReplicateItems.cs │ │ │ │ ├── AuctionReplicateResponse.cs │ │ │ │ ├── AuctionRequestFavoriteList.cs │ │ │ │ ├── AuctionSellCommodity.cs │ │ │ │ ├── AuctionSellItem.cs │ │ │ │ ├── AuctionSetFavoriteItem.cs │ │ │ │ ├── AuctionSortDef.cs │ │ │ │ ├── AuctionWonNotification.cs │ │ │ │ └── BucketInfo.cs │ │ │ ├── Authentication │ │ │ │ ├── AuthChallenge.cs │ │ │ │ ├── AuthContinuedSession.cs │ │ │ │ ├── AuthResponse.cs │ │ │ │ ├── AuthSession.cs │ │ │ │ ├── AuthWaitInfo.cs │ │ │ │ ├── ConnectTo.cs │ │ │ │ ├── ConnectToFailed.cs │ │ │ │ ├── EnterEncryptedMode.cs │ │ │ │ ├── Ping.cs │ │ │ │ ├── Pong.cs │ │ │ │ ├── ResumeComms.cs │ │ │ │ ├── VirtualRealmInfo.cs │ │ │ │ ├── VirtualRealmNameInfo.cs │ │ │ │ ├── WaitQueueFinish.cs │ │ │ │ └── WaitQueueUpdate.cs │ │ │ ├── Azerite │ │ │ │ ├── ActivateEssenceFailed.cs │ │ │ │ ├── AzeriteEmpoweredItemSelectPower.cs │ │ │ │ ├── AzeriteEmpoweredItemViewed.cs │ │ │ │ ├── AzeriteEssenceActivateEssence.cs │ │ │ │ ├── AzeriteEssenceUnlockMilestone.cs │ │ │ │ ├── PlayerAzeriteItemEquippedStatusChanged.cs │ │ │ │ └── PlayerAzeriteItemGains.cs │ │ │ ├── Bank │ │ │ │ ├── AutoBankItem.cs │ │ │ │ ├── AutoBankReagent.cs │ │ │ │ ├── AutoStoreBankItem.cs │ │ │ │ ├── AutoStoreBankReagent.cs │ │ │ │ ├── BuyBankSlot.cs │ │ │ │ └── ReagentBank.cs │ │ │ ├── BattleGround │ │ │ │ ├── AreaSpiritHealerQuery.cs │ │ │ │ ├── AreaSpiritHealerQueue.cs │ │ │ │ ├── AreaSpiritHealerTime.cs │ │ │ │ ├── BattlefieldLeave.cs │ │ │ │ ├── BattlefieldList.cs │ │ │ │ ├── BattlefieldListRequest.cs │ │ │ │ ├── BattlefieldPort.cs │ │ │ │ ├── BattlefieldStatusActive.cs │ │ │ │ ├── BattlefieldStatusFailed.cs │ │ │ │ ├── BattlefieldStatusHeader.cs │ │ │ │ ├── BattlefieldStatusNeedConfirmation.cs │ │ │ │ ├── BattlefieldStatusNone.cs │ │ │ │ ├── BattlefieldStatusQueued.cs │ │ │ │ ├── BattlegroundCapturePointInfo.cs │ │ │ │ ├── BattlegroundPlayerJoined.cs │ │ │ │ ├── BattlegroundPlayerLeft.cs │ │ │ │ ├── BattlegroundPlayerPosition.cs │ │ │ │ ├── BattlegroundPlayerPositions.cs │ │ │ │ ├── BattlemasterJoin.cs │ │ │ │ ├── BattlemasterJoinArena.cs │ │ │ │ ├── BracketInfo.cs │ │ │ │ ├── CapturePointRemoved.cs │ │ │ │ ├── DestroyArenaUnit.cs │ │ │ │ ├── GetPVPOptionsEnabled.cs │ │ │ │ ├── HearthAndResurrect.cs │ │ │ │ ├── JoinSkirmish.cs │ │ │ │ ├── PVPLogDataRequest.cs │ │ │ │ ├── PVPMatchComplete.cs │ │ │ │ ├── PVPMatchInitialize.cs │ │ │ │ ├── PVPMatchStatistics.cs │ │ │ │ ├── PVPMatchStatisticsMessage.cs │ │ │ │ ├── PVPOptionsEnabled.cs │ │ │ │ ├── RatedMatchDeserterPenalty.cs │ │ │ │ ├── RatedPvpInfo.cs │ │ │ │ ├── ReportPvPPlayerAFK.cs │ │ │ │ ├── ReportPvPPlayerAFKResult.cs │ │ │ │ ├── RequestBattlefieldStatus.cs │ │ │ │ ├── RequestPVPRewards.cs │ │ │ │ ├── RequestPVPRewardsResponse.cs │ │ │ │ ├── RequestRatedPvpInfo.cs │ │ │ │ ├── SeasonInfo.cs │ │ │ │ └── UpdateCapturePoint.cs │ │ │ ├── BattlePet │ │ │ │ ├── BattlePetClearFanfare.cs │ │ │ │ ├── BattlePetDeletePet.cs │ │ │ │ ├── BattlePetDeleted.cs │ │ │ │ ├── BattlePetErrorPacket.cs │ │ │ │ ├── BattlePetJournal.cs │ │ │ │ ├── BattlePetJournalLockAcquired.cs │ │ │ │ ├── BattlePetJournalLockDenied.cs │ │ │ │ ├── BattlePetModifyName.cs │ │ │ │ ├── BattlePetRequestJournal.cs │ │ │ │ ├── BattlePetRequestJournalLock.cs │ │ │ │ ├── BattlePetSetBattleSlot.cs │ │ │ │ ├── BattlePetSetFlags.cs │ │ │ │ ├── BattlePetSlot.cs │ │ │ │ ├── BattlePetStruct.cs │ │ │ │ ├── BattlePetSummon.cs │ │ │ │ ├── BattlePetUpdateNotify.cs │ │ │ │ ├── BattlePetUpdates.cs │ │ │ │ ├── CageBattlePet.cs │ │ │ │ ├── PetBattleSlotUpdates.cs │ │ │ │ ├── QueryBattlePetName.cs │ │ │ │ └── QueryBattlePetNameResponse.cs │ │ │ ├── Battlenet │ │ │ │ ├── BattlenetRequest.cs │ │ │ │ ├── ChangeRealmTicket.cs │ │ │ │ ├── ChangeRealmTicketResponse.cs │ │ │ │ ├── ConnectionStatus.cs │ │ │ │ ├── MethodCall.cs │ │ │ │ ├── Notification.cs │ │ │ │ └── Response.cs │ │ │ ├── BlackMarket │ │ │ │ ├── BlackMarketBidOnItem.cs │ │ │ │ ├── BlackMarketBidOnItemResult.cs │ │ │ │ ├── BlackMarketItem.cs │ │ │ │ ├── BlackMarketOpen.cs │ │ │ │ ├── BlackMarketOutbid.cs │ │ │ │ ├── BlackMarketRequestItems.cs │ │ │ │ ├── BlackMarketRequestItemsResult.cs │ │ │ │ └── BlackMarketWon.cs │ │ │ ├── Bpay │ │ │ │ ├── BattlePayAckFailed.cs │ │ │ │ ├── BattlePayAckFailedResponse.cs │ │ │ │ ├── BattlePayBattlePetDelivered.cs │ │ │ │ ├── BattlePayDeliveryStarted.cs │ │ │ │ ├── BattlePayRequestPriceInfo.cs │ │ │ │ ├── BattlePayStartDistributionAssignToTargetResponse.cs │ │ │ │ ├── BpayDisplayInfo.cs │ │ │ │ ├── BpayDistributionObject.cs │ │ │ │ ├── BpayGroup.cs │ │ │ │ ├── BpayProduct.cs │ │ │ │ ├── BpayProductInfo.cs │ │ │ │ ├── BpayProductItem.cs │ │ │ │ ├── BpayPurchase.cs │ │ │ │ ├── BpayShop.cs │ │ │ │ ├── BpayVisual.cs │ │ │ │ ├── ConfirmPurchase.cs │ │ │ │ ├── ConfirmPurchaseResponse.cs │ │ │ │ ├── DeliveryEnded.cs │ │ │ │ ├── DisplayPromotion.cs │ │ │ │ ├── DistributionAssignToTarget.cs │ │ │ │ ├── DistributionListResponse.cs │ │ │ │ ├── DistributionUpdate.cs │ │ │ │ ├── EnumVasPurchaseStatesResponse.cs │ │ │ │ ├── GetProductList.cs │ │ │ │ ├── GetPurchaseListQuery.cs │ │ │ │ ├── ProductListResponse.cs │ │ │ │ ├── PurchaseListResponse.cs │ │ │ │ ├── PurchaseUpdate.cs │ │ │ │ ├── StartPurchase.cs │ │ │ │ ├── StartPurchaseResponse.cs │ │ │ │ ├── SyncWowEntitlements.cs │ │ │ │ ├── UpdateVasPurchaseStates.cs │ │ │ │ ├── UpgradeStarted.cs │ │ │ │ ├── VasPurchase.cs │ │ │ │ └── _fixMe.cs │ │ │ ├── Calendar │ │ │ │ ├── CalendarAddEvent.cs │ │ │ │ ├── CalendarAddEventInfo.cs │ │ │ │ ├── CalendarAddEventInviteInfo.cs │ │ │ │ ├── CalendarClearPendingAction.cs │ │ │ │ ├── CalendarCommandResult.cs │ │ │ │ ├── CalendarCommunityInvite.cs │ │ │ │ ├── CalendarCommunityInviteRequest.cs │ │ │ │ ├── CalendarComplain.cs │ │ │ │ ├── CalendarCopyEvent.cs │ │ │ │ ├── CalendarEventInitialInviteInfo.cs │ │ │ │ ├── CalendarEventInviteInfo.cs │ │ │ │ ├── CalendarEventRemovedAlert.cs │ │ │ │ ├── CalendarEventSignUp.cs │ │ │ │ ├── CalendarEventUpdatedAlert.cs │ │ │ │ ├── CalendarGetCalendar.cs │ │ │ │ ├── CalendarGetEvent.cs │ │ │ │ ├── CalendarGetNumPending.cs │ │ │ │ ├── CalendarInviteAdded.cs │ │ │ │ ├── CalendarInviteAlert.cs │ │ │ │ ├── CalendarInviteNotes.cs │ │ │ │ ├── CalendarInviteNotesAlert.cs │ │ │ │ ├── CalendarInvitePkt.cs │ │ │ │ ├── CalendarInviteRemoved.cs │ │ │ │ ├── CalendarInviteRemovedAlert.cs │ │ │ │ ├── CalendarInviteStatusAlert.cs │ │ │ │ ├── CalendarInviteStatusPacket.cs │ │ │ │ ├── CalendarModeratorStatus.cs │ │ │ │ ├── CalendarModeratorStatusQuery.cs │ │ │ │ ├── CalendarRaidLockoutAdded.cs │ │ │ │ ├── CalendarRaidLockoutRemoved.cs │ │ │ │ ├── CalendarRaidLockoutUpdated.cs │ │ │ │ ├── CalendarRemoveEvent.cs │ │ │ │ ├── CalendarRemoveInvite.cs │ │ │ │ ├── CalendarSendCalendar.cs │ │ │ │ ├── CalendarSendCalendarEventInfo.cs │ │ │ │ ├── CalendarSendCalendarInviteInfo.cs │ │ │ │ ├── CalendarSendCalendarRaidLockoutInfo.cs │ │ │ │ ├── CalendarSendEvent.cs │ │ │ │ ├── CalendarSendNumPending.cs │ │ │ │ ├── CalendarStatus.cs │ │ │ │ ├── CalendarUpdateEvent.cs │ │ │ │ ├── CalendarUpdateEventInfo.cs │ │ │ │ ├── HandleCalendarRsvp.cs │ │ │ │ └── SetSavedInstanceExtend.cs │ │ │ ├── Channel │ │ │ │ ├── ChannelCommand.cs │ │ │ │ ├── ChannelListResponse.cs │ │ │ │ ├── ChannelNotify.cs │ │ │ │ ├── ChannelNotifyJoined.cs │ │ │ │ ├── ChannelNotifyLeft.cs │ │ │ │ ├── ChannelPassword.cs │ │ │ │ ├── ChannelPlayerCommand.cs │ │ │ │ ├── JoinChannel.cs │ │ │ │ ├── LeaveChannel.cs │ │ │ │ ├── UserlistAdd.cs │ │ │ │ ├── UserlistRemove.cs │ │ │ │ └── UserlistUpdate.cs │ │ │ ├── Character │ │ │ │ ├── AlterApperance.cs │ │ │ │ ├── BarberShopResult.cs │ │ │ │ ├── CharCustomize.cs │ │ │ │ ├── CharCustomizeFailure.cs │ │ │ │ ├── CharCustomizeInfo.cs │ │ │ │ ├── CharCustomizeSuccess.cs │ │ │ │ ├── CharDelete.cs │ │ │ │ ├── CharFactionChangeResult.cs │ │ │ │ ├── CharRaceOrFactionChange.cs │ │ │ │ ├── CharRaceOrFactionChangeInfo.cs │ │ │ │ ├── CharacterCreateInfo.cs │ │ │ │ ├── CharacterLoginFailed.cs │ │ │ │ ├── CharacterRenameInfo.cs │ │ │ │ ├── CharacterRenameRequest.cs │ │ │ │ ├── CharacterRenameResult.cs │ │ │ │ ├── CharacterUndeleteInfo.cs │ │ │ │ ├── CheckCharacterNameAvailability.cs │ │ │ │ ├── CheckCharacterNameAvailabilityResult.cs │ │ │ │ ├── CreateChar.cs │ │ │ │ ├── CreateCharacter.cs │ │ │ │ ├── DeleteChar.cs │ │ │ │ ├── EnumCharacters.cs │ │ │ │ ├── EnumCharactersResult.cs │ │ │ │ ├── GenerateRandomCharacterName.cs │ │ │ │ ├── GenerateRandomCharacterNameResult.cs │ │ │ │ ├── GetUndeleteCharacterCooldownStatus.cs │ │ │ │ ├── InitialSetup.cs │ │ │ │ ├── LoadingScreenNotify.cs │ │ │ │ ├── LogXPGain.cs │ │ │ │ ├── LoginVerifyWorld.cs │ │ │ │ ├── LogoutCancel.cs │ │ │ │ ├── LogoutCancelAck.cs │ │ │ │ ├── LogoutComplete.cs │ │ │ │ ├── LogoutRequest.cs │ │ │ │ ├── LogoutResponse.cs │ │ │ │ ├── OverrideScreenFlash.cs │ │ │ │ ├── PlayedTime.cs │ │ │ │ ├── PlayerLogin.cs │ │ │ │ ├── QuickJoinAutoAcceptRequest.cs │ │ │ │ ├── ReorderCharacters.cs │ │ │ │ ├── RequestPlayedTime.cs │ │ │ │ ├── SetActionBarToggles.cs │ │ │ │ ├── SetFactionAtWar.cs │ │ │ │ ├── SetFactionInactive.cs │ │ │ │ ├── SetFactionNotAtWar.cs │ │ │ │ ├── SetFactionVisible.cs │ │ │ │ ├── SetPlayerDeclinedNames.cs │ │ │ │ ├── SetPlayerDeclinedNamesResult.cs │ │ │ │ ├── SetTitle.cs │ │ │ │ ├── SetWatchedFaction.cs │ │ │ │ ├── TitleEarned.cs │ │ │ │ ├── UndeleteCharacter.cs │ │ │ │ ├── UndeleteCharacterResponse.cs │ │ │ │ └── UndeleteCooldownStatusResponse.cs │ │ │ ├── Chat │ │ │ │ ├── CTextEmote.cs │ │ │ │ ├── ChatAddonMessage.cs │ │ │ │ ├── ChatAddonMessageParams.cs │ │ │ │ ├── ChatAddonMessageTargeted.cs │ │ │ │ ├── ChatMessage.cs │ │ │ │ ├── ChatMessageAFK.cs │ │ │ │ ├── ChatMessageChannel.cs │ │ │ │ ├── ChatMessageDND.cs │ │ │ │ ├── ChatMessageEmote.cs │ │ │ │ ├── ChatMessageWhisper.cs │ │ │ │ ├── ChatPkt.cs │ │ │ │ ├── ChatPlayerAmbiguous.cs │ │ │ │ ├── ChatPlayerNotfound.cs │ │ │ │ ├── ChatRegisterAddonPrefixes.cs │ │ │ │ ├── ChatReportIgnored.cs │ │ │ │ ├── ChatRestricted.cs │ │ │ │ ├── ChatServerMessage.cs │ │ │ │ ├── ChatUnregisterAllAddonPrefixes.cs │ │ │ │ ├── DefenseMessage.cs │ │ │ │ ├── EmoteClient.cs │ │ │ │ ├── EmoteMessage.cs │ │ │ │ ├── PrintNotification.cs │ │ │ │ └── STextEmote.cs │ │ │ ├── ClientConfig │ │ │ │ ├── AccountDataTimes.cs │ │ │ │ ├── ClientCacheVersion.cs │ │ │ │ ├── RequestAccountData.cs │ │ │ │ ├── SetAdvancedCombatLogging.cs │ │ │ │ ├── UpdateAccountData.cs │ │ │ │ └── UserClientUpdateAccountData.cs │ │ │ ├── Collection │ │ │ │ ├── CollectionItemSetFavorite.cs │ │ │ │ └── CollectionType.cs │ │ │ ├── Combat │ │ │ │ ├── AIReaction.cs │ │ │ │ ├── AttackStart.cs │ │ │ │ ├── AttackStop.cs │ │ │ │ ├── AttackSwing.cs │ │ │ │ ├── AttackSwingError.cs │ │ │ │ ├── BreakTarget.cs │ │ │ │ ├── CancelAutoRepeat.cs │ │ │ │ ├── CancelCombat.cs │ │ │ │ ├── HealthUpdate.cs │ │ │ │ ├── HighestThreatUpdate.cs │ │ │ │ ├── PowerUpdate.cs │ │ │ │ ├── PowerUpdatePower.cs │ │ │ │ ├── PvPCredit.cs │ │ │ │ ├── SAttackStop.cs │ │ │ │ ├── SetSheathed.cs │ │ │ │ ├── ThreatClear.cs │ │ │ │ ├── ThreatInfo.cs │ │ │ │ ├── ThreatRemove.cs │ │ │ │ └── ThreatUpdate.cs │ │ │ ├── CombatLog │ │ │ │ ├── AttackerStateUpdate.cs │ │ │ │ ├── CombatLogServerPacket.cs │ │ │ │ ├── EnvironmentalDamageLog.cs │ │ │ │ ├── ProcResist.cs │ │ │ │ ├── SpellAbsorbLog.cs │ │ │ │ ├── SpellDamageShield.cs │ │ │ │ ├── SpellDispellData.cs │ │ │ │ ├── SpellDispellLog.cs │ │ │ │ ├── SpellEnergizeLog.cs │ │ │ │ ├── SpellExecuteLog.cs │ │ │ │ ├── SpellHealAbsorbLog.cs │ │ │ │ ├── SpellHealLog.cs │ │ │ │ ├── SpellInstakillLog.cs │ │ │ │ ├── SpellInterruptLog.cs │ │ │ │ ├── SpellLogEffectDurabilityDamageParams.cs │ │ │ │ ├── SpellLogEffectExtraAttacksParams.cs │ │ │ │ ├── SpellLogEffectFeedPetParams.cs │ │ │ │ ├── SpellLogEffectGenericVictimParams.cs │ │ │ │ ├── SpellLogEffectPowerDrainParams.cs │ │ │ │ ├── SpellLogEffectTradeSkillItemParams.cs │ │ │ │ ├── SpellLogMissDebug.cs │ │ │ │ ├── SpellLogMissEntry.cs │ │ │ │ ├── SpellMissLog.cs │ │ │ │ ├── SpellNonMeleeDamageLog.cs │ │ │ │ ├── SpellOrDamageImmune.cs │ │ │ │ ├── SpellPeriodicAuraLog.cs │ │ │ │ ├── SubDamage.cs │ │ │ │ └── UnkAttackerState.cs │ │ │ ├── Crafting │ │ │ │ ├── CraftingData.cs │ │ │ │ └── SpellReducedReagent.cs │ │ │ ├── Duel │ │ │ │ ├── CanDuel.cs │ │ │ │ ├── CanDuelResult.cs │ │ │ │ ├── DuelComplete.cs │ │ │ │ ├── DuelCountdown.cs │ │ │ │ ├── DuelInBounds.cs │ │ │ │ ├── DuelOutOfBounds.cs │ │ │ │ ├── DuelRequested.cs │ │ │ │ ├── DuelResponse.cs │ │ │ │ └── DuelWinner.cs │ │ │ ├── Equipment │ │ │ │ ├── DeleteEquipmentSet.cs │ │ │ │ ├── EquipmentSetID.cs │ │ │ │ ├── LoadEquipmentSet.cs │ │ │ │ ├── SaveEquipmentSet.cs │ │ │ │ ├── UseEquipmentSet.cs │ │ │ │ └── UseEquipmentSetResult.cs │ │ │ ├── GameObject │ │ │ │ ├── DestructibleBuildingDamage.cs │ │ │ │ ├── FishEscaped.cs │ │ │ │ ├── FishNotHooked.cs │ │ │ │ ├── GameObjReportUse.cs │ │ │ │ ├── GameObjUse.cs │ │ │ │ ├── GameObjectActivateAnimKit.cs │ │ │ │ ├── GameObjectCloseInteraction.cs │ │ │ │ ├── GameObjectCustomAnim.cs │ │ │ │ ├── GameObjectDespawn.cs │ │ │ │ ├── GameObjectInteraction.cs │ │ │ │ ├── GameObjectPlaySpellVisual.cs │ │ │ │ ├── GameObjectSetStateLocal.cs │ │ │ │ └── PageTextPkt.cs │ │ │ ├── Garrison │ │ │ │ ├── FollowerSoftCapInfo.cs │ │ │ │ ├── GarrisonAddFollowerResult.cs │ │ │ │ ├── GarrisonBuildingActivated.cs │ │ │ │ ├── GarrisonBuildingInfo.cs │ │ │ │ ├── GarrisonBuildingMapData.cs │ │ │ │ ├── GarrisonBuildingRemoved.cs │ │ │ │ ├── GarrisonCancelConstruction.cs │ │ │ │ ├── GarrisonCollection.cs │ │ │ │ ├── GarrisonCollectionEntry.cs │ │ │ │ ├── GarrisonCreateResult.cs │ │ │ │ ├── GarrisonDeleteResult.cs │ │ │ │ ├── GarrisonEncounter.cs │ │ │ │ ├── GarrisonEventEntry.cs │ │ │ │ ├── GarrisonEventList.cs │ │ │ │ ├── GarrisonFollower.cs │ │ │ │ ├── GarrisonGetMapData.cs │ │ │ │ ├── GarrisonInfo.cs │ │ │ │ ├── GarrisonLearnBlueprintResult.cs │ │ │ │ ├── GarrisonMapDataResponse.cs │ │ │ │ ├── GarrisonMission.cs │ │ │ │ ├── GarrisonMissionBonusAbility.cs │ │ │ │ ├── GarrisonMissionReward.cs │ │ │ │ ├── GarrisonPlaceBuildingResult.cs │ │ │ │ ├── GarrisonPlotInfo.cs │ │ │ │ ├── GarrisonPlotPlaced.cs │ │ │ │ ├── GarrisonPlotRemoved.cs │ │ │ │ ├── GarrisonPurchaseBuilding.cs │ │ │ │ ├── GarrisonRemoteBuildingInfo.cs │ │ │ │ ├── GarrisonRemoteInfo.cs │ │ │ │ ├── GarrisonRemoteSiteInfo.cs │ │ │ │ ├── GarrisonRemoveFollowerResult.cs │ │ │ │ ├── GarrisonRequestBlueprintAndSpecializationData.cs │ │ │ │ ├── GarrisonRequestBlueprintAndSpecializationDataResult.cs │ │ │ │ ├── GarrisonSpecGroup.cs │ │ │ │ ├── GarrisonTalent.cs │ │ │ │ ├── GarrisonTalentSocketData.cs │ │ │ │ ├── GarrisonUnlearnBlueprintResult.cs │ │ │ │ ├── GetGarrisonInfo.cs │ │ │ │ └── GetGarrisonInfoResult.cs │ │ │ ├── Guild │ │ │ │ ├── AcceptGuildInvite.cs │ │ │ │ ├── AutoGuildBankItem.cs │ │ │ │ ├── AutoStoreGuildBankItem.cs │ │ │ │ ├── DeclineGuildInvites.cs │ │ │ │ ├── GuildAddRank.cs │ │ │ │ ├── GuildAssignMemberRank.cs │ │ │ │ ├── GuildBankActivate.cs │ │ │ │ ├── GuildBankBuyTab.cs │ │ │ │ ├── GuildBankDepositMoney.cs │ │ │ │ ├── GuildBankItemInfo.cs │ │ │ │ ├── GuildBankLogEntry.cs │ │ │ │ ├── GuildBankLogQuery.cs │ │ │ │ ├── GuildBankLogQueryResults.cs │ │ │ │ ├── GuildBankQueryResults.cs │ │ │ │ ├── GuildBankQueryTab.cs │ │ │ │ ├── GuildBankRemainingWithdrawMoney.cs │ │ │ │ ├── GuildBankRemainingWithdrawMoneyQuery.cs │ │ │ │ ├── GuildBankSetTabText.cs │ │ │ │ ├── GuildBankTabInfo.cs │ │ │ │ ├── GuildBankTextQuery.cs │ │ │ │ ├── GuildBankTextQueryResult.cs │ │ │ │ ├── GuildBankUpdateTab.cs │ │ │ │ ├── GuildBankWithdrawMoney.cs │ │ │ │ ├── GuildChallengeUpdate.cs │ │ │ │ ├── GuildChallengeUpdateRequest.cs │ │ │ │ ├── GuildChangeNameRequest.cs │ │ │ │ ├── GuildCommandResult.cs │ │ │ │ ├── GuildDeclineInvitation.cs │ │ │ │ ├── GuildDelete.cs │ │ │ │ ├── GuildDeleteRank.cs │ │ │ │ ├── GuildDemoteMember.cs │ │ │ │ ├── GuildEventBankContentsChanged.cs │ │ │ │ ├── GuildEventBankMoneyChanged.cs │ │ │ │ ├── GuildEventDisbanded.cs │ │ │ │ ├── GuildEventEntry.cs │ │ │ │ ├── GuildEventLogQuery.cs │ │ │ │ ├── GuildEventLogQueryResults.cs │ │ │ │ ├── GuildEventMotd.cs │ │ │ │ ├── GuildEventNewLeader.cs │ │ │ │ ├── GuildEventPlayerJoined.cs │ │ │ │ ├── GuildEventPlayerLeft.cs │ │ │ │ ├── GuildEventPresenceChange.cs │ │ │ │ ├── GuildEventRankChanged.cs │ │ │ │ ├── GuildEventRanksUpdated.cs │ │ │ │ ├── GuildEventStatusChange.cs │ │ │ │ ├── GuildEventTabAdded.cs │ │ │ │ ├── GuildEventTabModified.cs │ │ │ │ ├── GuildEventTabTextChanged.cs │ │ │ │ ├── GuildFlaggedForRename.cs │ │ │ │ ├── GuildGetRanks.cs │ │ │ │ ├── GuildGetRoster.cs │ │ │ │ ├── GuildInvite.cs │ │ │ │ ├── GuildInviteByName.cs │ │ │ │ ├── GuildLeave.cs │ │ │ │ ├── GuildMemberDailyReset.cs │ │ │ │ ├── GuildMemberUpdateNote.cs │ │ │ │ ├── GuildNameChanged.cs │ │ │ │ ├── GuildNewsEvent.cs │ │ │ │ ├── GuildNewsPkt.cs │ │ │ │ ├── GuildNewsUpdateSticky.cs │ │ │ │ ├── GuildOfficerRemoveMember.cs │ │ │ │ ├── GuildPartyState.cs │ │ │ │ ├── GuildPermissionsQuery.cs │ │ │ │ ├── GuildPermissionsQueryResults.cs │ │ │ │ ├── GuildPromoteMember.cs │ │ │ │ ├── GuildQueryNews.cs │ │ │ │ ├── GuildRankData.cs │ │ │ │ ├── GuildRanks.cs │ │ │ │ ├── GuildReplaceGuildMaster.cs │ │ │ │ ├── GuildRewardItem.cs │ │ │ │ ├── GuildRewardList.cs │ │ │ │ ├── GuildRoster.cs │ │ │ │ ├── GuildRosterMemberData.cs │ │ │ │ ├── GuildRosterProfessionData.cs │ │ │ │ ├── GuildRosterUpdate.cs │ │ │ │ ├── GuildSendRankChange.cs │ │ │ │ ├── GuildSetAchievementTracking.cs │ │ │ │ ├── GuildSetGuildMaster.cs │ │ │ │ ├── GuildSetMemberNote.cs │ │ │ │ ├── GuildSetRankPermissions.cs │ │ │ │ ├── GuildShiftRank.cs │ │ │ │ ├── GuildUpdateInfoText.cs │ │ │ │ ├── GuildUpdateMotdText.cs │ │ │ │ ├── MergeGuildBankItemWithGuildBankItem.cs │ │ │ │ ├── MergeGuildBankItemWithItem.cs │ │ │ │ ├── MergeItemWithGuildBankItem.cs │ │ │ │ ├── MoveGuildBankItem.cs │ │ │ │ ├── PlayerSaveGuildEmblem.cs │ │ │ │ ├── QueryGuildInfo.cs │ │ │ │ ├── QueryGuildInfoResponse.cs │ │ │ │ ├── RequestGuildPartyState.cs │ │ │ │ ├── RequestGuildRewardsList.cs │ │ │ │ ├── SaveGuildEmblem.cs │ │ │ │ ├── SplitGuildBankItem.cs │ │ │ │ ├── SplitGuildBankItemToInventory.cs │ │ │ │ ├── SplitItemToGuildBank.cs │ │ │ │ ├── StoreGuildBankItem.cs │ │ │ │ ├── SwapGuildBankItemWithGuildBankItem.cs │ │ │ │ └── SwapItemWithGuildBankItem.cs │ │ │ ├── Hotfix │ │ │ │ ├── AvailableHotfixes.cs │ │ │ │ ├── DBQueryBulk.cs │ │ │ │ ├── DBReply.cs │ │ │ │ ├── HotfixConnect.cs │ │ │ │ └── HotfixRequest.cs │ │ │ ├── Inspect │ │ │ │ ├── AzeriteEssenceData.cs │ │ │ │ ├── Inspect.cs │ │ │ │ ├── InspectEnchantData.cs │ │ │ │ ├── InspectGuildData.cs │ │ │ │ ├── InspectItemData.cs │ │ │ │ ├── InspectResult.cs │ │ │ │ ├── PVPBracketData.cs │ │ │ │ ├── PlayerModelDisplayInfo.cs │ │ │ │ ├── QueryInspectAchievements.cs │ │ │ │ └── TraitInspectInfo.cs │ │ │ ├── Instance │ │ │ │ ├── BossKill.cs │ │ │ │ ├── InstanceEncounterChangePriority.cs │ │ │ │ ├── InstanceEncounterDisengageUnit.cs │ │ │ │ ├── InstanceEncounterEnd.cs │ │ │ │ ├── InstanceEncounterEngageUnit.cs │ │ │ │ ├── InstanceEncounterGainCombatResurrectionCharge.cs │ │ │ │ ├── InstanceEncounterInCombatResurrection.cs │ │ │ │ ├── InstanceEncounterStart.cs │ │ │ │ ├── InstanceInfoPkt.cs │ │ │ │ ├── InstanceLockPkt.cs │ │ │ │ ├── InstanceLockResponse.cs │ │ │ │ ├── InstanceReset.cs │ │ │ │ ├── InstanceResetFailed.cs │ │ │ │ ├── InstanceSaveCreated.cs │ │ │ │ ├── PendingRaidLock.cs │ │ │ │ ├── RaidGroupOnly.cs │ │ │ │ ├── RaidInstanceMessage.cs │ │ │ │ ├── ResetFailedNotify.cs │ │ │ │ ├── ResetInstances.cs │ │ │ │ └── UpdateLastInstance.cs │ │ │ ├── Item │ │ │ │ ├── AutoEquipItem.cs │ │ │ │ ├── AutoEquipItemSlot.cs │ │ │ │ ├── AutoStoreBagItem.cs │ │ │ │ ├── BagCleanupFinished.cs │ │ │ │ ├── BuyBackItem.cs │ │ │ │ ├── BuyFailed.cs │ │ │ │ ├── BuyItem.cs │ │ │ │ ├── BuySucceeded.cs │ │ │ │ ├── CancelTempEnchantment.cs │ │ │ │ ├── DestroyItem.cs │ │ │ │ ├── EnchantmentLog.cs │ │ │ │ ├── GetItemPurchaseData.cs │ │ │ │ ├── InvUpdate.cs │ │ │ │ ├── InventoryChangeFailure.cs │ │ │ │ ├── InventoryFullOverflow.cs │ │ │ │ ├── ItemBonusKey.cs │ │ │ │ ├── ItemBonuses.cs │ │ │ │ ├── ItemCooldown.cs │ │ │ │ ├── ItemEnchantData.cs │ │ │ │ ├── ItemEnchantTimeUpdate.cs │ │ │ │ ├── ItemExpirePurchaseRefund.cs │ │ │ │ ├── ItemGemData.cs │ │ │ │ ├── ItemInstance.cs │ │ │ │ ├── ItemMod.cs │ │ │ │ ├── ItemModList.cs │ │ │ │ ├── ItemPurchaseContents.cs │ │ │ │ ├── ItemPurchaseRefund.cs │ │ │ │ ├── ItemPurchaseRefundCurrency.cs │ │ │ │ ├── ItemPurchaseRefundItem.cs │ │ │ │ ├── ItemPurchaseRefundResult.cs │ │ │ │ ├── ItemPushResult.cs │ │ │ │ ├── ItemTimeUpdate.cs │ │ │ │ ├── ReadItem.cs │ │ │ │ ├── ReadItemResultFailed.cs │ │ │ │ ├── ReadItemResultOK.cs │ │ │ │ ├── RemoveNewItem.cs │ │ │ │ ├── RepairItem.cs │ │ │ │ ├── SellItem.cs │ │ │ │ ├── SellResponse.cs │ │ │ │ ├── SetItemPurchaseData.cs │ │ │ │ ├── SetProficiency.cs │ │ │ │ ├── SocketGems.cs │ │ │ │ ├── SocketGemsSuccess.cs │ │ │ │ ├── SortBags.cs │ │ │ │ ├── SortBankBags.cs │ │ │ │ ├── SortReagentBankBags.cs │ │ │ │ ├── SplitItem.cs │ │ │ │ ├── SwapInvItem.cs │ │ │ │ ├── SwapItem.cs │ │ │ │ ├── UiEventToast.cs │ │ │ │ ├── UseCritterItem.cs │ │ │ │ └── WrapItem.cs │ │ │ ├── LFG │ │ │ │ ├── DFBootPlayerVote.cs │ │ │ │ ├── DFGetJoinStatus.cs │ │ │ │ ├── DFGetSystemInfo.cs │ │ │ │ ├── DFJoin.cs │ │ │ │ ├── DFLeave.cs │ │ │ │ ├── DFProposalResponse.cs │ │ │ │ ├── DFSetRoles.cs │ │ │ │ ├── DFTeleport.cs │ │ │ │ ├── LFGBlackList.cs │ │ │ │ ├── LFGBlackListPkt.cs │ │ │ │ ├── LFGBlackListSlot.cs │ │ │ │ ├── LFGJoinResult.cs │ │ │ │ ├── LFGPlayerReward.cs │ │ │ │ ├── LFGPlayerRewards.cs │ │ │ │ ├── LFGProposalUpdate.cs │ │ │ │ ├── LFGProposalUpdatePlayer.cs │ │ │ │ ├── LFGQueueStatus.cs │ │ │ │ ├── LFGRoleCheckUpdate.cs │ │ │ │ ├── LFGRoleCheckUpdateMember.cs │ │ │ │ ├── LFGUpdateStatus.cs │ │ │ │ ├── LfgBootInfo.cs │ │ │ │ ├── LfgBootPlayer.cs │ │ │ │ ├── LfgDisabled.cs │ │ │ │ ├── LfgOfferContinue.cs │ │ │ │ ├── LfgPartyInfo.cs │ │ │ │ ├── LfgPlayerDungeonInfo.cs │ │ │ │ ├── LfgPlayerInfo.cs │ │ │ │ ├── LfgPlayerQuestReward.cs │ │ │ │ ├── LfgPlayerQuestRewardCurrency.cs │ │ │ │ ├── LfgPlayerQuestRewardItem.cs │ │ │ │ ├── LfgTeleportDenied.cs │ │ │ │ ├── RideTicket.cs │ │ │ │ ├── RideType.cs │ │ │ │ └── RoleChosen.cs │ │ │ ├── Loot │ │ │ │ ├── AELootTargets.cs │ │ │ │ ├── AELootTargetsAck.cs │ │ │ │ ├── CoinRemoved.cs │ │ │ │ ├── LootAllPassed.cs │ │ │ │ ├── LootCurrency.cs │ │ │ │ ├── LootItemData.cs │ │ │ │ ├── LootItemPkt.cs │ │ │ │ ├── LootList.cs │ │ │ │ ├── LootMoney.cs │ │ │ │ ├── LootMoneyNotify.cs │ │ │ │ ├── LootRelease.cs │ │ │ │ ├── LootReleaseAll.cs │ │ │ │ ├── LootReleaseResponse.cs │ │ │ │ ├── LootRemoved.cs │ │ │ │ ├── LootRequest.cs │ │ │ │ ├── LootResponse.cs │ │ │ │ ├── LootRollBroadcast.cs │ │ │ │ ├── LootRollPacket.cs │ │ │ │ ├── LootRollWon.cs │ │ │ │ ├── LootRollsComplete.cs │ │ │ │ ├── LootUnit.cs │ │ │ │ ├── MasterLootCandidateList.cs │ │ │ │ ├── MasterLootItem.cs │ │ │ │ ├── SetLootSpecialization.cs │ │ │ │ └── StartLootRoll.cs │ │ │ ├── Mail │ │ │ │ ├── MailAttachedItem.cs │ │ │ │ ├── MailCommandResult.cs │ │ │ │ ├── MailCreateTextItem.cs │ │ │ │ ├── MailDelete.cs │ │ │ │ ├── MailGetList.cs │ │ │ │ ├── MailListEntry.cs │ │ │ │ ├── MailListResult.cs │ │ │ │ ├── MailMarkAsRead.cs │ │ │ │ ├── MailQueryNextMailTime.cs │ │ │ │ ├── MailQueryNextTimeResult.cs │ │ │ │ ├── MailReturnToSender.cs │ │ │ │ ├── MailTakeItem.cs │ │ │ │ ├── MailTakeMoney.cs │ │ │ │ ├── NotifyReceivedMail.cs │ │ │ │ └── SendMail.cs │ │ │ ├── Misc │ │ │ │ ├── AccountHeirloomUpdate.cs │ │ │ │ ├── AccountMountUpdate.cs │ │ │ │ ├── BindPointUpdate.cs │ │ │ │ ├── CloseInteraction.cs │ │ │ │ ├── CompleteCinematic.cs │ │ │ │ ├── CompleteMovie.cs │ │ │ │ ├── ConversationLineStarted.cs │ │ │ │ ├── CorpseReclaimDelay.cs │ │ │ │ ├── CrossedInebriationThreshold.cs │ │ │ │ ├── DeathReleaseLoc.cs │ │ │ │ ├── DisplayGameError.cs │ │ │ │ ├── DisplayToast.cs │ │ │ │ ├── DungeonDifficultySet.cs │ │ │ │ ├── DurabilityDamageDeath.cs │ │ │ │ ├── EnableBarberShop.cs │ │ │ │ ├── ExplorationExperience.cs │ │ │ │ ├── FarSight.cs │ │ │ │ ├── InvalidatePlayer.cs │ │ │ │ ├── LevelUpInfo.cs │ │ │ │ ├── LoadCUFProfiles.cs │ │ │ │ ├── LoginSetTimeSpeed.cs │ │ │ │ ├── MountSetFavorite.cs │ │ │ │ ├── MountSpecial.cs │ │ │ │ ├── NextCinematicCamera.cs │ │ │ │ ├── ObjectUpdateFailed.cs │ │ │ │ ├── ObjectUpdateRescued.cs │ │ │ │ ├── OpeningCinematic.cs │ │ │ │ ├── OverrideLight.cs │ │ │ │ ├── PauseMirrorTimer.cs │ │ │ │ ├── PhaseShiftChange.cs │ │ │ │ ├── PhaseShiftData.cs │ │ │ │ ├── PhaseShiftDataPhase.cs │ │ │ │ ├── PlayMusic.cs │ │ │ │ ├── PlayObjectSound.cs │ │ │ │ ├── PlayOneShotAnimKit.cs │ │ │ │ ├── PlaySound.cs │ │ │ │ ├── PlaySpeakerBoxSound.cs │ │ │ │ ├── PlayerBound.cs │ │ │ │ ├── PortGraveyard.cs │ │ │ │ ├── PreRessurect.cs │ │ │ │ ├── RaidDifficultySet.cs │ │ │ │ ├── RandomRoll.cs │ │ │ │ ├── RandomRollClient.cs │ │ │ │ ├── ReclaimCorpse.cs │ │ │ │ ├── RepopRequest.cs │ │ │ │ ├── RequestCemeteryList.cs │ │ │ │ ├── RequestCemeteryListResponse.cs │ │ │ │ ├── RequestLatestSplashScreen.cs │ │ │ │ ├── ResetWeeklyCurrency.cs │ │ │ │ ├── ResurrectResponse.cs │ │ │ │ ├── SaveCUFProfiles.cs │ │ │ │ ├── ServerTimeOffset.cs │ │ │ │ ├── ServerTimeOffsetRequest.cs │ │ │ │ ├── SetAIAnimKit.cs │ │ │ │ ├── SetAnimTier.cs │ │ │ │ ├── SetCurrency.cs │ │ │ │ ├── SetDungeonDifficulty.cs │ │ │ │ ├── SetMaxWeeklyQuantity.cs │ │ │ │ ├── SetMeleeAnimKit.cs │ │ │ │ ├── SetMovementAnimKit.cs │ │ │ │ ├── SetPlayHoverAnim.cs │ │ │ │ ├── SetPvP.cs │ │ │ │ ├── SetRaidDifficulty.cs │ │ │ │ ├── SetSelection.cs │ │ │ │ ├── SetTaxiBenchmarkMode.cs │ │ │ │ ├── SetWarMode.cs │ │ │ │ ├── SetupCurrency.cs │ │ │ │ ├── SpecialMountAnim.cs │ │ │ │ ├── SplashScreenShowLatest.cs │ │ │ │ ├── StandStateChange.cs │ │ │ │ ├── StandStateUpdate.cs │ │ │ │ ├── StartMirrorTimer.cs │ │ │ │ ├── StartTimer.cs │ │ │ │ ├── StopMirrorTimer.cs │ │ │ │ ├── TimeSyncRequest.cs │ │ │ │ ├── TimeSyncResponse.cs │ │ │ │ ├── TogglePvP.cs │ │ │ │ ├── TriggerCinematic.cs │ │ │ │ ├── TriggerMovie.cs │ │ │ │ ├── TutorialFlags.cs │ │ │ │ ├── TutorialSetFlag.cs │ │ │ │ ├── ViolenceLevel.cs │ │ │ │ ├── WeatherPkt.cs │ │ │ │ ├── WorldServerInfo.cs │ │ │ │ └── ZoneUnderAttack.cs │ │ │ ├── Movement │ │ │ │ ├── ClientPlayerMovement.cs │ │ │ │ ├── ControlUpdate.cs │ │ │ │ ├── FlightSplineSync.cs │ │ │ │ ├── MonsterMove.cs │ │ │ │ ├── MonsterSplineAnimTierTransition.cs │ │ │ │ ├── MonsterSplineFilter.cs │ │ │ │ ├── MonsterSplineFilterKey.cs │ │ │ │ ├── MonsterSplineJumpExtraData.cs │ │ │ │ ├── MonsterSplineSpellEffectExtraData.cs │ │ │ │ ├── MonsterSplineUnknown901.cs │ │ │ │ ├── MoveApplyMovementForce.cs │ │ │ │ ├── MoveApplyMovementForceAck.cs │ │ │ │ ├── MoveInitActiveMoverComplete.cs │ │ │ │ ├── MoveKnockBack.cs │ │ │ │ ├── MoveKnockBackAck.cs │ │ │ │ ├── MoveKnockBackSpeeds.cs │ │ │ │ ├── MoveRemoveMovementForce.cs │ │ │ │ ├── MoveRemoveMovementForceAck.cs │ │ │ │ ├── MoveSetActiveMover.cs │ │ │ │ ├── MoveSetCollisionHeight.cs │ │ │ │ ├── MoveSetCollisionHeightAck.cs │ │ │ │ ├── MoveSetCompoundState.cs │ │ │ │ ├── MoveSetFlag.cs │ │ │ │ ├── MoveSetSpeed.cs │ │ │ │ ├── MoveSkipTime.cs │ │ │ │ ├── MoveSplineDone.cs │ │ │ │ ├── MoveSplineSetFlag.cs │ │ │ │ ├── MoveSplineSetSpeed.cs │ │ │ │ ├── MoveTeleport.cs │ │ │ │ ├── MoveTeleportAck.cs │ │ │ │ ├── MoveTimeSkipped.cs │ │ │ │ ├── MoveUpdate.cs │ │ │ │ ├── MoveUpdateApplyMovementForce.cs │ │ │ │ ├── MoveUpdateCollisionHeight.cs │ │ │ │ ├── MoveUpdateKnockBack.cs │ │ │ │ ├── MoveUpdateRemoveMovementForce.cs │ │ │ │ ├── MoveUpdateSpeed.cs │ │ │ │ ├── MoveUpdateTeleport.cs │ │ │ │ ├── MovementAck.cs │ │ │ │ ├── MovementAckMessage.cs │ │ │ │ ├── MovementExtensions.cs │ │ │ │ ├── MovementMonsterSpline.cs │ │ │ │ ├── MovementSpeedAck.cs │ │ │ │ ├── MovementSpline.cs │ │ │ │ ├── NewWorld.cs │ │ │ │ ├── ResumeToken.cs │ │ │ │ ├── SetActiveMover.cs │ │ │ │ ├── SummonRequest.cs │ │ │ │ ├── SummonResponse.cs │ │ │ │ ├── SuspendToken.cs │ │ │ │ ├── SuspendTokenResponse.cs │ │ │ │ ├── TeleportLocation.cs │ │ │ │ ├── TransferAborted.cs │ │ │ │ ├── TransferPending.cs │ │ │ │ ├── VehicleTeleport.cs │ │ │ │ └── WorldPortResponse.cs │ │ │ ├── MythicPlus │ │ │ │ ├── DungeonScoreBestRunForAffix.cs │ │ │ │ ├── DungeonScoreData.cs │ │ │ │ ├── DungeonScoreMapData.cs │ │ │ │ ├── DungeonScoreMapSummary.cs │ │ │ │ ├── DungeonScoreSeasonData.cs │ │ │ │ ├── DungeonScoreSummary.cs │ │ │ │ ├── MythicPlusMember.cs │ │ │ │ ├── MythicPlusRun.cs │ │ │ │ └── MythicPlusSeasonData.cs │ │ │ ├── NPC │ │ │ │ ├── ClientGossipOptions.cs │ │ │ │ ├── ClientGossipText.cs │ │ │ │ ├── GossipComplete.cs │ │ │ │ ├── GossipMessagePkt.cs │ │ │ │ ├── GossipOptionNPCInteraction.cs │ │ │ │ ├── GossipPOI.cs │ │ │ │ ├── GossipSelectOption.cs │ │ │ │ ├── Hello.cs │ │ │ │ ├── NPCInteractionOpenResult.cs │ │ │ │ ├── RequestStabledPets.cs │ │ │ │ ├── SetPetSlot.cs │ │ │ │ ├── SpiritHealerActivate.cs │ │ │ │ ├── TrainerBuyFailed.cs │ │ │ │ ├── TrainerBuySpell.cs │ │ │ │ ├── TrainerList.cs │ │ │ │ ├── TrainerListSpell.cs │ │ │ │ ├── TreasureItem.cs │ │ │ │ ├── TreasureLootList.cs │ │ │ │ ├── VendorInventory.cs │ │ │ │ └── VendorItemPkt.cs │ │ │ ├── Party │ │ │ │ ├── BroadcastSummonCast.cs │ │ │ │ ├── BroadcastSummonResponse.cs │ │ │ │ ├── CTROptions.cs │ │ │ │ ├── ChangeSubGroup.cs │ │ │ │ ├── ClearRaidMarker.cs │ │ │ │ ├── ConvertRaid.cs │ │ │ │ ├── DoReadyCheck.cs │ │ │ │ ├── GroupDecline.cs │ │ │ │ ├── GroupDestroyed.cs │ │ │ │ ├── GroupNewLeader.cs │ │ │ │ ├── GroupUninvite.cs │ │ │ │ ├── InitiateRolePoll.cs │ │ │ │ ├── LeaveGroup.cs │ │ │ │ ├── MinimapPing.cs │ │ │ │ ├── MinimapPingClient.cs │ │ │ │ ├── OptOutOfLoot.cs │ │ │ │ ├── PartyCommandResult.cs │ │ │ │ ├── PartyDifficultySettings.cs │ │ │ │ ├── PartyInvite.cs │ │ │ │ ├── PartyInviteClient.cs │ │ │ │ ├── PartyInviteResponse.cs │ │ │ │ ├── PartyKillLog.cs │ │ │ │ ├── PartyLFGInfo.cs │ │ │ │ ├── PartyLootSettings.cs │ │ │ │ ├── PartyMemberAuraStates.cs │ │ │ │ ├── PartyMemberFullState.cs │ │ │ │ ├── PartyMemberPetStats.cs │ │ │ │ ├── PartyMemberPhase.cs │ │ │ │ ├── PartyMemberPhaseStates.cs │ │ │ │ ├── PartyMemberStats.cs │ │ │ │ ├── PartyPlayerInfo.cs │ │ │ │ ├── PartyUninvite.cs │ │ │ │ ├── PartyUpdate.cs │ │ │ │ ├── RaidMarkersChanged.cs │ │ │ │ ├── ReadyCheckCompleted.cs │ │ │ │ ├── ReadyCheckResponse.cs │ │ │ │ ├── ReadyCheckResponseClient.cs │ │ │ │ ├── ReadyCheckStarted.cs │ │ │ │ ├── RequestPartyJoinUpdates.cs │ │ │ │ ├── RequestPartyMemberStats.cs │ │ │ │ ├── RequestRaidInfo.cs │ │ │ │ ├── RoleChangedInform.cs │ │ │ │ ├── RolePollInform.cs │ │ │ │ ├── SendRaidTargetUpdateAll.cs │ │ │ │ ├── SendRaidTargetUpdateSingle.cs │ │ │ │ ├── SetAssistantLeader.cs │ │ │ │ ├── SetEveryoneIsAssistant.cs │ │ │ │ ├── SetLootMethod.cs │ │ │ │ ├── SetPartyAssignment.cs │ │ │ │ ├── SetPartyLeader.cs │ │ │ │ ├── SetRole.cs │ │ │ │ ├── SwapSubGroups.cs │ │ │ │ └── UpdateRaidTarget.cs │ │ │ ├── PerksPorgram │ │ │ │ └── PerksVendorItem.cs │ │ │ ├── Pet │ │ │ │ ├── CancelModSpeedNoControlAuras.cs │ │ │ │ ├── DismissCritter.cs │ │ │ │ ├── PetAbandon.cs │ │ │ │ ├── PetAction.cs │ │ │ │ ├── PetActionFeedbackPacket.cs │ │ │ │ ├── PetActionSound.cs │ │ │ │ ├── PetCancelAura.cs │ │ │ │ ├── PetLearnedSpells.cs │ │ │ │ ├── PetNameInvalid.cs │ │ │ │ ├── PetRename.cs │ │ │ │ ├── PetRenameData.cs │ │ │ │ ├── PetSetAction.cs │ │ │ │ ├── PetSpellAutocast.cs │ │ │ │ ├── PetSpellCooldown.cs │ │ │ │ ├── PetSpellHistory.cs │ │ │ │ ├── PetSpells.cs │ │ │ │ ├── PetStableInfo.cs │ │ │ │ ├── PetStableList.cs │ │ │ │ ├── PetStableResult.cs │ │ │ │ ├── PetStopAttack.cs │ │ │ │ ├── PetTameFailure.cs │ │ │ │ ├── PetUnlearnedSpells.cs │ │ │ │ ├── RequestPetInfo.cs │ │ │ │ └── SetPetSpecialization.cs │ │ │ ├── Petition │ │ │ │ ├── DeclinePetition.cs │ │ │ │ ├── OfferPetition.cs │ │ │ │ ├── OfferPetitionError.cs │ │ │ │ ├── PetitionAlreadySigned.cs │ │ │ │ ├── PetitionBuy.cs │ │ │ │ ├── PetitionInfo.cs │ │ │ │ ├── PetitionRenameGuild.cs │ │ │ │ ├── PetitionRenameGuildResponse.cs │ │ │ │ ├── PetitionShowList.cs │ │ │ │ ├── PetitionShowSignatures.cs │ │ │ │ ├── PetitionSignResults.cs │ │ │ │ ├── QueryPetition.cs │ │ │ │ ├── QueryPetitionResponse.cs │ │ │ │ ├── ServerPetitionShowList.cs │ │ │ │ ├── ServerPetitionShowSignatures.cs │ │ │ │ ├── SignPetition.cs │ │ │ │ ├── TurnInPetition.cs │ │ │ │ └── TurnInPetitionResult.cs │ │ │ ├── Query │ │ │ │ ├── CorpseLocation.cs │ │ │ │ ├── CorpseTransportQuery.cs │ │ │ │ ├── CreatureDisplayStats.cs │ │ │ │ ├── CreatureStats.cs │ │ │ │ ├── CreatureXDisplay.cs │ │ │ │ ├── DBQueryRecord.cs │ │ │ │ ├── GameObjectStats.cs │ │ │ │ ├── ItemTextQuery.cs │ │ │ │ ├── NameCacheLookupResult.cs │ │ │ │ ├── NameCacheUnused920.cs │ │ │ │ ├── PlayerGuidLookupData.cs │ │ │ │ ├── PlayerGuidLookupHint.cs │ │ │ │ ├── QueryCorpseLocationFromClient.cs │ │ │ │ ├── QueryCorpseTransport.cs │ │ │ │ ├── QueryCreature.cs │ │ │ │ ├── QueryCreatureResponse.cs │ │ │ │ ├── QueryGameObject.cs │ │ │ │ ├── QueryGameObjectResponse.cs │ │ │ │ ├── QueryItemTextResponse.cs │ │ │ │ ├── QueryNPCText.cs │ │ │ │ ├── QueryNPCTextResponse.cs │ │ │ │ ├── QueryPageText.cs │ │ │ │ ├── QueryPageTextResponse.cs │ │ │ │ ├── QueryPetName.cs │ │ │ │ ├── QueryPetNameResponse.cs │ │ │ │ ├── QueryPlayerNames.cs │ │ │ │ ├── QueryPlayerNamesResponse.cs │ │ │ │ ├── QueryQuestCompletionNPCs.cs │ │ │ │ ├── QueryRealmName.cs │ │ │ │ ├── QueryTime.cs │ │ │ │ ├── QueryTimeResponse.cs │ │ │ │ ├── QuestCompletionNPC.cs │ │ │ │ ├── QuestCompletionNPCResponse.cs │ │ │ │ ├── QuestPOIQuery.cs │ │ │ │ ├── QuestPOIQueryResponse.cs │ │ │ │ └── RealmQueryResponse.cs │ │ │ ├── Quest │ │ │ │ ├── ChoiceResponse.cs │ │ │ │ ├── ConditionalQuestText.cs │ │ │ │ ├── DailyQuestsReset.cs │ │ │ │ ├── DisplayPlayerChoice.cs │ │ │ │ ├── PlayerChoiceResponse.cs │ │ │ │ ├── PlayerChoiceResponseMawPower.cs │ │ │ │ ├── PlayerChoiceResponseReward.cs │ │ │ │ ├── PlayerChoiceResponseRewardEntry.cs │ │ │ │ ├── PushQuestToParty.cs │ │ │ │ ├── QueryQuestInfo.cs │ │ │ │ ├── QueryQuestInfoResponse.cs │ │ │ │ ├── QueryQuestItemUsability.cs │ │ │ │ ├── QuestChoiceItem.cs │ │ │ │ ├── QuestCompleteDisplaySpell.cs │ │ │ │ ├── QuestConfirmAccept.cs │ │ │ │ ├── QuestConfirmAcceptResponse.cs │ │ │ │ ├── QuestCurrency.cs │ │ │ │ ├── QuestDescEmote.cs │ │ │ │ ├── QuestGiverAcceptQuest.cs │ │ │ │ ├── QuestGiverChooseReward.cs │ │ │ │ ├── QuestGiverCloseQuest.cs │ │ │ │ ├── QuestGiverCompleteQuest.cs │ │ │ │ ├── QuestGiverHello.cs │ │ │ │ ├── QuestGiverInfo.cs │ │ │ │ ├── QuestGiverInvalidQuest.cs │ │ │ │ ├── QuestGiverOfferReward.cs │ │ │ │ ├── QuestGiverOfferRewardMessage.cs │ │ │ │ ├── QuestGiverQueryQuest.cs │ │ │ │ ├── QuestGiverQuestComplete.cs │ │ │ │ ├── QuestGiverQuestDetails.cs │ │ │ │ ├── QuestGiverQuestFailed.cs │ │ │ │ ├── QuestGiverQuestListMessage.cs │ │ │ │ ├── QuestGiverRequestItems.cs │ │ │ │ ├── QuestGiverRequestReward.cs │ │ │ │ ├── QuestGiverStatusMultiple.cs │ │ │ │ ├── QuestGiverStatusMultipleQuery.cs │ │ │ │ ├── QuestGiverStatusPkt.cs │ │ │ │ ├── QuestGiverStatusQuery.cs │ │ │ │ ├── QuestGiverStatusTrackedQuery.cs │ │ │ │ ├── QuestInfo.cs │ │ │ │ ├── QuestInfoChoiceItem.cs │ │ │ │ ├── QuestLogFull.cs │ │ │ │ ├── QuestLogRemoveQuest.cs │ │ │ │ ├── QuestObjectiveCollect.cs │ │ │ │ ├── QuestObjectiveSimple.cs │ │ │ │ ├── QuestPushResult.cs │ │ │ │ ├── QuestPushResultResponse.cs │ │ │ │ ├── QuestRewards.cs │ │ │ │ ├── QuestUpdateAddCredit.cs │ │ │ │ ├── QuestUpdateAddCreditSimple.cs │ │ │ │ ├── QuestUpdateAddPvPCredit.cs │ │ │ │ ├── QuestUpdateComplete.cs │ │ │ │ ├── QuestUpdateFailedTimer.cs │ │ │ │ ├── RequestWorldQuestUpdate.cs │ │ │ │ ├── UiMapQuestLinesRequest.cs │ │ │ │ ├── UiMapQuestLinesResponse.cs │ │ │ │ ├── WorldQuestUpdateInfo.cs │ │ │ │ └── WorldQuestUpdateResponse.cs │ │ │ ├── ReferAFriend │ │ │ │ └── RecruitAFriendFailure.cs │ │ │ ├── Reputation │ │ │ │ ├── FactionStandingData.cs │ │ │ │ ├── ForcedReaction.cs │ │ │ │ ├── InitializeFactions.cs │ │ │ │ ├── RequestForcedReactions.cs │ │ │ │ ├── SetFactionStanding.cs │ │ │ │ └── SetForcedReactions.cs │ │ │ ├── Scenario │ │ │ │ ├── BonusObjectiveData.cs │ │ │ │ ├── QueryScenarioPOI.cs │ │ │ │ ├── ScenarioCompleted.cs │ │ │ │ ├── ScenarioPOIData.cs │ │ │ │ ├── ScenarioPOIs.cs │ │ │ │ ├── ScenarioProgressUpdate.cs │ │ │ │ ├── ScenarioSpellUpdate.cs │ │ │ │ ├── ScenarioState.cs │ │ │ │ └── ScenarioVacate.cs │ │ │ ├── Scene │ │ │ │ ├── CancelScene.cs │ │ │ │ ├── PlayScene.cs │ │ │ │ ├── ScenePlaybackCanceled.cs │ │ │ │ ├── ScenePlaybackComplete.cs │ │ │ │ └── SceneTriggerEvent.cs │ │ │ ├── Social │ │ │ │ ├── AddFriend.cs │ │ │ │ ├── AddIgnore.cs │ │ │ │ ├── ContactInfo.cs │ │ │ │ ├── ContactList.cs │ │ │ │ ├── DelFriend.cs │ │ │ │ ├── DelIgnore.cs │ │ │ │ ├── FriendStatusPkt.cs │ │ │ │ ├── QualifiedGUID.cs │ │ │ │ ├── SendContactList.cs │ │ │ │ ├── SetContactNotes.cs │ │ │ │ ├── SocialContractRequest.cs │ │ │ │ └── SocialContractRequestResponse.cs │ │ │ ├── Spell │ │ │ │ ├── AddRunePower.cs │ │ │ │ ├── AuraDataInfo.cs │ │ │ │ ├── AuraInfo.cs │ │ │ │ ├── AuraUpdate.cs │ │ │ │ ├── CancelAura.cs │ │ │ │ ├── CancelAutoRepeatSpell.cs │ │ │ │ ├── CancelCast.cs │ │ │ │ ├── CancelChannelling.cs │ │ │ │ ├── CancelGrowthAura.cs │ │ │ │ ├── CancelMountAura.cs │ │ │ │ ├── CancelOrphanSpellVisual.cs │ │ │ │ ├── CancelSpellVisual.cs │ │ │ │ ├── CancelSpellVisualKit.cs │ │ │ │ ├── CastFailed.cs │ │ │ │ ├── CastFailedBase.cs │ │ │ │ ├── CastSpell.cs │ │ │ │ ├── ClearAllSpellCharges.cs │ │ │ │ ├── ClearCooldown.cs │ │ │ │ ├── ClearCooldowns.cs │ │ │ │ ├── ClearSpellCharges.cs │ │ │ │ ├── ClearTarget.cs │ │ │ │ ├── ContentTuningParams.cs │ │ │ │ ├── CooldownEvent.cs │ │ │ │ ├── CreatureImmunities.cs │ │ │ │ ├── CustomLoadScreen.cs │ │ │ │ ├── DispelFailed.cs │ │ │ │ ├── GetMirrorImageData.cs │ │ │ │ ├── KeyboundOverride.cs │ │ │ │ ├── LearnedSpellInfo.cs │ │ │ │ ├── LearnedSpells.cs │ │ │ │ ├── MirrorImageComponentedData.cs │ │ │ │ ├── MirrorImageCreatureData.cs │ │ │ │ ├── MissileCancel.cs │ │ │ │ ├── MissileTrajectoryCollision.cs │ │ │ │ ├── MissileTrajectoryRequest.cs │ │ │ │ ├── MissileTrajectoryResult.cs │ │ │ │ ├── ModifyCooldown.cs │ │ │ │ ├── MountResultPacket.cs │ │ │ │ ├── NotifyMissileTrajectoryCollision.cs │ │ │ │ ├── OpenItem.cs │ │ │ │ ├── PetCastFailed.cs │ │ │ │ ├── PetCastSpell.cs │ │ │ │ ├── PlayOrphanSpellVisual.cs │ │ │ │ ├── PlaySpellVisual.cs │ │ │ │ ├── PlaySpellVisualKit.cs │ │ │ │ ├── RequestCategoryCooldowns.cs │ │ │ │ ├── ResurrectRequest.cs │ │ │ │ ├── ResyncRunes.cs │ │ │ │ ├── RuneData.cs │ │ │ │ ├── SelfRes.cs │ │ │ │ ├── SendKnownSpells.cs │ │ │ │ ├── SendSpellCharges.cs │ │ │ │ ├── SendSpellHistory.cs │ │ │ │ ├── SendUnlearnSpells.cs │ │ │ │ ├── SetActionButton.cs │ │ │ │ ├── SetSpellCharges.cs │ │ │ │ ├── SetSpellModifier.cs │ │ │ │ ├── SpellAmmo.cs │ │ │ │ ├── SpellCastData.cs │ │ │ │ ├── SpellCastLogData.cs │ │ │ │ ├── SpellCastRequest.cs │ │ │ │ ├── SpellCastVisual.cs │ │ │ │ ├── SpellCategoryCooldown.cs │ │ │ │ ├── SpellChannelStart.cs │ │ │ │ ├── SpellChannelStartInterruptImmunities.cs │ │ │ │ ├── SpellChannelUpdate.cs │ │ │ │ ├── SpellChargeEntry.cs │ │ │ │ ├── SpellClick.cs │ │ │ │ ├── SpellCooldownPkt.cs │ │ │ │ ├── SpellCooldownStruct.cs │ │ │ │ ├── SpellCraftingReagent.cs │ │ │ │ ├── SpellDelayed.cs │ │ │ │ ├── SpellEmpowerMinHold.cs │ │ │ │ ├── SpellEmpowerRelease.cs │ │ │ │ ├── SpellEmpowerSetStage.cs │ │ │ │ ├── SpellEmpowerStageUpdate.cs │ │ │ │ ├── SpellEmpowerStart.cs │ │ │ │ ├── SpellExtraCurrencyCost.cs │ │ │ │ ├── SpellFailedOther.cs │ │ │ │ ├── SpellFailure.cs │ │ │ │ ├── SpellGo.cs │ │ │ │ ├── SpellHealPrediction.cs │ │ │ │ ├── SpellHistoryEntry.cs │ │ │ │ ├── SpellHitStatus.cs │ │ │ │ ├── SpellLogPowerData.cs │ │ │ │ ├── SpellMissStatus.cs │ │ │ │ ├── SpellModifierData.cs │ │ │ │ ├── SpellModifierInfo.cs │ │ │ │ ├── SpellPowerData.cs │ │ │ │ ├── SpellPrepare.cs │ │ │ │ ├── SpellStart.cs │ │ │ │ ├── SpellTargetData.cs │ │ │ │ ├── SpellTargetedHealPrediction.cs │ │ │ │ ├── SpellVisualLoadScreen.cs │ │ │ │ ├── SpellWeight.cs │ │ │ │ ├── SupercededSpells.cs │ │ │ │ ├── TargetLocation.cs │ │ │ │ ├── TradeSkillSetFavorite.cs │ │ │ │ ├── UnlearnSkill.cs │ │ │ │ ├── UnlearnedSpells.cs │ │ │ │ ├── UpdateActionButtons.cs │ │ │ │ ├── UpdateMissileTrajectory.cs │ │ │ │ └── UseItem.cs │ │ │ ├── System │ │ │ │ ├── EuropaTicketConfig.cs │ │ │ │ ├── FeatureSystemStatus.cs │ │ │ │ ├── FeatureSystemStatusGlueScreen.cs │ │ │ │ ├── GameRuleValuePair.cs │ │ │ │ ├── MOTD.cs │ │ │ │ ├── SavedThrottleObjectState.cs │ │ │ │ └── SetTimeZoneInformation.cs │ │ │ ├── Talent │ │ │ │ ├── ActiveGlyphs.cs │ │ │ │ ├── ConfirmRespecWipe.cs │ │ │ │ ├── GlyphBinding.cs │ │ │ │ ├── LearnPvpTalentFailed.cs │ │ │ │ ├── LearnPvpTalents.cs │ │ │ │ ├── LearnTalentFailed.cs │ │ │ │ ├── LearnTalents.cs │ │ │ │ ├── PvPTalent.cs │ │ │ │ ├── RespecWipeConfirm.cs │ │ │ │ └── UpdateTalentData.cs │ │ │ ├── Taxi │ │ │ │ ├── ActivateTaxi.cs │ │ │ │ ├── ActivateTaxiReplyPkt.cs │ │ │ │ ├── EnableTaxiNode.cs │ │ │ │ ├── NewTaxiPath.cs │ │ │ │ ├── ShowTaxiNodes.cs │ │ │ │ ├── ShowTaxiNodesWindowInfo.cs │ │ │ │ ├── TaxiNodeStatusPkt.cs │ │ │ │ ├── TaxiNodeStatusQuery.cs │ │ │ │ ├── TaxiQueryAvailableNodes.cs │ │ │ │ └── TaxiRequestEarlyLanding.cs │ │ │ ├── Ticket │ │ │ │ ├── BugReport.cs │ │ │ │ ├── Complaint.cs │ │ │ │ ├── ComplaintResult.cs │ │ │ │ ├── GMTicketAcknowledgeSurvey.cs │ │ │ │ ├── GMTicketCaseStatus.cs │ │ │ │ ├── GMTicketGetCaseStatus.cs │ │ │ │ ├── GMTicketGetSystemStatus.cs │ │ │ │ ├── GMTicketSystemStatusPkt.cs │ │ │ │ ├── SubmitUserFeedback.cs │ │ │ │ ├── SupportTicketHeader.cs │ │ │ │ └── SupportTicketSubmitComplaint.cs │ │ │ ├── Token │ │ │ │ ├── CommerceTokenGetLog.cs │ │ │ │ ├── CommerceTokenGetLogResponse.cs │ │ │ │ ├── CommerceTokenGetMarketPrice.cs │ │ │ │ └── CommerceTokenGetMarketPriceResponse.cs │ │ │ ├── Totem │ │ │ │ ├── TotemCreated.cs │ │ │ │ ├── TotemDestroyed.cs │ │ │ │ └── TotemMoved.cs │ │ │ ├── Toy │ │ │ │ ├── AccountToyUpdate.cs │ │ │ │ ├── AddToy.cs │ │ │ │ ├── ToyClearFanfare.cs │ │ │ │ └── UseToy.cs │ │ │ ├── Trade │ │ │ │ ├── AcceptTrade.cs │ │ │ │ ├── BeginTrade.cs │ │ │ │ ├── BusyTrade.cs │ │ │ │ ├── CancelTrade.cs │ │ │ │ ├── ClearTradeItem.cs │ │ │ │ ├── IgnoreTrade.cs │ │ │ │ ├── InitiateTrade.cs │ │ │ │ ├── SetTradeCurrency.cs │ │ │ │ ├── SetTradeGold.cs │ │ │ │ ├── SetTradeItem.cs │ │ │ │ ├── TradeStatusPkt.cs │ │ │ │ ├── TradeUpdated.cs │ │ │ │ └── UnacceptTrade.cs │ │ │ ├── Trait │ │ │ │ ├── ClassTalentsDeleteConfig.cs │ │ │ │ ├── ClassTalentsRenameConfig.cs │ │ │ │ ├── ClassTalentsRequestNewConfig.cs │ │ │ │ ├── ClassTalentsSetStarterBuildActive.cs │ │ │ │ ├── ClassTalentsSetUsesSharedActionBars.cs │ │ │ │ ├── TraitConfigCommitFailed.cs │ │ │ │ ├── TraitConfigPacket.cs │ │ │ │ ├── TraitEntryPacket.cs │ │ │ │ └── TraitsCommitConfig.cs │ │ │ ├── Transmogification │ │ │ │ ├── AccountTransmogUpdate.cs │ │ │ │ ├── TransmogrifyItem.cs │ │ │ │ └── TransmogrifyItems.cs │ │ │ ├── Update │ │ │ │ └── UpdateObject.cs │ │ │ ├── Vehicle │ │ │ │ ├── EjectPassenger.cs │ │ │ │ ├── MoveChangeVehicleSeats.cs │ │ │ │ ├── MoveDismissVehicle.cs │ │ │ │ ├── MoveSetVehicleRecID.cs │ │ │ │ ├── MoveSetVehicleRecIdAck.cs │ │ │ │ ├── OnCancelExpectedRideVehicleAura.cs │ │ │ │ ├── RequestVehicleExit.cs │ │ │ │ ├── RequestVehicleNextSeat.cs │ │ │ │ ├── RequestVehiclePrevSeat.cs │ │ │ │ ├── RequestVehicleSwitchSeat.cs │ │ │ │ ├── RideVehicleInteract.cs │ │ │ │ └── SetVehicleRecID.cs │ │ │ ├── VoidStorage │ │ │ │ ├── QueryVoidStorage.cs │ │ │ │ ├── SwapVoidItem.cs │ │ │ │ ├── UnlockVoidStorage.cs │ │ │ │ ├── VoidItem.cs │ │ │ │ ├── VoidItemSwapResponse.cs │ │ │ │ ├── VoidStorageContents.cs │ │ │ │ ├── VoidStorageFailed.cs │ │ │ │ ├── VoidStorageTransfer.cs │ │ │ │ ├── VoidStorageTransferChanges.cs │ │ │ │ └── VoidTransferResult.cs │ │ │ ├── Warden │ │ │ │ ├── Warden3DataServer.cs │ │ │ │ ├── WardenData.cs │ │ │ │ └── WardenOpcodes.cs │ │ │ ├── Who │ │ │ │ ├── WhoEntry.cs │ │ │ │ ├── WhoIsRequest.cs │ │ │ │ ├── WhoIsResponse.cs │ │ │ │ ├── WhoRequest.cs │ │ │ │ ├── WhoRequestPkt.cs │ │ │ │ ├── WhoRequestServerInfo.cs │ │ │ │ └── WhoResponsePkt.cs │ │ │ └── WorldState │ │ │ │ ├── InitWorldStates.cs │ │ │ │ └── UpdateWorldState.cs │ │ ├── RASocket.cs │ │ ├── ReadDataHandlerResult.cs │ │ ├── ServerPacket.cs │ │ ├── WorldPacket.cs │ │ ├── WorldPacketHandlerAttribute.cs │ │ ├── WorldSocket.cs │ │ └── WorldSocketManager.cs │ ├── OutdoorPVP │ │ ├── OutdoorPvP.cs │ │ ├── OutdoorPvPManager.cs │ │ └── Zones │ │ │ └── HellfirePeninsulaPvP.cs │ ├── Phasing │ │ ├── ControlledUnitVisitor.cs │ │ ├── MultiPersonalPhaseTracker.cs │ │ ├── PersonalPhaseSpawns.cs │ │ ├── PhaseFlags.cs │ │ ├── PhaseRef.cs │ │ ├── PhaseShift.cs │ │ ├── PhaseShiftFlags.cs │ │ ├── PhasingHandler.cs │ │ ├── PlayerPersonalPhasesTracker.cs │ │ ├── UiMapPhaseIdRef.cs │ │ └── VisibleMapIdRef.cs │ ├── Pools │ │ ├── Pool.cs │ │ ├── PoolGroup.cs │ │ ├── PoolManager.cs │ │ ├── PoolObject.cs │ │ ├── PoolTemplateData.cs │ │ ├── QuestPool.cs │ │ ├── QuestPoolManager.cs │ │ └── SpawnedPoolData.cs │ ├── Quest │ │ ├── Quest.cs │ │ ├── QuestConditionalText.cs │ │ ├── QuestGreeting.cs │ │ ├── QuestGreetingLocale.cs │ │ ├── QuestObjective.cs │ │ ├── QuestObjectiveCriteriaManager.cs │ │ ├── QuestObjectivesLocale.cs │ │ ├── QuestOfferRewardLocale.cs │ │ ├── QuestRequestItemsLocale.cs │ │ ├── QuestRewardDisplaySpell.cs │ │ ├── QuestStatusData.cs │ │ └── QuestTemplateLocale.cs │ ├── Reputation │ │ ├── FactionState.cs │ │ ├── RepRewardRate.cs │ │ ├── RepSpilloverTemplate.cs │ │ ├── ReputationMgr.cs │ │ └── ReputationOnKillEntry.cs │ ├── Scenarios │ │ ├── InstanceScenario.cs │ │ ├── Scenario.cs │ │ ├── ScenarioDBData.cs │ │ ├── ScenarioData.cs │ │ ├── ScenarioManager.cs │ │ ├── ScenarioPOI.cs │ │ ├── ScenarioPOIPoint.cs │ │ ├── ScenarioStepState.cs │ │ └── ScenarioType.cs │ ├── Scripting │ │ ├── Activators │ │ │ ├── AreaTriggerActivator.cs │ │ │ ├── AuraScriptActivator.cs │ │ │ ├── CreatureAIActivator.cs │ │ │ ├── GameObjectAIActivator.cs │ │ │ ├── IScriptActivator.cs │ │ │ └── SpellScriptActivator.cs │ │ ├── AreaTriggerScript.cs │ │ ├── AreaTriggerScriptAttribute.cs │ │ ├── AuraScript.cs │ │ ├── BaseScripts │ │ │ ├── AreaTriggerScriptLoader.cs │ │ │ ├── AuraScriptLoader.cs │ │ │ ├── BattlegroundMapScript.cs │ │ │ ├── GenericAreaTriggerScript.cs │ │ │ ├── GenericAreaTriggerScriptLoader.cs │ │ │ ├── GenericAuraScriptLoader.cs │ │ │ ├── GenericCreatureScript.cs │ │ │ ├── GenericGameObjectScript.cs │ │ │ ├── GenericSpellScriptLoader.cs │ │ │ ├── InstanceMapScript.cs │ │ │ ├── MapScript.cs │ │ │ ├── SpellScriptLoader.cs │ │ │ └── WorldMapScript.cs │ │ ├── CreatureScriptAttribute.cs │ │ ├── GameObjectScriptAttribute.cs │ │ ├── Interfaces │ │ │ ├── IAchievement │ │ │ │ ├── IAchievementCriteriaScript.cs │ │ │ │ └── IAchievementOnCompleted.cs │ │ │ ├── IAreaTrigger │ │ │ │ ├── IAreaTriggerOnCreate.cs │ │ │ │ ├── IAreaTriggerOnDestinationReached.cs │ │ │ │ ├── IAreaTriggerOnExit.cs │ │ │ │ ├── IAreaTriggerOnInitialize.cs │ │ │ │ ├── IAreaTriggerOnPeriodicProc.cs │ │ │ │ ├── IAreaTriggerOnRemove.cs │ │ │ │ ├── IAreaTriggerOnSplineIndexReached.cs │ │ │ │ ├── IAreaTriggerOnTrigger.cs │ │ │ │ ├── IAreaTriggerOnUnitEnter.cs │ │ │ │ ├── IAreaTriggerOnUnitExit.cs │ │ │ │ ├── IAreaTriggerOnUpdate.cs │ │ │ │ ├── IAreaTriggerOverrideCreateProperties.cs │ │ │ │ ├── IAreaTriggerScriptLoaderGetTriggerScriptScript.cs │ │ │ │ ├── IAreaTriggerScriptValues.cs │ │ │ │ ├── IAreaTriggerSmartScript.cs │ │ │ │ └── IAreaTriggerTryHandleOnlyOnce.cs │ │ │ ├── IAreaTriggerEntity │ │ │ │ └── IAreaTriggerEntityGetAI.cs │ │ │ ├── IAreaTriggerScript.cs │ │ │ ├── IAuctionHouse │ │ │ │ ├── IAuctionHouseOnAcutionRemove.cs │ │ │ │ ├── IAuctionHouseOnAuctionAdd.cs │ │ │ │ ├── IAuctionHouseOnAuctionExpire.cs │ │ │ │ └── IAuctionHouseOnAuctionSuccessful.cs │ │ │ ├── IAura │ │ │ │ ├── IAfterAuraDispel.cs │ │ │ │ ├── IAuraAfterProc.cs │ │ │ │ ├── IAuraApplyHandler.cs │ │ │ │ ├── IAuraCalcAmount.cs │ │ │ │ ├── IAuraCalcCritChance.cs │ │ │ │ ├── IAuraCalcPeriodic.cs │ │ │ │ ├── IAuraCalcSpellMod.cs │ │ │ │ ├── IAuraCheckAreaTarget.cs │ │ │ │ ├── IAuraCheckEffectProc.cs │ │ │ │ ├── IAuraCheckProc.cs │ │ │ │ ├── IAuraEffectAbsorb.cs │ │ │ │ ├── IAuraEffectAbsorbHeal.cs │ │ │ │ ├── IAuraEffectHandler.cs │ │ │ │ ├── IAuraEffectProcHandler.cs │ │ │ │ ├── IAuraEnterLeaveCombat.cs │ │ │ │ ├── IAuraOnApply.cs │ │ │ │ ├── IAuraOnDispel.cs │ │ │ │ ├── IAuraOnProc.cs │ │ │ │ ├── IAuraOnRemove.cs │ │ │ │ ├── IAuraOnUpdate.cs │ │ │ │ ├── IAuraOverrideProcInfo.cs │ │ │ │ ├── IAuraPeriodic.cs │ │ │ │ ├── IAuraPrepareProc.cs │ │ │ │ ├── IAuraScriptLoaderGetAuraScript.cs │ │ │ │ ├── IAuraScriptValues.cs │ │ │ │ ├── IAuraSplitHandler.cs │ │ │ │ ├── IAuraUpdatePeriodic.cs │ │ │ │ └── IHasAuraEffects.cs │ │ │ ├── IAuraScript.cs │ │ │ ├── IBaseSpellScript.cs │ │ │ ├── IBattlefield │ │ │ │ └── IBattlefieldGetBattlefield.cs │ │ │ ├── IBattleground │ │ │ │ └── IBattlegroundGetBattleground.cs │ │ │ ├── IClassRescriction.cs │ │ │ ├── ICondition │ │ │ │ └── IConditionCheck.cs │ │ │ ├── IConversation │ │ │ │ ├── IConversationOnConversationCreate.cs │ │ │ │ └── IConversationOnConversationLineStarted.cs │ │ │ ├── ICreature │ │ │ │ └── ICreatureGetAI.cs │ │ │ ├── IDynamicObject │ │ │ │ └── IDynamicObjectOnUpdate.cs │ │ │ ├── IFormula │ │ │ │ ├── IFormulaOnBaseGainCalculation.cs │ │ │ │ ├── IFormulaOnColorCodeCaclculation.cs │ │ │ │ ├── IFormulaOnGainCalculation.cs │ │ │ │ ├── IFormulaOnGrayLevelCalculation.cs │ │ │ │ ├── IFormulaOnGroupRateCaclulation.cs │ │ │ │ ├── IFormulaOnHonorCalculation.cs │ │ │ │ └── IFormulaOnZeroDifference.cs │ │ │ ├── IGameObject │ │ │ │ └── IGameObjectGetAI.cs │ │ │ ├── IGroup │ │ │ │ ├── IGroupOnAddMember.cs │ │ │ │ ├── IGroupOnChangeLeader.cs │ │ │ │ ├── IGroupOnDisband.cs │ │ │ │ ├── IGroupOnInviteMember.cs │ │ │ │ └── IGroupOnRemoveMember.cs │ │ │ ├── IGuild │ │ │ │ ├── IGuildOnAddMember.cs │ │ │ │ ├── IGuildOnBankEvent.cs │ │ │ │ ├── IGuildOnCreate.cs │ │ │ │ ├── IGuildOnDisband.cs │ │ │ │ ├── IGuildOnEvent.cs │ │ │ │ ├── IGuildOnInfoChanged.cs │ │ │ │ ├── IGuildOnItemMove.cs │ │ │ │ ├── IGuildOnMOTDChanged.cs │ │ │ │ ├── IGuildOnMemberDepositMoney.cs │ │ │ │ ├── IGuildOnMemberWithDrawMoney.cs │ │ │ │ └── IGuildOnRemoveMember.cs │ │ │ ├── IHasSpellEffects.cs │ │ │ ├── IItem │ │ │ │ ├── IItemOnCastItemCombatSpell.cs │ │ │ │ ├── IItemOnExpire.cs │ │ │ │ ├── IItemOnQuestAccept.cs │ │ │ │ ├── IItemOnRemove.cs │ │ │ │ └── IItemOnUse.cs │ │ │ ├── IMap │ │ │ │ ├── IInstanceMapGetInstanceScript.cs │ │ │ │ ├── IMapOnCreate.cs │ │ │ │ ├── IMapOnDestroy.cs │ │ │ │ ├── IMapOnPlayerEnter.cs │ │ │ │ ├── IMapOnPlayerLeave.cs │ │ │ │ └── IMapOnUpdate.cs │ │ │ ├── IOutdoorPvP │ │ │ │ └── IOutdoorPvPGetOutdoorPvP.cs │ │ │ ├── IPlayer │ │ │ │ ├── IPlayerOnAfterModifyPower.cs │ │ │ │ ├── IPlayerOnBindToInstance.cs │ │ │ │ ├── IPlayerOnChargeRecoveryTimeStart.cs │ │ │ │ ├── IPlayerOnChat.cs │ │ │ │ ├── IPlayerOnChatChannel.cs │ │ │ │ ├── IPlayerOnChatGroup.cs │ │ │ │ ├── IPlayerOnChatGuild.cs │ │ │ │ ├── IPlayerOnChatWhisper.cs │ │ │ │ ├── IPlayerOnClearEmote.cs │ │ │ │ ├── IPlayerOnCooldownEnd.cs │ │ │ │ ├── IPlayerOnCooldownStart.cs │ │ │ │ ├── IPlayerOnCreate.cs │ │ │ │ ├── IPlayerOnCreatureKill.cs │ │ │ │ ├── IPlayerOnDealDamage.cs │ │ │ │ ├── IPlayerOnDeath.cs │ │ │ │ ├── IPlayerOnDelete.cs │ │ │ │ ├── IPlayerOnDuelEnd.cs │ │ │ │ ├── IPlayerOnDuelRequest.cs │ │ │ │ ├── IPlayerOnDuelStart.cs │ │ │ │ ├── IPlayerOnFailedDelete.cs │ │ │ │ ├── IPlayerOnFreeTalentPointsChanged.cs │ │ │ │ ├── IPlayerOnGiveXP.cs │ │ │ │ ├── IPlayerOnLevelChanged.cs │ │ │ │ ├── IPlayerOnLogin.cs │ │ │ │ ├── IPlayerOnLogout.cs │ │ │ │ ├── IPlayerOnMapChanged.cs │ │ │ │ ├── IPlayerOnModifyPower.cs │ │ │ │ ├── IPlayerOnMoneyChanged.cs │ │ │ │ ├── IPlayerOnMovieComplete.cs │ │ │ │ ├── IPlayerOnPVPKill.cs │ │ │ │ ├── IPlayerOnPlayerChoiceResponse.cs │ │ │ │ ├── IPlayerOnPlayerKilledByCreature.cs │ │ │ │ ├── IPlayerOnPlayerRepop.cs │ │ │ │ ├── IPlayerOnQuestStatusChange.cs │ │ │ │ ├── IPlayerOnReputationChange.cs │ │ │ │ ├── IPlayerOnSave.cs │ │ │ │ ├── IPlayerOnSpellCast.cs │ │ │ │ ├── IPlayerOnTakeDamage.cs │ │ │ │ ├── IPlayerOnTalentsReset.cs │ │ │ │ ├── IPlayerOnTextEmote.cs │ │ │ │ └── IPlayerOnUpdateZone.cs │ │ │ ├── IQuest │ │ │ │ ├── IQuestOnAckAutoAccept.cs │ │ │ │ ├── IQuestOnQuestObjectiveChange.cs │ │ │ │ └── IQuestOnQuestStatusChange.cs │ │ │ ├── IScene │ │ │ │ ├── ISceneOnSceneChancel.cs │ │ │ │ ├── ISceneOnSceneComplete.cs │ │ │ │ ├── ISceneOnSceneStart.cs │ │ │ │ └── ISceneOnSceneTrigger.cs │ │ │ ├── IScriptAutoAdd.cs │ │ │ ├── IScriptObject.cs │ │ │ ├── IServer │ │ │ │ └── IServerLoadComplete.cs │ │ │ ├── ISpell │ │ │ │ ├── ISpellAfterCast.cs │ │ │ │ ├── ISpellAfterHit.cs │ │ │ │ ├── ISpellBeforeCast.cs │ │ │ │ ├── ISpellBeforeHit.cs │ │ │ │ ├── ISpellCalcCritChance.cs │ │ │ │ ├── ISpellCalculateBonusCoefficient.cs │ │ │ │ ├── ISpellCalculateCastTime.cs │ │ │ │ ├── ISpellCalculateMultiplier.cs │ │ │ │ ├── ISpellCalculateResistAbsorb.cs │ │ │ │ ├── ISpellCheckCastHander.cs │ │ │ │ ├── ISpellDestinationTargetSelectHandler.cs │ │ │ │ ├── ISpellEffect.cs │ │ │ │ ├── ISpellEffectHandler.cs │ │ │ │ ├── ISpellEnergizedBySpell.cs │ │ │ │ ├── ISpellObjectAreaTargetSelect.cs │ │ │ │ ├── ISpellObjectTargetSelectHandler.cs │ │ │ │ ├── ISpellOnCast.cs │ │ │ │ ├── ISpellOnEpowerSpellEnd.cs │ │ │ │ ├── ISpellOnEpowerSpellStageChange.cs │ │ │ │ ├── ISpellOnEpowerSpellStart.cs │ │ │ │ ├── ISpellOnHit.cs │ │ │ │ ├── ISpellOnPrecast.cs │ │ │ │ ├── ISpellOnSucessfulInterrupt.cs │ │ │ │ ├── ISpellOnSummon.cs │ │ │ │ ├── ISpellOnTakePower.cs │ │ │ │ ├── ISpellScriptLoaderGetSpellScript.cs │ │ │ │ └── ITargetHookHandler.cs │ │ │ ├── ISpellManager │ │ │ │ ├── ISpellManagerSpellFix.cs │ │ │ │ └── ISpellManagerSpellLateFix.cs │ │ │ ├── ISpellScript.cs │ │ │ ├── ITransport │ │ │ │ ├── ITransportOnAddCreaturePassenger.cs │ │ │ │ ├── ITransportOnAddPassenger.cs │ │ │ │ ├── ITransportOnRelocate.cs │ │ │ │ ├── ITransportOnRemovePassenger.cs │ │ │ │ └── ITransportOnUpdate.cs │ │ │ ├── IUnit │ │ │ │ ├── IUnitModifyMeleeDamage.cs │ │ │ │ ├── IUnitModifyPeriodicDamageAurasTick.cs │ │ │ │ ├── IUnitModifySpellDamageTaken.cs │ │ │ │ ├── IUnitOnDamage.cs │ │ │ │ ├── IUnitOnHeal.cs │ │ │ │ ├── IUnitOnMeleeAttack.cs │ │ │ │ └── IUnitSpellInterrupted.cs │ │ │ ├── IVehicle │ │ │ │ ├── IVehicleOnAddPassenger.cs │ │ │ │ ├── IVehicleOnInstall.cs │ │ │ │ ├── IVehicleOnInstallAccessory.cs │ │ │ │ ├── IVehicleOnRemovePassenger.cs │ │ │ │ ├── IVehicleOnReset.cs │ │ │ │ └── IVehicleOnUninstall.cs │ │ │ ├── IWeather │ │ │ │ ├── IWeatherOnChange.cs │ │ │ │ └── IWeatherOnUpdate.cs │ │ │ ├── IWorld │ │ │ │ ├── IWorldOnConfigLoad.cs │ │ │ │ ├── IWorldOnMothChange.cs │ │ │ │ ├── IWorldOnOpenStateChange.cs │ │ │ │ ├── IWorldOnShutdown.cs │ │ │ │ ├── IWorldOnShutdownCancel.cs │ │ │ │ ├── IWorldOnShutdownInitiate.cs │ │ │ │ ├── IWorldOnStartup.cs │ │ │ │ └── IWorldOnUpdate.cs │ │ │ └── IWorldState │ │ │ │ └── IWorldStateOnValueChange.cs │ │ ├── Registers │ │ │ ├── AreaTriggerScriptRegister.cs │ │ │ ├── CreatureScriptRegister.cs │ │ │ ├── GameObjectScriptRegister.cs │ │ │ ├── IScriptRegister.cs │ │ │ └── SpellScriptRegister.cs │ │ ├── ScriptAttribute.cs │ │ ├── ScriptManager.cs │ │ ├── ScriptObject.cs │ │ ├── ScriptRegistry.cs │ │ ├── SpellScript.cs │ │ └── SpellScriptAttribute.cs │ ├── Server │ │ ├── AccountData.cs │ │ ├── AccountInfoQueryHolder.cs │ │ ├── AccountInfoQueryHolderPerRealm.cs │ │ ├── AccountInfoQueryLoad.cs │ │ ├── ConnectToKey.cs │ │ ├── DosProtection.cs │ │ ├── PacketCounter.cs │ │ ├── WorldConfig.cs │ │ └── WorldSession.cs │ ├── Services │ │ ├── ServiceAttribute.cs │ │ ├── WorldServiceHandler.cs │ │ ├── WorldServiceManager.cs │ │ └── WorldSession.cs │ ├── Spells │ │ ├── AuraEffectHandlerAttribute.cs │ │ ├── Auras │ │ │ ├── AbsorbAuraOrderPred.cs │ │ │ ├── Aura.cs │ │ │ ├── AuraApplication.cs │ │ │ ├── AuraApplicationCollection.cs │ │ │ ├── AuraCollection.cs │ │ │ ├── AuraCreateInfo.cs │ │ │ ├── AuraEffect.cs │ │ │ ├── AuraFlags.cs │ │ │ ├── AuraKey.cs │ │ │ ├── AuraLoadEffectInfo.cs │ │ │ ├── AuraObjectType.cs │ │ │ ├── AuraRemoveMode.cs │ │ │ ├── ChargeDropEvent.cs │ │ │ ├── DynObjAura.cs │ │ │ └── UnitAura.cs │ │ ├── CastSpellExtraArgs.cs │ │ ├── CastSpellTargetArg.cs │ │ ├── CorpseTargetInfo.cs │ │ ├── DelayedSpellTeleportEvent.cs │ │ ├── DispelableAura.cs │ │ ├── Events │ │ │ └── DelayedCastEvent.cs │ │ ├── GOTargetInfo.cs │ │ ├── HitTriggerSpell.cs │ │ ├── ImmunityInfo.cs │ │ ├── ItemTargetInfo.cs │ │ ├── Node.cs │ │ ├── NodeEntry.cs │ │ ├── NodeGroup.cs │ │ ├── PetAura.cs │ │ ├── PetDefaultSpellsEntry.cs │ │ ├── ProcFlagsInit.cs │ │ ├── ProcReflectDelayed.cs │ │ ├── ServersideSpellName.cs │ │ ├── SkillStatusData.cs │ │ ├── Skills │ │ │ ├── SkillDiscovery.cs │ │ │ ├── SkillDiscoveryEntry.cs │ │ │ ├── SkillExtraItemEntry.cs │ │ │ ├── SkillExtraItems.cs │ │ │ ├── SkillPerfectItemEntry.cs │ │ │ └── SkillPerfectItems.cs │ │ ├── Spell.cs │ │ ├── SpellArea.cs │ │ ├── SpellCastTargets.cs │ │ ├── SpellChainNode.cs │ │ ├── SpellDestination.cs │ │ ├── SpellDiminishInfo.cs │ │ ├── SpellEffectHandleMode.cs │ │ ├── SpellEffectHandlerAttribute.cs │ │ ├── SpellEffectInfo.cs │ │ ├── SpellEffects.cs │ │ ├── SpellEnchantProcEntry.cs │ │ ├── SpellEvent.cs │ │ ├── SpellFlatModifierByLabel.cs │ │ ├── SpellHistory.cs │ │ ├── SpellImplicitTargetInfo.cs │ │ ├── SpellInfo.cs │ │ ├── SpellInfoLoadHelper.cs │ │ ├── SpellLearnSkillNode.cs │ │ ├── SpellLearnSpellNode.cs │ │ ├── SpellLogEffect.cs │ │ ├── SpellManager.cs │ │ ├── SpellMisc.cs │ │ ├── SpellModifier.cs │ │ ├── SpellModifierByClassMask.cs │ │ ├── SpellPctModifierByLabel.cs │ │ ├── SpellPowerCost.cs │ │ ├── SpellProcEntry.cs │ │ ├── SpellTargetPosition.cs │ │ ├── SpellThreatEntry.cs │ │ ├── SpellValue.cs │ │ ├── TargetInfo.cs │ │ ├── TargetInfoBase.cs │ │ ├── TraitMgr.cs │ │ ├── Tree.cs │ │ ├── WorldObjectSpellAreaTargetCheck.cs │ │ ├── WorldObjectSpellConeTargetCheck.cs │ │ ├── WorldObjectSpellLineTargetCheck.cs │ │ ├── WorldObjectSpellNearbyTargetCheck.cs │ │ ├── WorldObjectSpellTargetCheck.cs │ │ └── WorldObjectSpellTrajTargetCheck.cs │ ├── SupportSystem │ │ ├── BugTicket.cs │ │ ├── ComplaintTicket.cs │ │ ├── SuggestionTicket.cs │ │ ├── SupportManager.cs │ │ └── Ticket.cs │ ├── Text │ │ ├── BroadcastTextBuilder.cs │ │ ├── ChatPacketSender.cs │ │ ├── CreatureTextBuilder.cs │ │ ├── CreatureTextEntry.cs │ │ ├── CreatureTextId.cs │ │ ├── CreatureTextLocale.cs │ │ ├── CreatureTextLocalizer.cs │ │ ├── CreatureTextManager.cs │ │ ├── CreatureTextRange.cs │ │ ├── CustomChatTextBuilder.cs │ │ ├── CypherStringChatBuilder.cs │ │ ├── MessageBuilder.cs │ │ ├── PlayerTextBuilder.cs │ │ └── SoundKitPlayType.cs │ ├── Time │ │ ├── GameTime.cs │ │ └── Updatetime.cs │ ├── Tools │ │ └── CharacterDatabaseCleaner.cs │ ├── Warden │ │ ├── CategoryCheck.cs │ │ ├── ClientWardenModule.cs │ │ ├── Modules │ │ │ ├── WardenModuleMac.cs │ │ │ └── WardenModuleWin.cs │ │ ├── SHA1Randx.cs │ │ ├── Warden.cs │ │ ├── WardenActions.cs │ │ ├── WardenCheck.cs │ │ ├── WardenCheckCategory.cs │ │ ├── WardenCheckManager.cs │ │ ├── WardenCheckType.cs │ │ ├── WardenHashRequest.cs │ │ ├── WardenInitModuleRequest.cs │ │ ├── WardenModuleTransfer.cs │ │ ├── WardenModuleUse.cs │ │ └── WardenWin.cs │ ├── Weather │ │ ├── Weather.cs │ │ ├── WeatherData.cs │ │ ├── WeatherManager.cs │ │ ├── WeatherSeasonChances.cs │ │ ├── WeatherState.cs │ │ └── WeatherType.cs │ └── World │ │ ├── Autobroadcast.cs │ │ ├── ServerMessageType.cs │ │ ├── ShutdownExitCode.cs │ │ ├── ShutdownMask.cs │ │ ├── WorldManager.cs │ │ ├── WorldStateManager.cs │ │ ├── WorldStateTemplate.cs │ │ ├── WorldTimers.cs │ │ └── WorldWorldTextBuilder.cs ├── Scripts │ ├── Argus │ │ └── AntorusTheBurningThrone │ │ │ ├── GarothiWorldbreaker.cs │ │ │ └── InstanceAntorusTheBurningThrone.cs │ ├── BattleField │ │ ├── WinterGrasp.cs │ │ └── WinterGraspConst.cs │ ├── BrokenIsles │ │ └── ZoneOrderhallWarrior.cs │ ├── Draenor │ │ └── ZoneDraenorShadowmoonValley.cs │ ├── DragonIsles │ │ ├── RubyLifePools │ │ │ ├── InstanceRubyLifePools.cs │ │ │ └── RubyLifePools.cs │ │ └── ZoneTheForbiddenReach.cs │ ├── EasternKingdoms │ │ ├── AlteracValley │ │ │ ├── AlteracValley.cs │ │ │ ├── Balinda.cs │ │ │ ├── Drekthar.cs │ │ │ ├── Galvangar.cs │ │ │ └── Vanndar.cs │ │ ├── BaradinHold │ │ │ ├── Alizabal.cs │ │ │ ├── InstanceBaradinHold.cs │ │ │ ├── Occuthar.cs │ │ │ └── PitLordArgaloth.cs │ │ ├── BlackrockMountain │ │ │ ├── BlackrockCaverns │ │ │ │ ├── AscendantLordObsidius.cs │ │ │ │ ├── Beauty.cs │ │ │ │ ├── Corla.cs │ │ │ │ ├── InstanceBlackrockCaverns.cs │ │ │ │ ├── KarshSteelbender.cs │ │ │ │ └── RomoggBonecrusher.cs │ │ │ ├── BlackrockDepths │ │ │ │ ├── AmbassadorFlamelash.cs │ │ │ │ ├── CorenDirebrew.cs │ │ │ │ ├── EmperorDagranThaurissan.cs │ │ │ │ ├── GeneralAngerforge.cs │ │ │ │ ├── HighInterrogatorGerstahn.cs │ │ │ │ ├── InstanceBlackrockDepths.cs │ │ │ │ ├── Magmus.cs │ │ │ │ ├── MoiraBronzebeard.cs │ │ │ │ └── TombOfSeven.cs │ │ │ ├── BlackrockSpire │ │ │ │ ├── Drakkisath.cs │ │ │ │ ├── GizrulTheSlavener.cs │ │ │ │ ├── Gyth.cs │ │ │ │ ├── Halycon.cs │ │ │ │ ├── HighlordOmokk.cs │ │ │ │ ├── InstanceBlackrockSpire.cs │ │ │ │ ├── LordValthalak.cs │ │ │ │ ├── MotherSmolderweb.cs │ │ │ │ ├── OverlordWyrmthalak.cs │ │ │ │ ├── PyroguardEmberseer.cs │ │ │ │ ├── QuartermasterZigris.cs │ │ │ │ ├── RendBlackhand.cs │ │ │ │ ├── ShadowHunterVoshgajin.cs │ │ │ │ ├── TheBeast.cs │ │ │ │ ├── UrokDoomhowl.cs │ │ │ │ └── WarmasterVoone.cs │ │ │ ├── BlackwingLair │ │ │ │ ├── BroodlordLashlayer.cs │ │ │ │ ├── Chromaggus.cs │ │ │ │ ├── Ebonroc.cs │ │ │ │ ├── Firemaw.cs │ │ │ │ ├── Flamegor.cs │ │ │ │ ├── InstanceBlackwingLair.cs │ │ │ │ ├── Nefarian.cs │ │ │ │ ├── Razorgore.cs │ │ │ │ └── Vaelastrasz.cs │ │ │ └── MoltenCore │ │ │ │ ├── BaronGeddon.cs │ │ │ │ ├── Garr.cs │ │ │ │ ├── Gehennas.cs │ │ │ │ ├── Golemagg.cs │ │ │ │ ├── InstanceMoltenCore.cs │ │ │ │ ├── Lucifron.cs │ │ │ │ ├── Magmadar.cs │ │ │ │ ├── MajordomoExecutus.cs │ │ │ │ ├── Ragnaros.cs │ │ │ │ ├── Shazzrah.cs │ │ │ │ └── SulfuronHarbinger.cs │ │ ├── Deadmines │ │ │ ├── Bosses │ │ │ │ ├── boss_admiral_ripsnarl.cs │ │ │ │ ├── boss_captain_cookie.cs │ │ │ │ ├── boss_foe_reaper_5000.cs │ │ │ │ ├── boss_glubtok.cs │ │ │ │ ├── boss_helix_gearbreaker.cs │ │ │ │ └── boss_vanessa_vancleef.cs │ │ │ ├── DMAcievement.cs │ │ │ ├── DMCreatures.cs │ │ │ ├── DMData.cs │ │ │ ├── DMGameObjects.cs │ │ │ ├── DMSharedSpells.cs │ │ │ ├── DMSound.cs │ │ │ ├── DMSpells.cs │ │ │ ├── GameObjects │ │ │ │ ├── go_deadmines_tp.cs │ │ │ │ ├── go_defias_cannon.cs │ │ │ │ └── go_heavy_door.cs │ │ │ ├── InstanceDeadmines.cs │ │ │ ├── NPC │ │ │ │ ├── npc_captain_cookie_bad_food.cs │ │ │ │ ├── npc_captain_cookie_cauldron.cs │ │ │ │ ├── npc_captain_cookie_good_food.cs │ │ │ │ ├── npc_deadmines_bird.cs │ │ │ │ ├── npc_defias_bloodwizard.cs │ │ │ │ ├── npc_defias_cannon.cs │ │ │ │ ├── npc_defias_enforcer.cs │ │ │ │ ├── npc_defias_envoker.cs │ │ │ │ ├── npc_defias_shadowguard.cs │ │ │ │ ├── npc_defias_watcher.cs │ │ │ │ ├── npc_enraged_worgen_dm.cs │ │ │ │ ├── npc_glubtok_dm.cs │ │ │ │ ├── npc_goblin_engineer.cs │ │ │ │ ├── npc_goblin_overseer.cs │ │ │ │ ├── npc_helix_crew.cs │ │ │ │ ├── npc_helix_dm.cs │ │ │ │ ├── npc_icycle_dm.cs │ │ │ │ ├── npc_james_dm.cs │ │ │ │ ├── npc_lightning_orbs.cs │ │ │ │ ├── npc_lumbering_oaf.cs │ │ │ │ ├── npc_magma_pull.cs │ │ │ │ ├── npc_mechanical_dm.cs │ │ │ │ ├── npc_mining_monkey.cs │ │ │ │ ├── npc_mining_powder.cs │ │ │ │ ├── npc_note.cs │ │ │ │ ├── npc_oaf_lackey.cs │ │ │ │ ├── npc_ogre_henchman.cs │ │ │ │ ├── npc_rope_away.cs │ │ │ │ ├── npc_rope_ship.cs │ │ │ │ ├── npc_sticky_bomb.cs │ │ │ │ ├── npc_vanessa_anchor_bunny.cs │ │ │ │ ├── npc_vanessa_intro.cs │ │ │ │ ├── npc_vanessa_nightmare.cs │ │ │ │ └── npc_vaporAI.cs │ │ │ └── Spells │ │ │ │ ├── spell_captain_cookie_nauseated.cs │ │ │ │ └── spell_captain_cookie_throw_food_targeting.cs │ │ ├── Gnomeregan │ │ │ └── InstanceGnomeregan.cs │ │ ├── Karazhan │ │ │ ├── Curator.cs │ │ │ ├── InstanceKarazhan.cs │ │ │ ├── MaidenOfVirtue.cs │ │ │ ├── Midnight.cs │ │ │ ├── Moroes.cs │ │ │ ├── Netherspite.cs │ │ │ ├── Nightbane.cs │ │ │ ├── Opera.cs │ │ │ ├── PrinceMalchezaar.cs │ │ │ ├── ShadeOfAran.cs │ │ │ └── TerestianIllhoof.cs │ │ └── MagistersTerrace │ │ │ ├── FelbloodKaelthas.cs │ │ │ ├── InstanceMagistersTerrace.cs │ │ │ ├── PriestessDelrissa.cs │ │ │ ├── SelinFireheart.cs │ │ │ └── Vexallus.cs │ ├── Events │ │ ├── Brewfest.cs │ │ ├── HallowsEnd.cs │ │ ├── LoveIsInTheAir.cs │ │ ├── LunarFestival.cs │ │ ├── Midsummer.cs │ │ ├── PilgrimsBounty.cs │ │ └── WinterVeil.cs │ ├── Pets │ │ ├── DeathKnight.cs │ │ ├── Generic.cs │ │ ├── Hunter.cs │ │ ├── Mage.cs │ │ ├── Priest.cs │ │ ├── Shaman.cs │ │ └── Warlock │ │ │ ├── npc_pet_warlock_darkglare.cs │ │ │ ├── npc_pet_warlock_wild_imp.cs │ │ │ ├── npc_warl_demonic_gateway.cs │ │ │ ├── npc_warl_fel_lord.cs │ │ │ ├── npc_warl_felguard.cs │ │ │ ├── npc_warl_vilefield.cs │ │ │ ├── npc_warlock_blasphemy.cs │ │ │ ├── npc_warlock_doomguard.cs │ │ │ ├── npc_warlock_dreadstalker.cs │ │ │ ├── npc_warlock_infernal.cs │ │ │ └── npc_warlock_soul_effigy.cs │ ├── Scripts.csproj │ ├── Smart │ │ └── SmartAI.cs │ ├── SpellFixes │ │ └── Warlock │ │ │ ├── BuringRushSpellFix.cs │ │ │ └── PowerOverwhelmingSpellFix.cs │ ├── Spells │ │ ├── DeathKnight │ │ │ ├── CreatureIds.cs │ │ │ ├── DeathKnightSpells.cs │ │ │ ├── Misc.cs │ │ │ ├── at_dk_antimagic_zone.cs │ │ │ ├── at_dk_death_and_decay.cs │ │ │ ├── at_dk_decomposing_aura.cs │ │ │ ├── at_dk_defile.cs │ │ │ ├── at_dk_unholy_aura.cs │ │ │ ├── aura_dk_defile.cs │ │ │ ├── aura_dk_virulent_plague.cs │ │ │ ├── aura_grip_of_the_dead.cs │ │ │ ├── aura_inexorable_assault.cs │ │ │ ├── dark_simulacrum.cs │ │ │ ├── npc_dk_defile.cs │ │ │ ├── spell_dk_advantage_t10_4p.cs │ │ │ ├── spell_dk_anti_magic_barrier.cs │ │ │ ├── spell_dk_anti_magic_shell.cs │ │ │ ├── spell_dk_anti_magic_shell_self.cs │ │ │ ├── spell_dk_army_periodic_taunt.cs │ │ │ ├── spell_dk_army_transform.cs │ │ │ ├── spell_dk_blighted_rune_weapon.cs │ │ │ ├── spell_dk_blood_boil.cs │ │ │ ├── spell_dk_blood_mirror.cs │ │ │ ├── spell_dk_blood_shield.cs │ │ │ ├── spell_dk_bloodworms.cs │ │ │ ├── spell_dk_bone_shield.cs │ │ │ ├── spell_dk_bonestorm.cs │ │ │ ├── spell_dk_breath_of_sindragosa.cs │ │ │ ├── spell_dk_chains_of_ice.cs │ │ │ ├── spell_dk_chilblains.cs │ │ │ ├── spell_dk_coil_of_devastation.cs │ │ │ ├── spell_dk_commander_of_the_dead.cs │ │ │ ├── spell_dk_crimsom_scourge.cs │ │ │ ├── spell_dk_dancing_rune_weapon.cs │ │ │ ├── spell_dk_death_and_decay_AuraScript.cs │ │ │ ├── spell_dk_death_coil.cs │ │ │ ├── spell_dk_death_gate.cs │ │ │ ├── spell_dk_death_gate_293891.cs │ │ │ ├── spell_dk_death_grip_initial.cs │ │ │ ├── spell_dk_death_pact.cs │ │ │ ├── spell_dk_death_siphon.cs │ │ │ ├── spell_dk_death_strike.cs │ │ │ ├── spell_dk_death_strike_enabler.cs │ │ │ ├── spell_dk_defile_aura.cs │ │ │ ├── spell_dk_desecrated_ground.cs │ │ │ ├── spell_dk_empower_rune_weapon.cs │ │ │ ├── spell_dk_epidemic.cs │ │ │ ├── spell_dk_festering_strike.cs │ │ │ ├── spell_dk_festering_wound_damage.cs │ │ │ ├── spell_dk_frost_strike.cs │ │ │ ├── spell_dk_frostscythe.cs │ │ │ ├── spell_dk_frozen_pulse.cs │ │ │ ├── spell_dk_ghoul_claw.cs │ │ │ ├── spell_dk_ghoul_explode.cs │ │ │ ├── spell_dk_ghoul_gnaw.cs │ │ │ ├── spell_dk_ghoul_huddle.cs │ │ │ ├── spell_dk_ghoul_leap.cs │ │ │ ├── spell_dk_glacial_advance.cs │ │ │ ├── spell_dk_glyph_of_scourge_strike_script.cs │ │ │ ├── spell_dk_gorefiends_grasp.cs │ │ │ ├── spell_dk_harbinger_of_doom_aura.cs │ │ │ ├── spell_dk_howling_blast.cs │ │ │ ├── spell_dk_icy_touch.cs │ │ │ ├── spell_dk_item_t17_frost_4p_driver.cs │ │ │ ├── spell_dk_item_t17_frost_4p_driver_periodic.cs │ │ │ ├── spell_dk_mark_of_blood.cs │ │ │ ├── spell_dk_marrowrend.cs │ │ │ ├── spell_dk_necrosis.cs │ │ │ ├── spell_dk_obliterate.cs │ │ │ ├── spell_dk_pet_geist_transform.cs │ │ │ ├── spell_dk_pet_skeleton_transform.cs │ │ │ ├── spell_dk_pillar_of_frost.cs │ │ │ ├── spell_dk_plague_leech.cs │ │ │ ├── spell_dk_post_coil_or_epidemic.cs │ │ │ ├── spell_dk_presence_AuraScript.cs │ │ │ ├── spell_dk_presence_SpellScript.cs │ │ │ ├── spell_dk_purgatory.cs │ │ │ ├── spell_dk_purgatory_absorb.cs │ │ │ ├── spell_dk_pvp_4p_bonus.cs │ │ │ ├── spell_dk_raise_dead.cs │ │ │ ├── spell_dk_remorseless_winter_damage.cs │ │ │ ├── spell_dk_rime.cs │ │ │ ├── spell_dk_runic_empowerment.cs │ │ │ ├── spell_dk_scourge_strike.cs │ │ │ ├── spell_dk_scourge_strike_triggered.cs │ │ │ ├── spell_dk_soul_reaper.cs │ │ │ ├── spell_dk_tombstone.cs │ │ │ ├── spell_dk_unholy_assault.cs │ │ │ ├── spell_dk_unholy_blight.cs │ │ │ ├── spell_dk_unholy_frenzy.cs │ │ │ ├── spell_dk_vampiric_blood.cs │ │ │ ├── spell_dk_vile_contagion.cs │ │ │ └── spell_dk_will_of_the_necropolis.cs │ │ ├── DemonHunter │ │ │ ├── AreaTriggerIds.cs │ │ │ ├── DH_DisableDoubleJump_OnMount.cs │ │ │ ├── DemonHunterSpells.cs │ │ │ ├── NemesisSpells.cs │ │ │ ├── ShatteredSoulsSpells.cs │ │ │ ├── areatrigger_dh_sigil_of_chains.cs │ │ │ ├── areatrigger_dh_sigil_of_flame.cs │ │ │ ├── areatrigger_dh_sigil_of_misery.cs │ │ │ ├── areatrigger_dh_sigil_of_silence.cs │ │ │ ├── at_demon_hunter_demonic_trample.cs │ │ │ ├── at_demon_hunter_mana_rift.cs │ │ │ ├── at_dh_artifact_fury_of_the_illidari.cs │ │ │ ├── at_dh_artifact_inner_demons.cs │ │ │ ├── at_dh_darkness.cs │ │ │ ├── at_shattered_soul_fragment.cs │ │ │ ├── auraData.cs │ │ │ ├── dh_shattered_souls.cs │ │ │ ├── event_dh_infernal_strike.cs │ │ │ ├── spell_demon_hunter_chaos_strike.cs │ │ │ ├── spell_demon_hunter_eye_beam_damage.cs │ │ │ ├── spell_demon_hunter_mana_break.cs │ │ │ ├── spell_demon_hunter_metamorphosis_buffs.cs │ │ │ ├── spell_demon_hunter_pain.cs │ │ │ ├── spell_demon_hunter_rain_from_above.cs │ │ │ ├── spell_demon_hunter_trail_of_ruin.cs │ │ │ ├── spell_demon_hunter_unending_hatred.cs │ │ │ ├── spell_dh_annihilation.cs │ │ │ ├── spell_dh_artifact_anguish.cs │ │ │ ├── spell_dh_artifact_anguish_damage.cs │ │ │ ├── spell_dh_artifact_charred_warblades.cs │ │ │ ├── spell_dh_artifact_deceivers_fury.cs │ │ │ ├── spell_dh_artifact_demon_speed.cs │ │ │ ├── spell_dh_artifact_fiery_demise.cs │ │ │ ├── spell_dh_artifact_fueled_by_pain.cs │ │ │ ├── spell_dh_artifact_inner_demons.cs │ │ │ ├── spell_dh_artifact_overwhelming_power.cs │ │ │ ├── spell_dh_artifact_rage_of_the_illidari.cs │ │ │ ├── spell_dh_artifact_soul_carver_AuraScript.cs │ │ │ ├── spell_dh_artifact_soul_carver_SpellScript.cs │ │ │ ├── spell_dh_awaken_the_demon.cs │ │ │ ├── spell_dh_blade_dance.cs │ │ │ ├── spell_dh_blade_dance_damage.cs │ │ │ ├── spell_dh_blade_turning.cs │ │ │ ├── spell_dh_bloodlet.cs │ │ │ ├── spell_dh_chaos_cleave.cs │ │ │ ├── spell_dh_chaos_strike.cs │ │ │ ├── spell_dh_chaos_strike_specless.cs │ │ │ ├── spell_dh_consume_soul_missile.cs │ │ │ ├── spell_dh_darkness_absorb.cs │ │ │ ├── spell_dh_demon_spikes.cs │ │ │ ├── spell_dh_demonic_appetite.cs │ │ │ ├── spell_dh_demonic_infusion.cs │ │ │ ├── spell_dh_desperate_instincts.cs │ │ │ ├── spell_dh_eye_beam.cs │ │ │ ├── spell_dh_eye_of_leotheras.cs │ │ │ ├── spell_dh_fel_barrage.cs │ │ │ ├── spell_dh_fel_barrage_aura.cs │ │ │ ├── spell_dh_fel_barrage_damage.cs │ │ │ ├── spell_dh_fel_devastation.cs │ │ │ ├── spell_dh_fel_devastation_damage.cs │ │ │ ├── spell_dh_fel_eruption.cs │ │ │ ├── spell_dh_fel_lance.cs │ │ │ ├── spell_dh_fel_rush.cs │ │ │ ├── spell_dh_fel_rush_damage.cs │ │ │ ├── spell_dh_fel_rush_dash_AuraScript.cs │ │ │ ├── spell_dh_fel_rush_dash_SpellScript.cs │ │ │ ├── spell_dh_fel_rush_dash_ground.cs │ │ │ ├── spell_dh_fel_rush_specless.cs │ │ │ ├── spell_dh_felblade.cs │ │ │ ├── spell_dh_fiery_brand.cs │ │ │ ├── spell_dh_fiery_brand_dot.cs │ │ │ ├── spell_dh_first_blood.cs │ │ │ ├── spell_dh_fracture.cs │ │ │ ├── spell_dh_frailty.cs │ │ │ ├── spell_dh_glide.cs │ │ │ ├── spell_dh_glide_AuraScript.cs │ │ │ ├── spell_dh_glide_timer.cs │ │ │ ├── spell_dh_immolation_aura.cs │ │ │ ├── spell_dh_immolation_aura_damage.cs │ │ │ ├── spell_dh_infernal_strike.cs │ │ │ ├── spell_dh_intimidated.cs │ │ │ ├── spell_dh_jagged_spikes.cs │ │ │ ├── spell_dh_last_resort.cs │ │ │ ├── spell_dh_master_of_the_glaive.cs │ │ │ ├── spell_dh_metamorphosis.cs │ │ │ ├── spell_dh_metamorphosis_immunity.cs │ │ │ ├── spell_dh_nemesis.cs │ │ │ ├── spell_dh_nether_bond.cs │ │ │ ├── spell_dh_nether_bond_periodic.cs │ │ │ ├── spell_dh_prepared.cs │ │ │ ├── spell_dh_razor_spikes.cs │ │ │ ├── spell_dh_reverse_magic.cs │ │ │ ├── spell_dh_shattered_souls_missile.cs │ │ │ ├── spell_dh_shear_proc.cs │ │ │ ├── spell_dh_sigil_of_chains.cs │ │ │ ├── spell_dh_solitude.cs │ │ │ ├── spell_dh_soul_barrier.cs │ │ │ ├── spell_dh_soul_cleave.cs │ │ │ ├── spell_dh_soul_cleave_damage.cs │ │ │ ├── spell_dh_soul_fragment_heals.cs │ │ │ ├── spell_dh_spirit_bomb.cs │ │ │ └── spell_dh_vengeful_retreat_damage.cs │ │ ├── Druid │ │ │ ├── BalanceAffinitySpells.cs │ │ │ ├── BearFormSpells.cs │ │ │ ├── BloodTalonsSpells.cs │ │ │ ├── CatFormSpells.cs │ │ │ ├── DruidFlamesSpells.cs │ │ │ ├── DruidForms.cs │ │ │ ├── DruidSpellIds.cs │ │ │ ├── DruidSpells.cs │ │ │ ├── EfflorescenceSpells.cs │ │ │ ├── GoreSpells.cs │ │ │ ├── LifebloomSpells.cs │ │ │ ├── MaimSpells.cs │ │ │ ├── MoonfireSpells.cs │ │ │ ├── PredatorySwiftnessSpells.cs │ │ │ ├── RakeSpells.cs │ │ │ ├── SavageRoarSpells.cs │ │ │ ├── ShapeshiftFormSpells.cs │ │ │ ├── SkullBashSpells.cs │ │ │ ├── SoulOfTheForestSpells.cs │ │ │ ├── StarfallSpells.cs │ │ │ ├── SunfireSpells.cs │ │ │ ├── SurvivalInstinctsSpells.cs │ │ │ ├── UrsolsVortexSpells.cs │ │ │ ├── at_dru_lunar_beam.cs │ │ │ ├── at_dru_starfall.cs │ │ │ ├── at_dru_ursol_vortex.cs │ │ │ ├── aura_dru_astral_form.cs │ │ │ ├── aura_dru_charm_woodland_creature.cs │ │ │ ├── aura_dru_feral_affinity.cs │ │ │ ├── aura_dru_frenzied_regeneration.cs │ │ │ ├── aura_dru_restoration_affinity.cs │ │ │ ├── dru_predator.cs │ │ │ ├── feral_spells.cs │ │ │ ├── incarnation_tree_of_life.cs │ │ │ ├── npc_dru_efflorescence.cs │ │ │ ├── spell_dru_activate_cat_form.cs │ │ │ ├── spell_dru_balance_affinity_dps.cs │ │ │ ├── spell_dru_balance_affinity_resto.cs │ │ │ ├── spell_dru_barkskin.cs │ │ │ ├── spell_dru_bear_form.cs │ │ │ ├── spell_dru_berserk.cs │ │ │ ├── spell_dru_blessing_of_elune.cs │ │ │ ├── spell_dru_blessing_of_the_ancients.cs │ │ │ ├── spell_dru_brambles.cs │ │ │ ├── spell_dru_bristling_fur.cs │ │ │ ├── spell_dru_brutal_slash.cs │ │ │ ├── spell_dru_cat_form.cs │ │ │ ├── spell_dru_cenarion_ward.cs │ │ │ ├── spell_dru_cenarion_ward_hot.cs │ │ │ ├── spell_dru_cultivation.cs │ │ │ ├── spell_dru_dash.cs │ │ │ ├── spell_dru_denmother.cs │ │ │ ├── spell_dru_earthwarden.cs │ │ │ ├── spell_dru_eclipse_aura.cs │ │ │ ├── spell_dru_eclipse_common.cs │ │ │ ├── spell_dru_eclipse_dummy.cs │ │ │ ├── spell_dru_eclipse_ooc.cs │ │ │ ├── spell_dru_efflorescence.cs │ │ │ ├── spell_dru_efflorescence_aura.cs │ │ │ ├── spell_dru_efflorescence_heal.cs │ │ │ ├── spell_dru_essence_of_ghanir.cs │ │ │ ├── spell_dru_ferocious_bite.cs │ │ │ ├── spell_dru_flourish.cs │ │ │ ├── spell_dru_forms_trinket.cs │ │ │ ├── spell_dru_galactic_guardian.cs │ │ │ ├── spell_dru_glyph_of_starfire_proc.cs │ │ │ ├── spell_dru_glyph_of_stars.cs │ │ │ ├── spell_dru_gore.cs │ │ │ ├── spell_dru_incapacitating_roar.cs │ │ │ ├── spell_dru_incarnation_chosen_of_elune.cs │ │ │ ├── spell_dru_incarnation_guardian_of_ursoc.cs │ │ │ ├── spell_dru_incarnation_king_of_the_jungle.cs │ │ │ ├── spell_dru_infected_wound.cs │ │ │ ├── spell_dru_infected_wounds.cs │ │ │ ├── spell_dru_innervate.cs │ │ │ ├── spell_dru_item_t6_trinket.cs │ │ │ ├── spell_dru_lifebloom.cs │ │ │ ├── spell_dru_lunar_inspiration.cs │ │ │ ├── spell_dru_maim.cs │ │ │ ├── spell_dru_mass_entanglement.cs │ │ │ ├── spell_dru_maul_bear.cs │ │ │ ├── spell_dru_moonfire.cs │ │ │ ├── spell_dru_natures_balance.cs │ │ │ ├── spell_dru_nourish.cs │ │ │ ├── spell_dru_omen_of_clarity.cs │ │ │ ├── spell_dru_overgrowth.cs │ │ │ ├── spell_dru_photosynthesis.cs │ │ │ ├── spell_dru_predatory_swiftness.cs │ │ │ ├── spell_dru_predatory_swiftness_aura.cs │ │ │ ├── spell_dru_primal_fury.cs │ │ │ ├── spell_dru_primal_vitality.cs │ │ │ ├── spell_dru_prowl.cs │ │ │ ├── spell_dru_rage_of_the_sleeper.cs │ │ │ ├── spell_dru_rake.cs │ │ │ ├── spell_dru_regrowth.cs │ │ │ ├── spell_dru_rejuvenation.cs │ │ │ ├── spell_dru_rejuvenation_AuraScript.cs │ │ │ ├── spell_dru_rip.cs │ │ │ ├── spell_dru_savage_roar.cs │ │ │ ├── spell_dru_savage_roar_AuraScript.cs │ │ │ ├── spell_dru_shred.cs │ │ │ ├── spell_dru_skull_bash.cs │ │ │ ├── spell_dru_skull_bash_charge.cs │ │ │ ├── spell_dru_stampeding_roar.cs │ │ │ ├── spell_dru_starfall.cs │ │ │ ├── spell_dru_starfall_dummy.cs │ │ │ ├── spell_dru_starsurge.cs │ │ │ ├── spell_dru_sunfire.cs │ │ │ ├── spell_dru_survival_instincts_AuraScript.cs │ │ │ ├── spell_dru_swift_flight_passive.cs │ │ │ ├── spell_dru_swiftmend.cs │ │ │ ├── spell_dru_swipe.cs │ │ │ ├── spell_dru_t10_balance_4p_bonus.cs │ │ │ ├── spell_dru_t10_restoration_4p_bonus.cs │ │ │ ├── spell_dru_t10_restoration_4p_bonus_dummy.cs │ │ │ ├── spell_dru_t3_6p_bonus.cs │ │ │ ├── spell_dru_t3_8p_bonus.cs │ │ │ ├── spell_dru_t4_2p_bonus.cs │ │ │ ├── spell_dru_teleport_moonglade.cs │ │ │ ├── spell_dru_thrash.cs │ │ │ ├── spell_dru_thrash_AuraScript.cs │ │ │ ├── spell_dru_thrash_cat.cs │ │ │ ├── spell_dru_tiger_dash.cs │ │ │ ├── spell_dru_tiger_dash_AuraScript.cs │ │ │ ├── spell_dru_tranquility_heal.cs │ │ │ ├── spell_dru_travel_form_AuraScript.cs │ │ │ ├── spell_dru_travel_form_dummy.cs │ │ │ ├── spell_dru_travel_form_dummy_AuraScript.cs │ │ │ ├── spell_dru_typhoon.cs │ │ │ ├── spell_dru_ursols_vortex.cs │ │ │ ├── spell_dru_wild_charge_moonkin.cs │ │ │ ├── spell_dru_wild_growth.cs │ │ │ ├── spell_dru_wild_growth_AuraScript.cs │ │ │ ├── spell_dru_ysera_gift.cs │ │ │ ├── spell_druid_earthwarden.cs │ │ │ ├── spell_druid_earthwarden_triggered.cs │ │ │ ├── spell_druid_lunar_strike.cs │ │ │ ├── spell_druid_pulverize.cs │ │ │ ├── spell_druid_rend_and_tear.cs │ │ │ ├── spell_druid_solar_wrath.cs │ │ │ └── spell_feral_frenzy.cs │ │ ├── Evoker │ │ │ ├── EvokerSpells.cs │ │ │ ├── at_evoker_emerald_blossom.cs │ │ │ ├── at_evoker_firestorm.cs │ │ │ ├── at_evoker_fluttering_seedling.cs │ │ │ ├── at_evoker_landslide.cs │ │ │ ├── at_evoker_landslide_root.cs │ │ │ ├── at_evoker_resonating_sphere.cs │ │ │ ├── at_evoker_snapfire.cs │ │ │ ├── at_evoker_temporal_anomaly.cs │ │ │ ├── aura_evoker_ancient_flame.cs │ │ │ ├── aura_evoker_blast_furnace.cs │ │ │ ├── aura_evoker_burnout.cs │ │ │ ├── aura_evoker_call_of_ysera.cs │ │ │ ├── aura_evoker_causality.cs │ │ │ ├── aura_evoker_charged_blast.cs │ │ │ ├── aura_evoker_chrono_loop.cs │ │ │ ├── aura_evoker_crippling_force.cs │ │ │ ├── aura_evoker_cycle_of_life.cs │ │ │ ├── aura_evoker_dream_breath_charged.cs │ │ │ ├── aura_evoker_echo.cs │ │ │ ├── aura_evoker_emerald_communion.cs │ │ │ ├── aura_evoker_energy_loop.cs │ │ │ ├── aura_evoker_essence_burst.cs │ │ │ ├── aura_evoker_exhilarating_burst.cs │ │ │ ├── aura_evoker_eye_of_infinity.cs │ │ │ ├── aura_evoker_feed_the_flames.cs │ │ │ ├── aura_evoker_field_of_dreams.cs │ │ │ ├── aura_evoker_fire_breath_charged.cs │ │ │ ├── aura_evoker_life_givers_flame.cs │ │ │ ├── aura_evoker_lifebind.cs │ │ │ ├── aura_evoker_precognition.cs │ │ │ ├── aura_evoker_regenerative_magic.cs │ │ │ ├── aura_evoker_renewing_blaze.cs │ │ │ ├── aura_evoker_scarlet_adaptation.cs │ │ │ ├── aura_evoker_scintillation.cs │ │ │ ├── aura_evoker_snapfire.cs │ │ │ ├── aura_evoker_source_of_magic.cs │ │ │ ├── aura_evoker_stasis.cs │ │ │ ├── aura_evoker_stasis_orb_1.cs │ │ │ ├── aura_evoker_stasis_orb_2.cs │ │ │ ├── aura_evoker_stasis_orb_3.cs │ │ │ ├── aura_evoker_stasis_override_aura.cs │ │ │ ├── aura_evoker_temporal_compression.cs │ │ │ ├── aura_evoker_temporal_compression_aura.cs │ │ │ ├── npc_evoker_cycle_of_life.cs │ │ │ ├── player_evoker_script.cs │ │ │ ├── spell_evoker_animosity.cs │ │ │ ├── spell_evoker_azure_essence_burst.cs │ │ │ ├── spell_evoker_azure_ruby_essence_burst.cs │ │ │ ├── spell_evoker_azure_strike.cs │ │ │ ├── spell_evoker_call_of_ysera.cs │ │ │ ├── spell_evoker_catalyze.cs │ │ │ ├── spell_evoker_cosmic_evoker_visage.cs │ │ │ ├── spell_evoker_cycle_of_life.cs │ │ │ ├── spell_evoker_deep_breath.cs │ │ │ ├── spell_evoker_deep_breath_effect.cs │ │ │ ├── spell_evoker_dragonrage.cs │ │ │ ├── spell_evoker_dream_breath.cs │ │ │ ├── spell_evoker_dream_breath_charged.cs │ │ │ ├── spell_evoker_empath.cs │ │ │ ├── spell_evoker_essence_burst.cs │ │ │ ├── spell_evoker_eternity_surge.cs │ │ │ ├── spell_evoker_everburning_flame.cs │ │ │ ├── spell_evoker_fire_breath.cs │ │ │ ├── spell_evoker_fire_breath_charged.cs │ │ │ ├── spell_evoker_flow_state.cs │ │ │ ├── spell_evoker_glide.cs │ │ │ ├── spell_evoker_golden_hour.cs │ │ │ ├── spell_evoker_iridescence_blue.cs │ │ │ ├── spell_evoker_iridescence_blue_aura.cs │ │ │ ├── spell_evoker_iridescence_blue_spell.cs │ │ │ ├── spell_evoker_iridescence_red.cs │ │ │ ├── spell_evoker_iridescence_red_aura.cs │ │ │ ├── spell_evoker_iridescence_red_cast.cs │ │ │ ├── spell_evoker_just_in_time.cs │ │ │ ├── spell_evoker_landslide.cs │ │ │ ├── spell_evoker_leaping_flames.cs │ │ │ ├── spell_evoker_leaping_flames_cast.cs │ │ │ ├── spell_evoker_life_givers_flame.cs │ │ │ ├── spell_evoker_life_givers_flame_cast.cs │ │ │ ├── spell_evoker_lifebind.cs │ │ │ ├── spell_evoker_lifebind_cast.cs │ │ │ ├── spell_evoker_lifeforce_mender.cs │ │ │ ├── spell_evoker_living_flame.cs │ │ │ ├── spell_evoker_living_flame_damage.cs │ │ │ ├── spell_evoker_nozdormus_teachings.cs │ │ │ ├── spell_evoker_obsidian_mettle.cs │ │ │ ├── spell_evoker_ouroboros.cs │ │ │ ├── spell_evoker_ouroboros_cast.cs │ │ │ ├── spell_evoker_overawe.cs │ │ │ ├── spell_evoker_panacea.cs │ │ │ ├── spell_evoker_power_swell.cs │ │ │ ├── spell_evoker_pyre.cs │ │ │ ├── spell_evoker_resonating_sphere.cs │ │ │ ├── spell_evoker_roar_of_exhilaration.cs │ │ │ ├── spell_evoker_ruby_embers.cs │ │ │ ├── spell_evoker_ruby_essence_burst.cs │ │ │ ├── spell_evoker_rush_of_vitality.cs │ │ │ ├── spell_evoker_scintillation.cs │ │ │ ├── spell_evoker_snapfire.cs │ │ │ ├── spell_evoker_soar.cs │ │ │ ├── spell_evoker_source_of_magic.cs │ │ │ ├── spell_evoker_source_of_magic_trigger.cs │ │ │ ├── spell_evoker_spiritbloom.cs │ │ │ └── spell_evoker_stasis_override_cast.cs │ │ ├── Generic │ │ │ ├── AchievementIds.cs │ │ │ ├── CorruptingPlagueSearcher.cs │ │ │ ├── CreatureIds.cs │ │ │ ├── EmoteIds.cs │ │ │ ├── GenericSpellIds.cs │ │ │ ├── Misc.cs │ │ │ ├── ModelIds.cs │ │ │ ├── QuestIds.cs │ │ │ ├── RequiredMixologySpells.cs │ │ │ ├── StasisFieldSearcher.cs │ │ │ ├── TextIds.cs │ │ │ ├── spell_clear_all.cs │ │ │ ├── spell_corrupting_plague_aura.cs │ │ │ ├── spell_defender_of_azeroth_death_gate_selector.cs │ │ │ ├── spell_defender_of_azeroth_speak_with_mograine.cs │ │ │ ├── spell_ethereal_pet_aura.cs │ │ │ ├── spell_ethereal_pet_aura_remove.cs │ │ │ ├── spell_ethereal_pet_onsummon.cs │ │ │ ├── spell_freezing_circle.cs │ │ │ ├── spell_gen_5000_gold.cs │ │ │ ├── spell_gen_absorb0_hitlimit1.cs │ │ │ ├── spell_gen_adaptive_warding.cs │ │ │ ├── spell_gen_allow_cast_from_item_only.cs │ │ │ ├── spell_gen_ancestral_call.cs │ │ │ ├── spell_gen_anchor_here.cs │ │ │ ├── spell_gen_anetheron_summon_towering_infernal.cs │ │ │ ├── spell_gen_animal_blood.cs │ │ │ ├── spell_gen_arena_drink.cs │ │ │ ├── spell_gen_aura_of_fear.cs │ │ │ ├── spell_gen_av_drekthar_presence.cs │ │ │ ├── spell_gen_azgalor_rain_of_fire_hellfire_citadel.cs │ │ │ ├── spell_gen_bandage.cs │ │ │ ├── spell_gen_battleground_mercenary_shapeshift.cs │ │ │ ├── spell_gen_blood_reserve.cs │ │ │ ├── spell_gen_bonked.cs │ │ │ ├── spell_gen_break_shield.cs │ │ │ ├── spell_gen_burning_depths_necrolyte_image.cs │ │ │ ├── spell_gen_cannibalize.cs │ │ │ ├── spell_gen_cannon_blast.cs │ │ │ ├── spell_gen_chains_of_ice.cs │ │ │ ├── spell_gen_chaos_blast.cs │ │ │ ├── spell_gen_charmed_unit_spell_cooldown.cs │ │ │ ├── spell_gen_clear_debuffs.cs │ │ │ ├── spell_gen_clone.cs │ │ │ ├── spell_gen_clone_weapon.cs │ │ │ ├── spell_gen_clone_weapon_AuraScript.cs │ │ │ ├── spell_gen_consumption.cs │ │ │ ├── spell_gen_count_pct_from_max_hp.cs │ │ │ ├── spell_gen_create_lance.cs │ │ │ ├── spell_gen_dalaran_disguise.cs │ │ │ ├── spell_gen_darkflight.cs │ │ │ ├── spell_gen_decay_over_time_fungal_decay_AuraScript.cs │ │ │ ├── spell_gen_decay_over_time_fungal_decay_SpellScript.cs │ │ │ ├── spell_gen_decay_over_time_tail_sting_AuraScript.cs │ │ │ ├── spell_gen_decay_over_time_tail_sting_SpellScript.cs │ │ │ ├── spell_gen_decimatus_transformation_sickness.cs │ │ │ ├── spell_gen_despawn_all_summons_owned_by_caster.cs │ │ │ ├── spell_gen_despawn_aura.cs │ │ │ ├── spell_gen_despawn_self.cs │ │ │ ├── spell_gen_despawn_target.cs │ │ │ ├── spell_gen_divine_storm_cd_reset.cs │ │ │ ├── spell_gen_ds_flush_knockback.cs │ │ │ ├── spell_gen_dungeon_credit.cs │ │ │ ├── spell_gen_eject_all_passengers.cs │ │ │ ├── spell_gen_eject_passenger.cs │ │ │ ├── spell_gen_eject_passenger_with_seatId.cs │ │ │ ├── spell_gen_eject_passengers_3_8.cs │ │ │ ├── spell_gen_face_rage.cs │ │ │ ├── spell_gen_feast.cs │ │ │ ├── spell_gen_feign_death_all_flags.cs │ │ │ ├── spell_gen_feign_death_no_dyn_flag.cs │ │ │ ├── spell_gen_feign_death_no_prevent_emotes.cs │ │ │ ├── spell_gen_fishing.cs │ │ │ ├── spell_gen_furious_rage.cs │ │ │ ├── spell_gen_gadgetzan_transporter_backfire.cs │ │ │ ├── spell_gen_gift_of_naaru.cs │ │ │ ├── spell_gen_gm_freeze.cs │ │ │ ├── spell_gen_gnomish_transporter.cs │ │ │ ├── spell_gen_gryphon_wyvern_mount_check.cs │ │ │ ├── spell_gen_hate_to_50.cs │ │ │ ├── spell_gen_hate_to_75.cs │ │ │ ├── spell_gen_hate_to_zero.cs │ │ │ ├── spell_gen_hate_to_zero_caster_target.cs │ │ │ ├── spell_gen_impatient_mind.cs │ │ │ ├── spell_gen_increase_stats_buff.cs │ │ │ ├── spell_gen_interrupt.cs │ │ │ ├── spell_gen_landmine_knockback_achievement.cs │ │ │ ├── spell_gen_lifebloom.cs │ │ │ ├── spell_gen_mark_of_kazrogal_hellfire.cs │ │ │ ├── spell_gen_mark_of_kazrogal_hellfire_AuraScript.cs │ │ │ ├── spell_gen_mixology_bonus.cs │ │ │ ├── spell_gen_moss_covered_feet.cs │ │ │ ├── spell_gen_mount_check_aura.cs │ │ │ ├── spell_gen_mounted_charge.cs │ │ │ ├── spell_gen_netherbloom.cs │ │ │ ├── spell_gen_nightmare_vine.cs │ │ │ ├── spell_gen_nitrous_boost.cs │ │ │ ├── spell_gen_obsidian_armor.cs │ │ │ ├── spell_gen_oracle_wolvar_reputation.cs │ │ │ ├── spell_gen_orc_disguise.cs │ │ │ ├── spell_gen_parachute.cs │ │ │ ├── spell_gen_paralytic_poison.cs │ │ │ ├── spell_gen_pet_summoned.cs │ │ │ ├── spell_gen_pet_wait.cs │ │ │ ├── spell_gen_player_say.cs │ │ │ ├── spell_gen_pony_mount_check.cs │ │ │ ├── spell_gen_prevent_emotes.cs │ │ │ ├── spell_gen_proc_below_pct_damaged.cs │ │ │ ├── spell_gen_proc_charge_drop_only.cs │ │ │ ├── spell_gen_profession_research.cs │ │ │ ├── spell_gen_pvp_trinket.cs │ │ │ ├── spell_gen_remove_flight_auras.cs │ │ │ ├── spell_gen_remove_impairing_auras.cs │ │ │ ├── spell_gen_remove_on_full_health.cs │ │ │ ├── spell_gen_remove_on_full_health_pct.cs │ │ │ ├── spell_gen_remove_on_health_pct.cs │ │ │ ├── spell_gen_replenishment.cs │ │ │ ├── spell_gen_replenishment_AuraScript.cs │ │ │ ├── spell_gen_restoration.cs │ │ │ ├── spell_gen_reverse_cast_target_to_caster_triggered.cs │ │ │ ├── spell_gen_running_wild.cs │ │ │ ├── spell_gen_running_wild_AuraScript.cs │ │ │ ├── spell_gen_seaforium_blast.cs │ │ │ ├── spell_gen_spectator_cheer_trigger.cs │ │ │ ├── spell_gen_spirit_healer_res.cs │ │ │ ├── spell_gen_stand.cs │ │ │ ├── spell_gen_submerged.cs │ │ │ ├── spell_gen_summon_tournament_mount.cs │ │ │ ├── spell_gen_teleporting.cs │ │ │ ├── spell_gen_throw_shield.cs │ │ │ ├── spell_gen_tournament_duel.cs │ │ │ ├── spell_gen_tournament_pennant.cs │ │ │ ├── spell_gen_trainer_heal_cooldown.cs │ │ │ ├── spell_gen_trigger_exclude_caster_aura_spell.cs │ │ │ ├── spell_gen_trigger_exclude_target_aura_spell.cs │ │ │ ├── spell_gen_turkey_marker.cs │ │ │ ├── spell_gen_two_forms.cs │ │ │ ├── spell_gen_upper_deck_create_foam_sword.cs │ │ │ ├── spell_gen_vampiric_touch.cs │ │ │ ├── spell_gen_vehicle_control_link.cs │ │ │ ├── spell_gen_vehicle_scaling.cs │ │ │ ├── spell_gen_vendor_bark_trigger.cs │ │ │ ├── spell_gen_war_mode_enlisted.cs │ │ │ ├── spell_gen_wg_water.cs │ │ │ ├── spell_gen_whisper_gulch_yogg_saron_whisper.cs │ │ │ ├── spell_gen_whisper_to_controller.cs │ │ │ ├── spell_gen_whisper_to_controller_random.cs │ │ │ ├── spell_pvp_trinket_wotf_shared_cd.cs │ │ │ ├── spell_spawn_blood_pool.cs │ │ │ ├── spell_stasis_field_aura.cs │ │ │ ├── spell_steal_essence_visual.cs │ │ │ └── spell_summon_battle_pet.cs │ │ ├── Hunter │ │ │ ├── AncientHysteriaSpells.cs │ │ │ ├── DireBeastSpells.cs │ │ │ ├── HunterSpells.cs │ │ │ ├── LoneWolfes.cs │ │ │ ├── PlayerScript_black_arrow.cs │ │ │ ├── at_hun_binding_shotAI.cs │ │ │ ├── at_hun_caltropsAI.cs │ │ │ ├── at_hun_explosive_trapAI.cs │ │ │ ├── at_hun_flareAI.cs │ │ │ ├── at_hun_freezing_trapAI.cs │ │ │ ├── at_hun_sentinelAI.cs │ │ │ ├── at_hun_tar_trap_activatedAI.cs │ │ │ ├── at_hun_tar_trap_not_activatedAI.cs │ │ │ ├── aura_hun_volley.cs │ │ │ ├── aura_trailblazer.cs │ │ │ ├── spell_bursting_shot.cs │ │ │ ├── spell_hun_a_murder_of_crows.cs │ │ │ ├── spell_hun_aimed_shot.cs │ │ │ ├── spell_hun_ancient_hysteria.cs │ │ │ ├── spell_hun_arcane_shot.cs │ │ │ ├── spell_hun_aspect_cheetah.cs │ │ │ ├── spell_hun_aspect_of_the_turtle.cs │ │ │ ├── spell_hun_barbed_shot.cs │ │ │ ├── spell_hun_barrage.cs │ │ │ ├── spell_hun_beast_cleave.cs │ │ │ ├── spell_hun_beast_cleave_proc.cs │ │ │ ├── spell_hun_bestial_wrath.cs │ │ │ ├── spell_hun_call_pet.cs │ │ │ ├── spell_hun_camouflage.cs │ │ │ ├── spell_hun_carve.cs │ │ │ ├── spell_hun_chimera_shot.cs │ │ │ ├── spell_hun_dire_beast.cs │ │ │ ├── spell_hun_disengage.cs │ │ │ ├── spell_hun_exhilaration.cs │ │ │ ├── spell_hun_explosive_shot.cs │ │ │ ├── spell_hun_explosive_shot_detonate.cs │ │ │ ├── spell_hun_farstrider.cs │ │ │ ├── spell_hun_feign_death.cs │ │ │ ├── spell_hun_glaive_toss_damage.cs │ │ │ ├── spell_hun_glaive_toss_missile.cs │ │ │ ├── spell_hun_harpoon.cs │ │ │ ├── spell_hun_hunting_party.cs │ │ │ ├── spell_hun_intimidation.cs │ │ │ ├── spell_hun_kill_command.cs │ │ │ ├── spell_hun_kill_command_proc.cs │ │ │ ├── spell_hun_killer_cobra.cs │ │ │ ├── spell_hun_last_stand_pet.cs │ │ │ ├── spell_hun_lock_and_load.cs │ │ │ ├── spell_hun_lone_wolf.cs │ │ │ ├── spell_hun_masters_call.cs │ │ │ ├── spell_hun_misdirection.cs │ │ │ ├── spell_hun_misdirection_proc.cs │ │ │ ├── spell_hun_mongoose_bite.cs │ │ │ ├── spell_hun_mortal_wounds.cs │ │ │ ├── spell_hun_pet_basic_attack.cs │ │ │ ├── spell_hun_pet_cobra_spit.cs │ │ │ ├── spell_hun_pet_heart_of_the_phoenix.cs │ │ │ ├── spell_hun_pet_thunderstomp.cs │ │ │ ├── spell_hun_piercing_shot.cs │ │ │ ├── spell_hun_posthaste.cs │ │ │ ├── spell_hun_rangers_net.cs │ │ │ ├── spell_hun_rapid_fire.cs │ │ │ ├── spell_hun_raptor_strike.cs │ │ │ ├── spell_hun_roar_of_sacrifice.cs │ │ │ ├── spell_hun_scatter_shot.cs │ │ │ ├── spell_hun_sidewinders.cs │ │ │ ├── spell_hun_snake_hunter.cs │ │ │ ├── spell_hun_steady_shot.cs │ │ │ ├── spell_hun_sticky_bomb.cs │ │ │ ├── spell_hun_t9_4p_bonus.cs │ │ │ ├── spell_hun_tame_beast.cs │ │ │ ├── spell_hun_throwing_axes.cs │ │ │ ├── spell_hun_true_aim.cs │ │ │ ├── spell_hun_way_of_the_moknathal.cs │ │ │ ├── spell_hun_wild_call.cs │ │ │ └── spell_hun_windburst.cs │ │ ├── Items │ │ │ ├── CreatureIds.cs │ │ │ ├── FactionIds.cs │ │ │ ├── ItemIds.cs │ │ │ ├── ItemSpellIds.cs │ │ │ ├── ModelIds.cs │ │ │ ├── ObjectIds.cs │ │ │ ├── PartyTimeEmoteEvent.cs │ │ │ ├── QuestIds.cs │ │ │ ├── SoundIds.cs │ │ │ ├── TextIds.cs │ │ │ ├── runic_mana_injector.cs │ │ │ ├── spell_item_absorb_eye_of_grillok.cs │ │ │ ├── spell_item_aegis_of_preservation.cs │ │ │ ├── spell_item_alchemist_stone.cs │ │ │ ├── spell_item_anger_capacitor.cs │ │ │ ├── spell_item_arcane_shroud.cs │ │ │ ├── spell_item_artifical_damage.cs │ │ │ ├── spell_item_artifical_stamina.cs │ │ │ ├── spell_item_ashbringer.cs │ │ │ ├── spell_item_aura_of_madness.cs │ │ │ ├── spell_item_battle_trance.cs │ │ │ ├── spell_item_blessing_of_ancient_kings.cs │ │ │ ├── spell_item_blessing_of_faith.cs │ │ │ ├── spell_item_book_of_glyph_mastery.cs │ │ │ ├── spell_item_brittle_armor.cs │ │ │ ├── spell_item_brutal_kinship.cs │ │ │ ├── spell_item_chicken_cover.cs │ │ │ ├── spell_item_complete_raptor_capture.cs │ │ │ ├── spell_item_crazy_alchemists_potion.cs │ │ │ ├── spell_item_crystal_spire_of_karabor.cs │ │ │ ├── spell_item_darkmoon_card_greatness.cs │ │ │ ├── spell_item_deadly_precision.cs │ │ │ ├── spell_item_deadly_precision_dummy.cs │ │ │ ├── spell_item_death_choice.cs │ │ │ ├── spell_item_deathbringers_will.cs │ │ │ ├── spell_item_decahedral_dwarven_dice.cs │ │ │ ├── spell_item_defibrillate.cs │ │ │ ├── spell_item_dementia.cs │ │ │ ├── spell_item_demon_broiled_surprise.cs │ │ │ ├── spell_item_desperate_defense.cs │ │ │ ├── spell_item_deviate_fish.cs │ │ │ ├── spell_item_dimensional_ripper_area52.cs │ │ │ ├── spell_item_dimensional_ripper_everlook.cs │ │ │ ├── spell_item_dire_brew.cs │ │ │ ├── spell_item_discerning_eye_beast_dummy.cs │ │ │ ├── spell_item_echoes_of_light.cs │ │ │ ├── spell_item_eggnog.cs │ │ │ ├── spell_item_extract_gas.cs │ │ │ ├── spell_item_fate_rune_of_unsurpassed_vigor.cs │ │ │ ├── spell_item_feast.cs │ │ │ ├── spell_item_flask_of_the_north.cs │ │ │ ├── spell_item_frozen_shadoweave.cs │ │ │ ├── spell_item_gift_of_the_harvester.cs │ │ │ ├── spell_item_gnomish_death_ray.cs │ │ │ ├── spell_item_goblin_bomb_dispenser.cs │ │ │ ├── spell_item_goblin_weather_machine.cs │ │ │ ├── spell_item_greatmothers_soulcatcher.cs │ │ │ ├── spell_item_heartpierce.cs │ │ │ ├── spell_item_hourglass_sand.cs │ │ │ ├── spell_item_impale_leviroth.cs │ │ │ ├── spell_item_jom_gabbar.cs │ │ │ ├── spell_item_lifegiving_gem.cs │ │ │ ├── spell_item_mad_alchemists_potion.cs │ │ │ ├── spell_item_make_a_wish.cs │ │ │ ├── spell_item_mana_drain.cs │ │ │ ├── spell_item_map_of_the_geyser_fields.cs │ │ │ ├── spell_item_mark_of_conquest.cs │ │ │ ├── spell_item_mercurial_shield.cs │ │ │ ├── spell_item_mind_control_cap_SpellScript.cs │ │ │ ├── spell_item_mingos_fortune_generator.cs │ │ │ ├── spell_item_mirrens_drinking_hat.cs │ │ │ ├── spell_item_muisek_vessel.cs │ │ │ ├── spell_item_necrotic_touch.cs │ │ │ ├── spell_item_net_o_matic.cs │ │ │ ├── spell_item_nigh_invulnerability.cs │ │ │ ├── spell_item_nitro_boosts.cs │ │ │ ├── spell_item_nitro_boosts_backfire.cs │ │ │ ├── spell_item_noggenfogger_elixir.cs │ │ │ ├── spell_item_party_time.cs │ │ │ ├── spell_item_pendant_of_the_violet_eye.cs │ │ │ ├── spell_item_persistent_shield.cs │ │ │ ├── spell_item_pet_healing.cs │ │ │ ├── spell_item_piccolo_of_the_flaming_fire.cs │ │ │ ├── spell_item_poultryizer.cs │ │ │ ├── spell_item_power_circle.cs │ │ │ ├── spell_item_purify_helboar_meat.cs │ │ │ ├── spell_item_pygmy_oil.cs │ │ │ ├── spell_item_red_rider_air_rifle.cs │ │ │ ├── spell_item_rocket_boots.cs │ │ │ ├── spell_item_runic_healing_injector.cs │ │ │ ├── spell_item_savory_deviate_delight.cs │ │ │ ├── spell_item_scroll_of_recall.cs │ │ │ ├── spell_item_shadowmourne.cs │ │ │ ├── spell_item_shadowmourne_soul_fragment.cs │ │ │ ├── spell_item_shadows_fate.cs │ │ │ ├── spell_item_shard_of_the_scale.cs │ │ │ ├── spell_item_six_demon_bag.cs │ │ │ ├── spell_item_socrethars_stone.cs │ │ │ ├── spell_item_soul_preserver.cs │ │ │ ├── spell_item_sunwell_neck.cs │ │ │ ├── spell_item_swift_hand_justice_dummy.cs │ │ │ ├── spell_item_talisman_of_ascendance.cs │ │ │ ├── spell_item_taunt_flag_targeting.cs │ │ │ ├── spell_item_the_eye_of_diminution.cs │ │ │ ├── spell_item_toy_train_set_pulse.cs │ │ │ ├── spell_item_trigger_spell.cs │ │ │ ├── spell_item_trinket_stack.cs │ │ │ ├── spell_item_ultrasafe_transporter.cs │ │ │ ├── spell_item_underbelly_elixir.cs │ │ │ ├── spell_item_universal_remote_SpellScript.cs │ │ │ ├── spell_item_unsated_craving.cs │ │ │ ├── spell_item_unusual_compass.cs │ │ │ ├── spell_item_valanyr_hammer_of_ancient_kings.cs │ │ │ ├── spell_item_vanquished_clutches.cs │ │ │ ├── spell_item_water_strider.cs │ │ │ ├── spell_item_world_queller_focus.cs │ │ │ ├── spell_item_wormhole_pandaria.cs │ │ │ ├── spell_item_worn_troll_dice.cs │ │ │ ├── spell_item_zandalarian_charm.cs │ │ │ └── spell_magic_eater_food.cs │ │ ├── Mage │ │ │ ├── CometStormEvent.cs │ │ │ ├── MageSpells.cs │ │ │ ├── TemporalDisplacementSpells.cs │ │ │ ├── areatrigger_mage_blizzard.cs │ │ │ ├── at_mage_arcane_orb.cs │ │ │ ├── at_mage_blizzard.cs │ │ │ ├── at_mage_cinderstorm.cs │ │ │ ├── at_mage_flame_patch.cs │ │ │ ├── at_mage_frozen_orb.cs │ │ │ ├── at_mage_meteor_burn.cs │ │ │ ├── at_mage_meteor_timer.cs │ │ │ ├── at_mage_rune_of_power.cs │ │ │ ├── npc_mirror_imageAI.cs │ │ │ ├── playerscript_mage_arcane.cs │ │ │ ├── spell_mage_alter_time.cs │ │ │ ├── spell_mage_alter_time_active.cs │ │ │ ├── spell_mage_alter_time_aura.cs │ │ │ ├── spell_mage_arcane_barrage.cs │ │ │ ├── spell_mage_arcane_blast.cs │ │ │ ├── spell_mage_arcane_charge_clear.cs │ │ │ ├── spell_mage_arcane_explosion.cs │ │ │ ├── spell_mage_arcane_missiles.cs │ │ │ ├── spell_mage_arcane_missiles_damage.cs │ │ │ ├── spell_mage_blazing_barrier.cs │ │ │ ├── spell_mage_blink.cs │ │ │ ├── spell_mage_blizzard_damage.cs │ │ │ ├── spell_mage_burning_determination.cs │ │ │ ├── spell_mage_cauterize.cs │ │ │ ├── spell_mage_cauterize_AuraScript.cs │ │ │ ├── spell_mage_chain_reaction.cs │ │ │ ├── spell_mage_chilled.cs │ │ │ ├── spell_mage_chilled_to_the_core.cs │ │ │ ├── spell_mage_chrono_shift.cs │ │ │ ├── spell_mage_cinderstorm.cs │ │ │ ├── spell_mage_clearcasting.cs │ │ │ ├── spell_mage_cold_snap.cs │ │ │ ├── spell_mage_combustion.cs │ │ │ ├── spell_mage_comet_storm.cs │ │ │ ├── spell_mage_comet_storm_damage.cs │ │ │ ├── spell_mage_cone_of_cold.cs │ │ │ ├── spell_mage_conflagration.cs │ │ │ ├── spell_mage_conjure_refreshment.cs │ │ │ ├── spell_mage_counterspell.cs │ │ │ ├── spell_mage_ebonbolt.cs │ │ │ ├── spell_mage_ebonbolt_damage.cs │ │ │ ├── spell_mage_enhanced_pyrotechnics.cs │ │ │ ├── spell_mage_fingers_of_frost_AuraScript.cs │ │ │ ├── spell_mage_fire_mage_passive.cs │ │ │ ├── spell_mage_fire_on.cs │ │ │ ├── spell_mage_firestarter.cs │ │ │ ├── spell_mage_firestarter_dots.cs │ │ │ ├── spell_mage_firestarter_pvp.cs │ │ │ ├── spell_mage_flame_on.cs │ │ │ ├── spell_mage_flamestrike.cs │ │ │ ├── spell_mage_flurry.cs │ │ │ ├── spell_mage_frenetic_speed.cs │ │ │ ├── spell_mage_frostbolt.cs │ │ │ ├── spell_mage_frozen_orb.cs │ │ │ ├── spell_mage_greater_invisibility.cs │ │ │ ├── spell_mage_ice_barrier.cs │ │ │ ├── spell_mage_ice_block.cs │ │ │ ├── spell_mage_ice_lance.cs │ │ │ ├── spell_mage_ice_lance_damage.cs │ │ │ ├── spell_mage_ignite.cs │ │ │ ├── spell_mage_imp_mana_gems.cs │ │ │ ├── spell_mage_incanters_flow.cs │ │ │ ├── spell_mage_invisibility.cs │ │ │ ├── spell_mage_jouster.cs │ │ │ ├── spell_mage_jouster_buff.cs │ │ │ ├── spell_mage_kindling.cs │ │ │ ├── spell_mage_living_bomb.cs │ │ │ ├── spell_mage_living_bomb_explosion.cs │ │ │ ├── spell_mage_living_bomb_periodic.cs │ │ │ ├── spell_mage_meteor.cs │ │ │ ├── spell_mage_meteor_damage.cs │ │ │ ├── spell_mage_mirror_image_summon.cs │ │ │ ├── spell_mage_nova_talent.cs │ │ │ ├── spell_mage_overflowing_energy.cs │ │ │ ├── spell_mage_polymorph_visual.cs │ │ │ ├── spell_mage_presence_of_mind.cs │ │ │ ├── spell_mage_prismatic_barrier.cs │ │ │ ├── spell_mage_pyroblast.cs │ │ │ ├── spell_mage_pyroblast_clearcasting_driver.cs │ │ │ ├── spell_mage_ray_of_frost.cs │ │ │ ├── spell_mage_ray_of_frost_aura.cs │ │ │ ├── spell_mage_ring_of_frost.cs │ │ │ ├── spell_mage_ring_of_frost_freeze.cs │ │ │ ├── spell_mage_ring_of_frost_freeze_AuraScript.cs │ │ │ ├── spell_mage_shifting_power.cs │ │ │ ├── spell_mage_snowdrift.cs │ │ │ ├── spell_mage_supernova.cs │ │ │ ├── spell_mage_tempest_barrier.cs │ │ │ ├── spell_mage_time_warp.cs │ │ │ ├── spell_mage_touch_of_the_magi_aura.cs │ │ │ ├── spell_mage_water_elemental_freeze.cs │ │ │ └── spell_mastery_icicles_proc.cs │ │ ├── Monk │ │ │ ├── CracklingJade.cs │ │ │ ├── DamageUnitCheck.cs │ │ │ ├── HealUnitCheck.cs │ │ │ ├── MonkSpells.cs │ │ │ ├── StormEarthAndFireSpells.cs │ │ │ ├── TigerLust.cs │ │ │ ├── at_monk_chi_burst.cs │ │ │ ├── at_monk_gift_of_the_ox_sphere.cs │ │ │ ├── at_monk_ring_of_peace.cs │ │ │ ├── at_monk_song_of_chiji.cs │ │ │ ├── at_monk_windwalking.cs │ │ │ ├── aura_monk_disable.cs │ │ │ ├── aura_monk_transcendence.cs │ │ │ ├── bfa_spell_blackout_kick_spirit_of_the_crane_talent.cs │ │ │ ├── bfa_spell_focused_thunder_talent_thunder_focus_tea.cs │ │ │ ├── mystic_touch.cs │ │ │ ├── npc_monk_jade_serpent_statue.cs │ │ │ ├── npc_monk_sef_spirit.cs │ │ │ ├── npc_monk_xuen.cs │ │ │ ├── playerScript_monk_earth_fire_storm.cs │ │ │ ├── playerScript_monk_whirling_dragon_punch.cs │ │ │ ├── spell_monk_black_ox_brew.cs │ │ │ ├── spell_monk_breath_of_fire.cs │ │ │ ├── spell_monk_chi_burst_heal.cs │ │ │ ├── spell_monk_chi_wave.cs │ │ │ ├── spell_monk_chi_wave_damage_missile.cs │ │ │ ├── spell_monk_chi_wave_heal_missile.cs │ │ │ ├── spell_monk_chi_wave_healing_bolt.cs │ │ │ ├── spell_monk_chi_wave_target_selector.cs │ │ │ ├── spell_monk_crackling_jade_knockback.cs │ │ │ ├── spell_monk_crackling_jade_lightning.cs │ │ │ ├── spell_monk_crackling_jade_lightning_knockback_proc_aura.cs │ │ │ ├── spell_monk_dampen_harm.cs │ │ │ ├── spell_monk_disable.cs │ │ │ ├── spell_monk_elusive_brawler_mastery.cs │ │ │ ├── spell_monk_elusive_brawler_stacks.cs │ │ │ ├── spell_monk_energizing_brew.cs │ │ │ ├── spell_monk_enveloping_mist.cs │ │ │ ├── spell_monk_essence_font.cs │ │ │ ├── spell_monk_essence_font_heal.cs │ │ │ ├── spell_monk_expel_harm.cs │ │ │ ├── spell_monk_fists_of_fury.cs │ │ │ ├── spell_monk_fists_of_fury_damage.cs │ │ │ ├── spell_monk_fists_of_fury_stun.cs │ │ │ ├── spell_monk_fists_of_fury_visual.cs │ │ │ ├── spell_monk_fists_of_fury_visual_filter.cs │ │ │ ├── spell_monk_flying_serpent_kick.cs │ │ │ ├── spell_monk_fortifying_brew.cs │ │ │ ├── spell_monk_gift_of_the_ox_aura.cs │ │ │ ├── spell_monk_guard.cs │ │ │ ├── spell_monk_healing_elixirs_aura.cs │ │ │ ├── spell_monk_item_s12_4p_mistweaver.cs │ │ │ ├── spell_monk_jade_serpent_statue.cs │ │ │ ├── spell_monk_keg_smash.cs │ │ │ ├── spell_monk_life_cocoon.cs │ │ │ ├── spell_monk_mana_tea.cs │ │ │ ├── spell_monk_mana_tea_AuraScript.cs │ │ │ ├── spell_monk_power_strike_periodic.cs │ │ │ ├── spell_monk_power_strike_proc.cs │ │ │ ├── spell_monk_provoke.cs │ │ │ ├── spell_monk_purifying_brew.cs │ │ │ ├── spell_monk_renewing_mist.cs │ │ │ ├── spell_monk_renewing_mist_hot.cs │ │ │ ├── spell_monk_renewing_mist_jump.cs │ │ │ ├── spell_monk_rising_sun_kick.cs │ │ │ ├── spell_monk_rising_thunder.cs │ │ │ ├── spell_monk_roll.cs │ │ │ ├── spell_monk_roll_aura.cs │ │ │ ├── spell_monk_roll_trigger.cs │ │ │ ├── spell_monk_soothing_mist.cs │ │ │ ├── spell_monk_spear_hand_strike.cs │ │ │ ├── spell_monk_spirit_of_the_crane_passive.cs │ │ │ ├── spell_monk_stagger.cs │ │ │ ├── spell_monk_stagger_damage_aura.cs │ │ │ ├── spell_monk_stagger_debuff_aura.cs │ │ │ ├── spell_monk_storm_earth_and_fire.cs │ │ │ ├── spell_monk_strike_of_the_windlord.cs │ │ │ ├── spell_monk_teachings_of_the_monastery_buff.cs │ │ │ ├── spell_monk_teachings_of_the_monastery_passive.cs │ │ │ ├── spell_monk_tiger_lust.cs │ │ │ ├── spell_monk_tiger_palm.cs │ │ │ ├── spell_monk_touch_of_death.cs │ │ │ ├── spell_monk_touch_of_death_amplifier.cs │ │ │ ├── spell_monk_touch_of_death_passive.cs │ │ │ ├── spell_monk_touch_of_karma.cs │ │ │ ├── spell_monk_touch_of_karma_buff.cs │ │ │ ├── spell_monk_transcendence.cs │ │ │ ├── spell_monk_transcendence_transfer.cs │ │ │ ├── spell_monk_vivify.cs │ │ │ ├── spell_monk_whirling_dragon_punch.cs │ │ │ ├── spell_monk_zen_flight_check.cs │ │ │ ├── spell_monk_zen_flight_check_AuraScript.cs │ │ │ ├── spell_monk_zen_pilgrimage.cs │ │ │ ├── spell_monk_zen_pilgrimage_return.cs │ │ │ └── spell_monk_zen_pulse.cs │ │ ├── Paladin │ │ │ ├── PaladinSpells.cs │ │ │ ├── areatrigger_pal_ashen_hallow.cs │ │ │ ├── areatrigger_pal_consecration.cs │ │ │ ├── at_pal_aura_of_sacrifice.cs │ │ │ ├── aura_darkest_before_the_dawn.cs │ │ │ ├── fist_of_justice.cs │ │ │ ├── judgment_of_light.cs │ │ │ ├── npc_pal_lights_hammer.cs │ │ │ ├── spell_pal_absolution.cs │ │ │ ├── spell_pal_activate_forbearance.cs │ │ │ ├── spell_pal_ardent_defender.cs │ │ │ ├── spell_pal_art_of_war.cs │ │ │ ├── spell_pal_avengers_shield.cs │ │ │ ├── spell_pal_awakening.cs │ │ │ ├── spell_pal_beacon_of_faith.cs │ │ │ ├── spell_pal_beacon_of_light.cs │ │ │ ├── spell_pal_beacon_of_light_proc.cs │ │ │ ├── spell_pal_blade_of_wrath_proc.cs │ │ │ ├── spell_pal_blessing_of_protection.cs │ │ │ ├── spell_pal_blinding_light.cs │ │ │ ├── spell_pal_consecration.cs │ │ │ ├── spell_pal_crusade.cs │ │ │ ├── spell_pal_crusader_might.cs │ │ │ ├── spell_pal_crusader_strike.cs │ │ │ ├── spell_pal_divine_purpose.cs │ │ │ ├── spell_pal_divine_purpose_proc.cs │ │ │ ├── spell_pal_divine_shield.cs │ │ │ ├── spell_pal_divine_steed.cs │ │ │ ├── spell_pal_divine_storm.cs │ │ │ ├── spell_pal_eye_for_an_eye.cs │ │ │ ├── spell_pal_fist_of_justice.cs │ │ │ ├── spell_pal_flash_of_light.cs │ │ │ ├── spell_pal_glyph_of_holy_light.cs │ │ │ ├── spell_pal_grand_crusader.cs │ │ │ ├── spell_pal_hammer_of_the_righteous.cs │ │ │ ├── spell_pal_hand_of_hindrance.cs │ │ │ ├── spell_pal_hand_of_sacrifice.cs │ │ │ ├── spell_pal_holy_prism.cs │ │ │ ├── spell_pal_holy_prism_selector.cs │ │ │ ├── spell_pal_holy_shield.cs │ │ │ ├── spell_pal_holy_shock.cs │ │ │ ├── spell_pal_holy_shock_damage_visual.cs │ │ │ ├── spell_pal_holy_shock_heal_visual.cs │ │ │ ├── spell_pal_infusion_of_light.cs │ │ │ ├── spell_pal_inquisition.cs │ │ │ ├── spell_pal_item_healing_discount.cs │ │ │ ├── spell_pal_item_t6_trinket.cs │ │ │ ├── spell_pal_judgement_of_the_pure.cs │ │ │ ├── spell_pal_judgment.cs │ │ │ ├── spell_pal_justicars_vengeance.cs │ │ │ ├── spell_pal_lay_on_hands.cs │ │ │ ├── spell_pal_light_hammer_init_summon.cs │ │ │ ├── spell_pal_light_hammer_periodic.cs │ │ │ ├── spell_pal_light_of_dawn.cs │ │ │ ├── spell_pal_light_of_dawn_trigger.cs │ │ │ ├── spell_pal_light_of_the_martyr.cs │ │ │ ├── spell_pal_light_s_beacon.cs │ │ │ ├── spell_pal_lights_hammer.cs │ │ │ ├── spell_pal_lights_hammer_tick.cs │ │ │ ├── spell_pal_moment_of_glory.cs │ │ │ ├── spell_pal_proc_from_holy_power_consumption.cs │ │ │ ├── spell_pal_righteous_protector.cs │ │ │ ├── spell_pal_righteous_verdict.cs │ │ │ ├── spell_pal_selfless_healer.cs │ │ │ ├── spell_pal_seraphim.cs │ │ │ ├── spell_pal_shield_of_the_righteous.cs │ │ │ ├── spell_pal_shield_of_vengeance.cs │ │ │ ├── spell_pal_t3_6p_bonus.cs │ │ │ ├── spell_pal_t8_2p_bonus.cs │ │ │ ├── spell_pal_templar_s_verdict.cs │ │ │ ├── spell_pal_the_fire_of_justice.cs │ │ │ ├── spell_pal_wake_of_ashes.cs │ │ │ ├── spell_pal_zeal.cs │ │ │ └── spell_paladin_exorcism.cs │ │ ├── Priest │ │ │ ├── DelayedAuraRemoveEvent.cs │ │ │ ├── MiscSpells.cs │ │ │ ├── PriestSpellIcons.cs │ │ │ ├── PriestSpells.cs │ │ │ ├── RaidCheck.cs │ │ │ ├── areatrigger_pri_angelic_feather.cs │ │ │ ├── areatrigger_pri_divine_star.cs │ │ │ ├── areatrigger_pri_halo.cs │ │ │ ├── at_pri_angelic_feather.cs │ │ │ ├── at_pri_power_word_barrier.cs │ │ │ ├── aura_pri_void_torrent.cs │ │ │ ├── spell_pri_angelic_feather_trigger.cs │ │ │ ├── spell_pri_aq_3p_bonus.cs │ │ │ ├── spell_pri_archangel.cs │ │ │ ├── spell_pri_atonement.cs │ │ │ ├── spell_pri_atonement_triggered.cs │ │ │ ├── spell_pri_binding_heal.cs │ │ │ ├── spell_pri_clarity_of_will.cs │ │ │ ├── spell_pri_dark_archangel.cs │ │ │ ├── spell_pri_dark_void.cs │ │ │ ├── spell_pri_divine_hymn.cs │ │ │ ├── spell_pri_fade.cs │ │ │ ├── spell_pri_focused_will.cs │ │ │ ├── spell_pri_glyph_of_shadow.cs │ │ │ ├── spell_pri_guardian_spirit.cs │ │ │ ├── spell_pri_heal_flash_heal.cs │ │ │ ├── spell_pri_holy_nova.cs │ │ │ ├── spell_pri_holy_word_chastise.cs │ │ │ ├── spell_pri_holy_word_salvation.cs │ │ │ ├── spell_pri_holy_word_sanctify.cs │ │ │ ├── spell_pri_holy_word_serenity.cs │ │ │ ├── spell_pri_holy_words.cs │ │ │ ├── spell_pri_improved_power_word_shield.cs │ │ │ ├── spell_pri_item_t6_trinket.cs │ │ │ ├── spell_pri_leap_of_faith.cs │ │ │ ├── spell_pri_leap_of_faith_effect_trigger.cs │ │ │ ├── spell_pri_levitate.cs │ │ │ ├── spell_pri_mana_leech.cs │ │ │ ├── spell_pri_mind_blast.cs │ │ │ ├── spell_pri_mind_bomb.cs │ │ │ ├── spell_pri_mind_sear.cs │ │ │ ├── spell_pri_mind_sear_base.cs │ │ │ ├── spell_pri_penance.cs │ │ │ ├── spell_pri_penance_channeled.cs │ │ │ ├── spell_pri_penance_heal_damage.cs │ │ │ ├── spell_pri_penance_triggered.cs │ │ │ ├── spell_pri_phantasm.cs │ │ │ ├── spell_pri_power_of_the_dark_side.cs │ │ │ ├── spell_pri_power_of_the_dark_side_damage_bonus.cs │ │ │ ├── spell_pri_power_of_the_dark_side_healing_bonus.cs │ │ │ ├── spell_pri_power_word_radiance.cs │ │ │ ├── spell_pri_power_word_shield.cs │ │ │ ├── spell_pri_power_word_shield_aura.cs │ │ │ ├── spell_pri_power_word_solace.cs │ │ │ ├── spell_pri_prayer_of_healing.cs │ │ │ ├── spell_pri_prayer_of_mending.cs │ │ │ ├── spell_pri_prayer_of_mending_AuraScript.cs │ │ │ ├── spell_pri_prayer_of_mending_heal.cs │ │ │ ├── spell_pri_prayer_of_mending_jump.cs │ │ │ ├── spell_pri_psychic_scream.cs │ │ │ ├── spell_pri_purge_the_wicked_selector.cs │ │ │ ├── spell_pri_purify.cs │ │ │ ├── spell_pri_rapture.cs │ │ │ ├── spell_pri_renew.cs │ │ │ ├── spell_pri_shadow_mend.cs │ │ │ ├── spell_pri_shadow_mend_periodic_damage.cs │ │ │ ├── spell_pri_shadow_word_death.cs │ │ │ ├── spell_pri_shadowform.cs │ │ │ ├── spell_pri_shadowy_apparitions.cs │ │ │ ├── spell_pri_shadowy_insight.cs │ │ │ ├── spell_pri_sins_of_the_many.cs │ │ │ ├── spell_pri_smite.cs │ │ │ ├── spell_pri_smite_absorb.cs │ │ │ ├── spell_pri_spirit_of_redemption.cs │ │ │ ├── spell_pri_spirit_of_redemption_form.cs │ │ │ ├── spell_pri_spirit_shell.cs │ │ │ ├── spell_pri_t10_heal_2p_bonus.cs │ │ │ ├── spell_pri_t3_4p_bonus.cs │ │ │ ├── spell_pri_t5_heal_2p_bonus.cs │ │ │ ├── spell_pri_twist_of_fate.cs │ │ │ ├── spell_pri_vampiric_embrace.cs │ │ │ ├── spell_pri_vampiric_embrace_target.cs │ │ │ ├── spell_pri_vampiric_touch.cs │ │ │ ├── spell_pri_void_bolt.cs │ │ │ ├── spell_pri_void_eruption.cs │ │ │ ├── spell_pri_void_shift.cs │ │ │ ├── spell_pri_voidform.cs │ │ │ └── spell_priest_void_torrent.cs │ │ ├── Quest │ │ │ ├── CreatureIds.cs │ │ │ ├── Misc.cs │ │ │ ├── QuestSpellIds.cs │ │ │ ├── spell_generic_quest_update_entry.cs │ │ │ ├── spell_q10929_fumping.cs │ │ │ ├── spell_q11010_q11102_q11023_aggro_burst.cs │ │ │ ├── spell_q11010_q11102_q11023_aggro_check.cs │ │ │ ├── spell_q11010_q11102_q11023_aggro_check_aura.cs │ │ │ ├── spell_q11010_q11102_q11023_choose_loc.cs │ │ │ ├── spell_q11010_q11102_q11023_q11008_check_fly_mount.cs │ │ │ ├── spell_q11396_11399_force_shield_arcane_purple_x3.cs │ │ │ ├── spell_q11396_11399_scourging_crystal_controller.cs │ │ │ ├── spell_q11396_11399_scourging_crystal_controller_dummy.cs │ │ │ ├── spell_q11730_ultrasonic_screwdriver.cs │ │ │ ├── spell_q11896_weakness_to_lightning_46444.cs │ │ │ ├── spell_q12066_bunny_kill_credit.cs │ │ │ ├── spell_q12279_cast_net.cs │ │ │ ├── spell_q12308_escape_from_silverbrook.cs │ │ │ ├── spell_q12308_escape_from_silverbrook_summon_worgen.cs │ │ │ ├── spell_q12372_cast_from_gossip_trigger.cs │ │ │ ├── spell_q12372_destabilize_azure_dragonshrine_dummy.cs │ │ │ ├── spell_q12414_hand_over_reins.cs │ │ │ ├── spell_q12459_seeds_of_natures_wrath.cs │ │ │ ├── spell_q12527_zuldrak_rat.cs │ │ │ ├── spell_q12619_emblazon_runeblade.cs │ │ │ ├── spell_q12619_emblazon_runeblade_AuraScript.cs │ │ │ ├── spell_q12634_despawn_fruit_tosser.cs │ │ │ ├── spell_q12641_death_comes_from_on_high.cs │ │ │ ├── spell_q12641_recall_eye_of_acherus.cs │ │ │ ├── spell_q12659_ahunaes_knife.cs │ │ │ ├── spell_q12661_q12669_q12676_q12677_q12713_summon_stefan.cs │ │ │ ├── spell_q12690_burst_at_the_seams_52510.cs │ │ │ ├── spell_q12730_quenching_mist.cs │ │ │ ├── spell_q12805_lifeblood_dummy.cs │ │ │ ├── spell_q12847_summon_soul_moveto_bunny.cs │ │ │ ├── spell_q12851_going_bearback.cs │ │ │ ├── spell_q12919_gymers_grab.cs │ │ │ ├── spell_q12919_gymers_throw.cs │ │ │ ├── spell_q13086_cannons_target.cs │ │ │ ├── spell_q13264_q13276_q13288_q13289_area_restrict_abom.cs │ │ │ ├── spell_q13264_q13276_q13288_q13289_assign_credit_to_master.cs │ │ │ ├── spell_q13264_q13276_q13288_q13289_bloated_abom_feign_death.cs │ │ │ ├── spell_q13264_q13276_q13288_q13289_burst_at_the_seams_59576.cs │ │ │ ├── spell_q13264_q13276_q13288_q13289_burst_at_the_seams_59579.cs │ │ │ ├── spell_q13280_13283_jump_jets.cs │ │ │ ├── spell_q13280_13283_plant_battle_standard.cs │ │ │ ├── spell_q13291_q13292_q13239_q13261_armored_decoy_summon_skytalon.cs │ │ │ ├── spell_q13291_q13292_q13239_q13261_frostbrood_skytalon_grab_decoy.cs │ │ │ ├── spell_q13400_illidan_kill_master.cs │ │ │ ├── spell_q14100_q14111_make_player_destroy_totems.cs │ │ │ ├── spell_q2203_thaumaturgy_channel.cs │ │ │ ├── spell_q28813_get_our_boys_back_dummy.cs │ │ │ ├── spell_q28813_set_health_random.cs │ │ │ ├── spell_q6124_6129_apply_salve.cs │ │ │ ├── spell_quest_portal_with_condition.cs │ │ │ ├── spell_quest_taming_the_beast.cs │ │ │ └── spell_quest_uther_grom_tribute.cs │ │ ├── Racials │ │ │ └── spell_class_mecagnomo_emergency.cs │ │ ├── Rogue │ │ │ ├── CheatDeath.cs │ │ │ ├── CombatPotency.cs │ │ │ ├── RogueSpells.cs │ │ │ ├── TrueBearingIDs.cs │ │ │ ├── at_rog_smoke_bombAI.cs │ │ │ ├── ePoisons.cs │ │ │ ├── spell_rog_backstab_SpellScript.cs │ │ │ ├── spell_rog_between_the_eyes_SpellScript.cs │ │ │ ├── spell_rog_blade_flurry_AuraScript.cs │ │ │ ├── spell_rog_burst_of_energy.cs │ │ │ ├── spell_rog_cheat_death_AuraScript.cs │ │ │ ├── spell_rog_cloak_and_dagger_SpellScript.cs │ │ │ ├── spell_rog_deadly_poison_SpellScript.cs │ │ │ ├── spell_rog_deadly_poison_instant_damage_SpellScript.cs │ │ │ ├── spell_rog_deadly_throw_SpellScript.cs │ │ │ ├── spell_rog_deepening_shadows_AuraScript.cs │ │ │ ├── spell_rog_dirty_tricks_AuraScript.cs │ │ │ ├── spell_rog_envenom_SpellScript.cs │ │ │ ├── spell_rog_eviscerate_SpellScript.cs │ │ │ ├── spell_rog_fan_of_knives_SpellScript.cs │ │ │ ├── spell_rog_garrote_AuraScript.cs │ │ │ ├── spell_rog_garrote_SpellScript.cs │ │ │ ├── spell_rog_grand_melee.cs │ │ │ ├── spell_rog_grappling_hook_SpellScript.cs │ │ │ ├── spell_rog_hemorrhage_SpellScript.cs │ │ │ ├── spell_rog_hidden_blades_AuraScript.cs │ │ │ ├── spell_rog_honor_among_thieves_AuraScript.cs │ │ │ ├── spell_rog_kidney_shot_SpellScript.cs │ │ │ ├── spell_rog_killing_spree_AuraScript.cs │ │ │ ├── spell_rog_killing_spree_SpellScript.cs │ │ │ ├── spell_rog_mastery_main_gauche.cs │ │ │ ├── spell_rog_mutilate_SpellScript.cs │ │ │ ├── spell_rog_nightblade_AuraScript.cs │ │ │ ├── spell_rog_nightblade_SpellScript.cs │ │ │ ├── spell_rog_nightstalker_AuraScript.cs │ │ │ ├── spell_rog_nightstalker_SpellScript.cs │ │ │ ├── spell_rog_pickpocket.cs │ │ │ ├── spell_rog_poisons_SpellScript.cs │ │ │ ├── spell_rog_restless_blades.cs │ │ │ ├── spell_rog_riposte_AuraScript.cs │ │ │ ├── spell_rog_roll_the_bones.cs │ │ │ ├── spell_rog_roll_the_bones_duration_AuraScript.cs │ │ │ ├── spell_rog_roll_the_bones_visual_SpellScript.cs │ │ │ ├── spell_rog_rupture_AuraScript.cs │ │ │ ├── spell_rog_ruthlessness.cs │ │ │ ├── spell_rog_serrated_blades_SpellScript.cs │ │ │ ├── spell_rog_shadow_dance_SpellScript.cs │ │ │ ├── spell_rog_shadow_techniques_AuraScript.cs │ │ │ ├── spell_rog_shadowstrike.cs │ │ │ ├── spell_rog_shuriken_storm_SpellScript.cs │ │ │ ├── spell_rog_sinister_strike.cs │ │ │ ├── spell_rog_slice_and_dice.cs │ │ │ ├── spell_rog_stealth.cs │ │ │ ├── spell_rog_stealth_with_subterfuge_AuraScript.cs │ │ │ ├── spell_rog_subterfuge_AuraScript.cs │ │ │ ├── spell_rog_symbols_of_death.cs │ │ │ ├── spell_rog_symbols_of_death_crit_aura_AuraScript.cs │ │ │ ├── spell_rog_tricks_of_the_trade.cs │ │ │ ├── spell_rog_tricks_of_the_trade_aura.cs │ │ │ ├── spell_rog_tricks_of_the_trade_proc.cs │ │ │ ├── spell_rog_true_bearing_AuraScript.cs │ │ │ ├── spell_rog_vanish.cs │ │ │ ├── spell_rog_vanish_aura.cs │ │ │ ├── spell_rog_venomous_wounds.cs │ │ │ ├── spell_rog_weaponmaster_AuraScript.cs │ │ │ ├── spell_rogue_blade_flurry_SpellScript.cs │ │ │ └── spell_rogue_combat_potency_AuraScript.cs │ │ ├── Shaman │ │ │ ├── CreatureIds.cs │ │ │ ├── ShamanSpells.cs │ │ │ ├── areatrigger_sha_earthquake.cs │ │ │ ├── areatrigger_sha_wind_rush_totem.cs │ │ │ ├── at_earthen_shield_totem.cs │ │ │ ├── at_sha_ancestral_protection_totem.cs │ │ │ ├── at_sha_earthquake_totem.cs │ │ │ ├── at_sha_voodoo_totem.cs │ │ │ ├── aura_sha_earthquake.cs │ │ │ ├── aura_sha_primordial_wave.cs │ │ │ ├── aura_sha_rainfall_AuraScript.cs │ │ │ ├── aura_sha_stormlash.cs │ │ │ ├── aura_sha_stormlash_buff.cs │ │ │ ├── bfa_at_crashing_storm.cs │ │ │ ├── bfa_spell_flametongue.cs │ │ │ ├── bfa_spell_flametongue_attack_damage.cs │ │ │ ├── bfa_spell_flametongue_proc_attack.cs │ │ │ ├── bfa_spell_frostbrand_AuraScript.cs │ │ │ ├── bfa_spell_frostbrand_SpellScript.cs │ │ │ ├── mastery_elemental_overload.cs │ │ │ ├── npc_ancestral_protection_totem.cs │ │ │ ├── npc_capacitor_totem.cs │ │ │ ├── npc_cloudburst_totem.cs │ │ │ ├── npc_earth_grab_totem.cs │ │ │ ├── npc_earthen_shield_totem.cs │ │ │ ├── npc_ember_totem.cs │ │ │ ├── npc_feral_spirit.cs │ │ │ ├── npc_grounding_totem.cs │ │ │ ├── npc_healing_tide_totem.cs │ │ │ ├── npc_liquid_magma_totem.cs │ │ │ ├── npc_resonance_totem.cs │ │ │ ├── npc_sha_tremor_totem.cs │ │ │ ├── npc_skyfury_totem.cs │ │ │ ├── npc_tailwind_totem.cs │ │ │ ├── npc_voodoo_totem.cs │ │ │ ├── npc_wind_rush_totem.cs │ │ │ ├── spell_sha_aftershock.cs │ │ │ ├── spell_sha_ancestral_awakening.cs │ │ │ ├── spell_sha_ancestral_awakening_proc.cs │ │ │ ├── spell_sha_ancestral_guidance.cs │ │ │ ├── spell_sha_ancestral_guidance_heal.cs │ │ │ ├── spell_sha_ancestral_protection_totem_aura.cs │ │ │ ├── spell_sha_ascendance_water.cs │ │ │ ├── spell_sha_ascendance_water_heal.cs │ │ │ ├── spell_sha_bloodlust.cs │ │ │ ├── spell_sha_chain_heal.cs │ │ │ ├── spell_sha_chain_lightning.cs │ │ │ ├── spell_sha_chain_lightning_overload.cs │ │ │ ├── spell_sha_cloudburst.cs │ │ │ ├── spell_sha_cloudburst_effect.cs │ │ │ ├── spell_sha_crash_lightning.cs │ │ │ ├── spell_sha_crash_lightning_aura.cs │ │ │ ├── spell_sha_downpour.cs │ │ │ ├── spell_sha_earth_elemental.cs │ │ │ ├── spell_sha_earth_shield.cs │ │ │ ├── spell_sha_earth_shock.cs │ │ │ ├── spell_sha_earthen_rage_passive.cs │ │ │ ├── spell_sha_earthen_rage_proc_aura.cs │ │ │ ├── spell_sha_earthen_shield_absorb.cs │ │ │ ├── spell_sha_earthquake_tick.cs │ │ │ ├── spell_sha_elemental_blast.cs │ │ │ ├── spell_sha_enhancement_lightning_bolt.cs │ │ │ ├── spell_sha_feral_lunge.cs │ │ │ ├── spell_sha_feral_spirit.cs │ │ │ ├── spell_sha_fire_elemental.cs │ │ │ ├── spell_sha_flame_shock_elem.cs │ │ │ ├── spell_sha_flametongue_weapon.cs │ │ │ ├── spell_sha_flametongue_weapon_AuraScript.cs │ │ │ ├── spell_sha_fulmination.cs │ │ │ ├── spell_sha_fury_of_air.cs │ │ │ ├── spell_sha_glyph_of_lakestrider.cs │ │ │ ├── spell_sha_healing_rain.cs │ │ │ ├── spell_sha_healing_rain_AuraScript.cs │ │ │ ├── spell_sha_healing_rain_target_limit.cs │ │ │ ├── spell_sha_healing_stream.cs │ │ │ ├── spell_sha_healing_stream_totem.cs │ │ │ ├── spell_sha_healing_stream_totem_heal.cs │ │ │ ├── spell_sha_healing_surge.cs │ │ │ ├── spell_sha_heroism.cs │ │ │ ├── spell_sha_icefury.cs │ │ │ ├── spell_sha_item_lightning_shield.cs │ │ │ ├── spell_sha_item_lightning_shield_trigger.cs │ │ │ ├── spell_sha_item_mana_surge.cs │ │ │ ├── spell_sha_item_t10_elemental_2p_bonus.cs │ │ │ ├── spell_sha_item_t18_elemental_4p_bonus.cs │ │ │ ├── spell_sha_item_t6_trinket.cs │ │ │ ├── spell_sha_lava_burst.cs │ │ │ ├── spell_sha_lava_crit_chance.cs │ │ │ ├── spell_sha_lava_lash.cs │ │ │ ├── spell_sha_lava_lash_spread_flame_shock.cs │ │ │ ├── spell_sha_lava_surge.cs │ │ │ ├── spell_sha_lava_surge_proc.cs │ │ │ ├── spell_sha_lightning_bolt.cs │ │ │ ├── spell_sha_lightning_bolt_overload.cs │ │ │ ├── spell_sha_liquid_magma_totem.cs │ │ │ ├── spell_sha_maelstrom_weapon.cs │ │ │ ├── spell_sha_mastery_elemental_overload.cs │ │ │ ├── spell_sha_mastery_elemental_overload_proc.cs │ │ │ ├── spell_sha_natures_guardian.cs │ │ │ ├── spell_sha_path_of_flames_spread.cs │ │ │ ├── spell_sha_primordial_wave.cs │ │ │ ├── spell_sha_rainfall.cs │ │ │ ├── spell_sha_resonance_effect.cs │ │ │ ├── spell_sha_resurgence.cs │ │ │ ├── spell_sha_spirit_link.cs │ │ │ ├── spell_sha_spirit_wolf.cs │ │ │ ├── spell_sha_spiritwalkers_grace.cs │ │ │ ├── spell_sha_stormbringer.cs │ │ │ ├── spell_sha_stormstrike.cs │ │ │ ├── spell_sha_t10_elemental_4p_bonus.cs │ │ │ ├── spell_sha_t10_restoration_4p_bonus.cs │ │ │ ├── spell_sha_t3_6p_bonus.cs │ │ │ ├── spell_sha_t3_8p_bonus.cs │ │ │ ├── spell_sha_t8_elemental_4p_bonus.cs │ │ │ ├── spell_sha_t9_elemental_4p_bonus.cs │ │ │ ├── spell_sha_thunderstorm.cs │ │ │ ├── spell_sha_tidal_waves.cs │ │ │ ├── spell_sha_totem_mastery.cs │ │ │ ├── spell_sha_undulation.cs │ │ │ ├── spell_sha_undulation_passive.cs │ │ │ ├── spell_sha_unlimited_power.cs │ │ │ ├── spell_sha_wellspring.cs │ │ │ ├── spell_sha_wind_rush_totem.cs │ │ │ ├── spell_sha_windfury_weapon.cs │ │ │ ├── spell_sha_windfury_weapon_proc.cs │ │ │ ├── spell_shaman_generic_summon_elemental.cs │ │ │ ├── spell_shaman_primal_strike.cs │ │ │ └── spell_shaman_windfury_weapon.cs │ │ ├── Warlock │ │ │ ├── WarlockSpells.cs │ │ │ ├── at_warlock_artifact_thalkiels_discord.cs │ │ │ ├── aura_warl_blasphemy.cs │ │ │ ├── aura_warl_burning_rush.cs │ │ │ ├── aura_warl_demon_skin.cs │ │ │ ├── aura_warl_drain_soul.cs │ │ │ ├── aura_warl_fear_buff.cs │ │ │ ├── aura_warl_fel_armor.cs │ │ │ ├── aura_warl_haunt.cs │ │ │ ├── aura_warl_mayhem.cs │ │ │ ├── aura_warl_phantomatic_singularity.cs │ │ │ ├── aura_warl_soul_leech_absorb.cs │ │ │ ├── player_warl_script.cs │ │ │ ├── spell_arti_warl_thalkiels_consumption.cs │ │ │ ├── spell_warl_banish.cs │ │ │ ├── spell_warl_burning_rush.cs │ │ │ ├── spell_warl_cataclysm.cs │ │ │ ├── spell_warl_cauterize_master.cs │ │ │ ├── spell_warl_channel_demonfire.cs │ │ │ ├── spell_warl_channel_demonfire_damage.cs │ │ │ ├── spell_warl_chaos_bolt.cs │ │ │ ├── spell_warl_chaotic_energies.cs │ │ │ ├── spell_warl_conflagrate.cs │ │ │ ├── spell_warl_conflagrate_aura.cs │ │ │ ├── spell_warl_corruption_effect.cs │ │ │ ├── spell_warl_create_healthstone.cs │ │ │ ├── spell_warl_create_healthstone_soulwell.cs │ │ │ ├── spell_warl_dark_regeneration.cs │ │ │ ├── spell_warl_deathbolt.cs │ │ │ ├── spell_warl_demon_skin.cs │ │ │ ├── spell_warl_demonbolt.cs │ │ │ ├── spell_warl_demonic_call.cs │ │ │ ├── spell_warl_demonic_calling.cs │ │ │ ├── spell_warl_demonic_calling_AuraScript.cs │ │ │ ├── spell_warl_demonic_circle_summon.cs │ │ │ ├── spell_warl_demonic_circle_teleport.cs │ │ │ ├── spell_warl_demonic_empowerment.cs │ │ │ ├── spell_warl_demonic_gateway.cs │ │ │ ├── spell_warl_demonwrath.cs │ │ │ ├── spell_warl_demonwrath_periodic.cs │ │ │ ├── spell_warl_devour_magic.cs │ │ │ ├── spell_warl_dimensional_rift.cs │ │ │ ├── spell_warl_drain_life.cs │ │ │ ├── spell_warl_drain_soul.cs │ │ │ ├── spell_warl_eradication.cs │ │ │ ├── spell_warl_eye_laser.cs │ │ │ ├── spell_warl_fear.cs │ │ │ ├── spell_warl_fear_buff.cs │ │ │ ├── spell_warl_felstorm.cs │ │ │ ├── spell_warl_glyph_of_soulwell.cs │ │ │ ├── spell_warl_grimoire_of_service.cs │ │ │ ├── spell_warl_grimoire_of_service_SpellScript.cs │ │ │ ├── spell_warl_grimoire_of_service_aura.cs │ │ │ ├── spell_warl_grimoire_of_synergy_AuraScript.cs │ │ │ ├── spell_warl_grimoire_of_synergy_SpellScript.cs │ │ │ ├── spell_warl_hand_of_guldan.cs │ │ │ ├── spell_warl_hand_of_guldan_damage.cs │ │ │ ├── spell_warl_haunt.cs │ │ │ ├── spell_warl_havoc.cs │ │ │ ├── spell_warl_health_funnel.cs │ │ │ ├── spell_warl_healthstone_heal.cs │ │ │ ├── spell_warl_immolate.cs │ │ │ ├── spell_warl_immolate_aura.cs │ │ │ ├── spell_warl_immolate_dot.cs │ │ │ ├── spell_warl_implosion.cs │ │ │ ├── spell_warl_incinerate.cs │ │ │ ├── spell_warl_life_tap.cs │ │ │ ├── spell_warl_meteor_strike.cs │ │ │ ├── spell_warl_rain_of_fire.cs │ │ │ ├── spell_warl_rain_of_fire_SpellScript.cs │ │ │ ├── spell_warl_rain_of_fire_damage.cs │ │ │ ├── spell_warl_seduction.cs │ │ │ ├── spell_warl_seed_of_corruption.cs │ │ │ ├── spell_warl_seed_of_corruption_dummy.cs │ │ │ ├── spell_warl_seed_of_corruption_generic.cs │ │ │ ├── spell_warl_shadow_bolt.cs │ │ │ ├── spell_warl_shadow_bulwark.cs │ │ │ ├── spell_warl_shadow_lock.cs │ │ │ ├── spell_warl_shadowburn.cs │ │ │ ├── spell_warl_shadowburn_SpellScript.cs │ │ │ ├── spell_warl_soul_conduit.cs │ │ │ ├── spell_warl_soul_leech_aura.cs │ │ │ ├── spell_warl_soul_link.cs │ │ │ ├── spell_warl_soul_swap.cs │ │ │ ├── spell_warl_soul_swap_dot_marker.cs │ │ │ ├── spell_warl_soul_swap_exhale.cs │ │ │ ├── spell_warl_soul_swap_override.cs │ │ │ ├── spell_warl_soulshatter.cs │ │ │ ├── spell_warl_spell_lock.cs │ │ │ ├── spell_warl_suffering.cs │ │ │ ├── spell_warl_summon_infernal.cs │ │ │ ├── spell_warl_t4_2p_bonus.cs │ │ │ ├── spell_warl_unstable_affliction.cs │ │ │ ├── spell_warl_whiplash.cs │ │ │ ├── spell_warlock_4p_t14_pve.cs │ │ │ ├── spell_warlock_agony.cs │ │ │ ├── spell_warlock_artifact_devourer_of_life.cs │ │ │ ├── spell_warlock_artifact_dimension_ripper.cs │ │ │ ├── spell_warlock_artifact_dimensional_rift.cs │ │ │ ├── spell_warlock_artifact_eternal_struggle.cs │ │ │ ├── spell_warlock_artifact_reap_souls.cs │ │ │ ├── spell_warlock_artifact_soul_flame.cs │ │ │ ├── spell_warlock_artifact_soul_snatcher.cs │ │ │ ├── spell_warlock_artifact_thalkiels_consumption.cs │ │ │ ├── spell_warlock_artifact_thalkiels_discord.cs │ │ │ ├── spell_warlock_artifact_the_expendables.cs │ │ │ ├── spell_warlock_artifact_wrath_of_consumption.cs │ │ │ ├── spell_warlock_backdraft.cs │ │ │ ├── spell_warlock_call_dreadstalkers.cs │ │ │ ├── spell_warlock_call_felhunter.cs │ │ │ ├── spell_warlock_compounding_horror.cs │ │ │ ├── spell_warlock_contagion.cs │ │ │ ├── spell_warlock_cremation.cs │ │ │ ├── spell_warlock_curse_of_shadows.cs │ │ │ ├── spell_warlock_dark_pact.cs │ │ │ ├── spell_warlock_demonbolt.cs │ │ │ ├── spell_warlock_demonbolt_new.cs │ │ │ ├── spell_warlock_doom.cs │ │ │ ├── spell_warlock_drain_life.cs │ │ │ ├── spell_warlock_eradication.cs │ │ │ ├── spell_warlock_essence_drain.cs │ │ │ ├── spell_warlock_eye_of_kilrogg.cs │ │ │ ├── spell_warlock_eye_of_the_observer.cs │ │ │ ├── spell_warlock_fel_firebolt_wild_imp.cs │ │ │ ├── spell_warlock_glyph_of_felguard.cs │ │ │ ├── spell_warlock_grimoire_felguard.cs │ │ │ ├── spell_warlock_imp_firebolt.cs │ │ │ ├── spell_warlock_infernal_immolation.cs │ │ │ ├── spell_warlock_infernal_meteor_strike.cs │ │ │ ├── spell_warlock_inquisitors_gaze.cs │ │ │ ├── spell_warlock_nightfall.cs │ │ │ ├── spell_warlock_seduction.cs │ │ │ ├── spell_warlock_singe_magic.cs │ │ │ ├── spell_warlock_siphon_life.cs │ │ │ ├── spell_warlock_soul_effigy_aura.cs │ │ │ ├── spell_warlock_soul_effigy_target.cs │ │ │ ├── spell_warlock_soul_fire.cs │ │ │ ├── spell_warlock_soul_leech.cs │ │ │ ├── spell_warlock_soul_link.cs │ │ │ ├── spell_warlock_summon_darkglare.cs │ │ │ ├── spell_warlock_t15_2p_bonus.cs │ │ │ ├── spell_warlock_t16_4p.cs │ │ │ ├── spell_warlock_t16_demo_2p.cs │ │ │ ├── spell_warlock_unending_breath.cs │ │ │ ├── spell_warlock_unending_resolve.cs │ │ │ ├── spell_warlock_unstable_affliction.cs │ │ │ ├── spell_warlock_unstable_affliction_dispel.cs │ │ │ ├── spell_warlock_use_soulstone.cs │ │ │ └── spell_warr_shadowbolt_affliction.cs │ │ └── Warrior │ │ │ ├── WarriorSpells.cs │ │ │ ├── anger_management.cs │ │ │ ├── at_into_the_fray.cs │ │ │ ├── aura_warr_ignore_pain.cs │ │ │ ├── aura_warr_ravager.cs │ │ │ ├── aura_warr_war_machine.cs │ │ │ ├── npc_warr_banner.cs │ │ │ ├── npc_warr_ravager.cs │ │ │ ├── rage_on_take_damage.cs │ │ │ ├── spell_defensive_state.cs │ │ │ ├── spell_warr_avatar.cs │ │ │ ├── spell_warr_berzerker_rage.cs │ │ │ ├── spell_warr_bladestorm.cs │ │ │ ├── spell_warr_bladestorm_new.cs │ │ │ ├── spell_warr_bladestorm_offhand.cs │ │ │ ├── spell_warr_blood_bath.cs │ │ │ ├── spell_warr_blood_fury.cs │ │ │ ├── spell_warr_bloodthirst.cs │ │ │ ├── spell_warr_charge.cs │ │ │ ├── spell_warr_charge_drop_fire_periodic.cs │ │ │ ├── spell_warr_charge_effect.cs │ │ │ ├── spell_warr_colossus_smash_SpellScript.cs │ │ │ ├── spell_warr_defensive_stance.cs │ │ │ ├── spell_warr_devastate.cs │ │ │ ├── spell_warr_dragon_roar.cs │ │ │ ├── spell_warr_enrage.cs │ │ │ ├── spell_warr_enrage_aura.cs │ │ │ ├── spell_warr_execute.cs │ │ │ ├── spell_warr_execute_damages.cs │ │ │ ├── spell_warr_focused_rage_arms.cs │ │ │ ├── spell_warr_focused_rage_prot.cs │ │ │ ├── spell_warr_frenzy.cs │ │ │ ├── spell_warr_frothing_berserker.cs │ │ │ ├── spell_warr_heroic_leap.cs │ │ │ ├── spell_warr_heroic_leap_jump.cs │ │ │ ├── spell_warr_ignore_pain.cs │ │ │ ├── spell_warr_impending_victory.cs │ │ │ ├── spell_warr_intercept.cs │ │ │ ├── spell_warr_intimidating_shout.cs │ │ │ ├── spell_warr_item_t10_prot_4p_bonus.cs │ │ │ ├── spell_warr_jump_to_skyhold.cs │ │ │ ├── spell_warr_last_stand.cs │ │ │ ├── spell_warr_massacre.cs │ │ │ ├── spell_warr_meat_cleaver.cs │ │ │ ├── spell_warr_mortal_strike.cs │ │ │ ├── spell_warr_odyns_fury.cs │ │ │ ├── spell_warr_opportunity_strike.cs │ │ │ ├── spell_warr_overpower.cs │ │ │ ├── spell_warr_raging_blow.cs │ │ │ ├── spell_warr_rallying_cry.cs │ │ │ ├── spell_warr_rampage.cs │ │ │ ├── spell_warr_ravager.cs │ │ │ ├── spell_warr_ravager_damage.cs │ │ │ ├── spell_warr_rend.cs │ │ │ ├── spell_warr_safeguard.cs │ │ │ ├── spell_warr_second_wind_damaged.cs │ │ │ ├── spell_warr_second_wind_proc.cs │ │ │ ├── spell_warr_shattering_throw.cs │ │ │ ├── spell_warr_shield_block.cs │ │ │ ├── spell_warr_shield_slam.cs │ │ │ ├── spell_warr_shockwave.cs │ │ │ ├── spell_warr_siegebreaker.cs │ │ │ ├── spell_warr_spell_reflect.cs │ │ │ ├── spell_warr_storm_bolt.cs │ │ │ ├── spell_warr_sudden_death.cs │ │ │ ├── spell_warr_sweeping_strikes.cs │ │ │ ├── spell_warr_t3_prot_8p_bonus.cs │ │ │ ├── spell_warr_tactician.cs │ │ │ ├── spell_warr_taste_for_blood.cs │ │ │ ├── spell_warr_thunder_clap.cs │ │ │ ├── spell_warr_trauma.cs │ │ │ ├── spell_warr_unrivaled_strenght.cs │ │ │ ├── spell_warr_unshackled_fury.cs │ │ │ ├── spell_warr_victorious.cs │ │ │ ├── spell_warr_victorious_state.cs │ │ │ ├── spell_warr_victory_rush.cs │ │ │ ├── spell_warr_victory_rush_heal.cs │ │ │ ├── spell_warr_warbreaker.cs │ │ │ ├── spell_warr_whirlwind.cs │ │ │ ├── spell_warr_wirlwind_dmg.cs │ │ │ ├── spell_warr_wrecking_ball_effect.cs │ │ │ └── war_machine.cs │ └── World │ │ ├── Achievements.cs │ │ ├── AreaTrigger.cs │ │ ├── BoostedXp.cs │ │ ├── Conversation.cs │ │ ├── DuelReset.cs │ │ ├── EmeraldDragons.cs │ │ ├── GameObject.cs │ │ ├── ItemScripts.cs │ │ ├── NpcGuard.cs │ │ ├── NpcInnkeeper.cs │ │ ├── NpcSpecial.cs │ │ ├── SceneScripts.cs │ │ └── npc_training_dummy.cs └── WorldServer │ ├── Blue.ico │ ├── Forged Icon.ico │ ├── Properties │ └── PublishProfiles │ │ └── FolderProfile.pubxml │ ├── Server.cs │ ├── WorldServer.conf.dist │ └── WorldServer.csproj ├── THANKS ├── WoWProto ├── AuroraError.proto ├── CASInitError.proto ├── ClientCancelConnect.proto ├── ClientDisconnect.proto ├── ClientLoadingTime.proto ├── ClientNameLookup.proto ├── ClientPerformance.proto ├── ClientPerformanceShared.proto ├── ClientRestrictedAction.proto ├── ClientReturningPlayerPrompt.proto ├── ClientShared.proto ├── ClientSharedImports.proto ├── ClientTradingPost.proto ├── ClientVoiceChannelJoin.proto ├── ClientVoiceChannelLeave.proto ├── ClientVoiceLoginState.proto ├── ClientVoiceProviderError.proto ├── CriticalStreamingError.proto ├── TelemetrySharedClientImports.proto ├── TelemetrySharedImports.proto ├── WorldLoadFailed.proto ├── WorldSceneLoadFailed.proto ├── bgs │ └── low │ │ └── pb │ │ └── client │ │ ├── account_service.proto │ │ ├── account_types.proto │ │ ├── api │ │ └── client │ │ │ ├── v1 │ │ │ └── channel_id.proto │ │ │ └── v2 │ │ │ ├── attribute_types.proto │ │ │ ├── report_service.proto │ │ │ └── report_types.proto │ │ ├── attribute_types.proto │ │ ├── authentication_service.proto │ │ ├── challenge_service.proto │ │ ├── channel_types.proto │ │ ├── club_ban.proto │ │ ├── club_core.proto │ │ ├── club_enum.proto │ │ ├── club_invitation.proto │ │ ├── club_member.proto │ │ ├── club_member_id.proto │ │ ├── club_membership_listener.proto │ │ ├── club_membership_service.proto │ │ ├── club_membership_types.proto │ │ ├── club_notification.proto │ │ ├── club_range_set.proto │ │ ├── club_request.proto │ │ ├── club_role.proto │ │ ├── club_stream.proto │ │ ├── club_types.proto │ │ ├── connection_service.proto │ │ ├── content_handle_types.proto │ │ ├── embed_types.proto │ │ ├── entity_types.proto │ │ ├── ets_types.proto │ │ ├── event_view_types.proto │ │ ├── friends_service.proto │ │ ├── friends_types.proto │ │ ├── game_utilities_service.proto │ │ ├── game_utilities_types.proto │ │ ├── global_extensions │ │ ├── field_options.proto │ │ ├── message_options.proto │ │ ├── method_options.proto │ │ ├── range.proto │ │ ├── routing.proto │ │ └── service_options.proto │ │ ├── invitation_types.proto │ │ ├── message_types.proto │ │ ├── notification_types.proto │ │ ├── presence_listener.proto │ │ ├── presence_service.proto │ │ ├── presence_types.proto │ │ ├── profanity_filter_config.proto │ │ ├── report_service.proto │ │ ├── report_types.proto │ │ ├── resource_service.proto │ │ ├── role_types.proto │ │ ├── rpc_config.proto │ │ ├── rpc_types.proto │ │ ├── user_manager_service.proto │ │ ├── user_manager_types.proto │ │ └── voice_types.proto ├── google │ └── protobuf │ │ └── descriptor.proto ├── telemetry_extensions.proto ├── voice_channel_join.proto ├── voice_channel_leave.proto └── voice_provider_error.proto ├── appveyor.yml ├── default.props ├── protoc.exe └── sql ├── base ├── auth_database.sql ├── characters_database.sql └── dev │ ├── DO_NOT_IMPORT_THESE_FILES.txt │ ├── hotfixes_database.sql │ └── world_database.sql ├── create ├── create_mysql.sql ├── drop_mysql.sql └── drop_mysql_8.sql ├── custom ├── auth │ └── .gitignore ├── characters │ └── .gitignore ├── hotfixes │ └── .gitignore └── world │ └── .gitignore └── updates ├── auth └── master │ ├── 2021_02_28_00_auth.sql │ ├── 2023_02_03_00_auth.sql │ ├── 2023_02_07_00_auth.sql │ ├── 2023_02_09_00_auth.sql │ ├── 2023_02_14_00_auth.sql │ ├── 2023_02_28_00_auth.sql │ ├── 2023_03_08_00_auth.sql │ └── 2023_03_11_00_auth.sql ├── characters └── master │ ├── 2023_02_03_00_characters.sql │ └── 2023_02_08_00_characters.sql ├── hotfixes ├── forged │ ├── DeathknightSpells.sql │ ├── area_p_o_i_state.sql │ ├── area_p_o_i_state_locale.sql │ ├── area_poi.sql │ ├── area_poi_locale.sql │ ├── garr_talent_tree.sql │ ├── garr_talent_tree_locale.sql │ ├── quest_p_o_i_blob.sql │ ├── quest_p_o_i_point.sql │ ├── spell_DF_Tables.sql │ ├── spell_item_enchantment.sql │ └── spell_keybound_override.sql └── master │ ├── 2023_01_19_00_hotfixes.sql │ ├── 2023_02_03_11_hotfixes.sql │ └── 2023_02_09_00_hotfixes.sql └── world ├── Forged ├── AreaTriggerMismappings.sql ├── DeathKnightSpells.sql ├── EvokerFixes.sql ├── KeepMapLoaded.sql ├── Quests │ └── elwynn.sql ├── VendorInfo.sql ├── WarlockSpells.sql ├── WorgenFix.sql ├── Wrathion_ai.sql ├── innkeeperfix.sql ├── spirithealerfix.sql └── training_dummy_fix.sql └── master ├── 2023_02_03_12_world.sql ├── 2023_02_09_00_world.sql ├── 2023_02_09_01_world.sql ├── 2023_02_10_00_world.sql ├── 2023_02_10_01_world.sql ├── 2023_02_11_00_world.sql ├── 2023_02_11_01_world.sql ├── 2023_02_17_00_world.sql ├── 2023_02_20_00_world.sql ├── 2023_02_20_01_world.sql ├── 2023_02_20_02_world.sql ├── 2023_02_20_03_world.sql ├── 2023_02_20_04_world.sql ├── 2023_02_20_05_world.sql ├── 2023_02_20_06_world.sql ├── 2023_02_20_07_world.sql ├── 2023_02_20_08_world.sql ├── 2023_02_20_09_world.sql ├── 2023_02_20_10_world.sql ├── 2023_02_20_11_world.sql ├── 2023_02_20_12_world.sql ├── 2023_03_02_00_world.sql ├── 2023_03_02_01_world.sql ├── 2023_03_02_02_world.sql ├── 2023_03_02_03_world.sql ├── 2023_03_04_00_world.sql ├── 2023_03_04_01_world.sql ├── 2023_03_08_00_world.sql ├── 2023_03_08_01_world.sql ├── 2023_03_08_02_world.sql └── 2023_03_09_00_world.sql /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/.gitignore -------------------------------------------------------------------------------- /ForgedCore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/ForgedCore.sln -------------------------------------------------------------------------------- /Forged_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Forged_Logo.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/README.md -------------------------------------------------------------------------------- /Source/BNetServer/BNetServer.conf.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/BNetServer/BNetServer.conf.dist -------------------------------------------------------------------------------- /Source/BNetServer/BNetServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/BNetServer/BNetServer.csproj -------------------------------------------------------------------------------- /Source/BNetServer/BNetServer.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/BNetServer/BNetServer.pfx -------------------------------------------------------------------------------- /Source/BNetServer/Managers/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/BNetServer/Managers/Global.cs -------------------------------------------------------------------------------- /Source/BNetServer/Networking/RestSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/BNetServer/Networking/RestSession.cs -------------------------------------------------------------------------------- /Source/BNetServer/Networking/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/BNetServer/Networking/Session.cs -------------------------------------------------------------------------------- /Source/BNetServer/Red.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/BNetServer/Red.ico -------------------------------------------------------------------------------- /Source/BNetServer/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/BNetServer/Server.cs -------------------------------------------------------------------------------- /Source/Framework/Collections/Array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Collections/Array.cs -------------------------------------------------------------------------------- /Source/Framework/Collections/BitSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Collections/BitSet.cs -------------------------------------------------------------------------------- /Source/Framework/Collections/MultiMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Collections/MultiMap.cs -------------------------------------------------------------------------------- /Source/Framework/Collections/StringArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Collections/StringArray.cs -------------------------------------------------------------------------------- /Source/Framework/Configuration/ConfigMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Configuration/ConfigMgr.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/AreaId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/AreaId.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/BanMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/BanMode.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/BanReturn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/BanReturn.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/CascLocaleBit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/CascLocaleBit.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/ChatMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/ChatMsg.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/Class.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/ContentLevels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/ContentLevels.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/Difficulty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/Difficulty.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/Expansion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/Expansion.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/FactionMasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/FactionMasks.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/GameError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/GameError.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/Gender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/Gender.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/HolidayIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/HolidayIds.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/LFG/LfgAnswer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/LFG/LfgAnswer.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/LFG/LfgFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/LFG/LfgFlags.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/LFG/LfgRoles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/LFG/LfgRoles.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/LFG/LfgState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/LFG/LfgState.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/LFG/LfgType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/LFG/LfgType.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/Locale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/Locale.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/Loot/LootType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/Loot/LootType.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/Loot/RollMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/Loot/RollMask.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/Loot/RollVote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/Loot/RollVote.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/Map/DoorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/Map/DoorType.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/Map/GridType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/Map/GridType.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/Map/MapConst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/Map/MapConst.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/MapFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/MapFlags.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/MapFlags2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/MapFlags2.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/Object/TypeId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/Object/TypeId.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/Pet/CharmType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/Pet/CharmType.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/Pet/PetTalk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/Pet/PetTalk.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/Pet/PetType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/Pet/PetType.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/PowerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/PowerType.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/Race.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/Race.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/SceneFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/SceneFlags.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/SceneType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/SceneType.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/ScriptsType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/ScriptsType.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/SharedConst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/SharedConst.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/Stats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/Stats.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/TeamFaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/TeamFaction.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/TeamIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/TeamIds.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/TimerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/TimerType.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/TokenResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/TokenResult.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/TrainerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/TrainerType.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/Unit/AnimTier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/Unit/AnimTier.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/Unit/HitInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/Unit/HitInfo.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/Unit/UnitMods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/Unit/UnitMods.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/WorldCfg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/WorldCfg.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/WorldStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/WorldStates.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/XPColorChar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/XPColorChar.cs -------------------------------------------------------------------------------- /Source/Framework/Constants/eScriptFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Constants/eScriptFlags.cs -------------------------------------------------------------------------------- /Source/Framework/Cryptography/RsaCrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Cryptography/RsaCrypt.cs -------------------------------------------------------------------------------- /Source/Framework/Cryptography/SARC4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Cryptography/SARC4.cs -------------------------------------------------------------------------------- /Source/Framework/Cryptography/SRP6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Cryptography/SRP6.cs -------------------------------------------------------------------------------- /Source/Framework/Cryptography/ShaHmac.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Cryptography/ShaHmac.cs -------------------------------------------------------------------------------- /Source/Framework/Database/DB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Database/DB.cs -------------------------------------------------------------------------------- /Source/Framework/Database/DBVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Database/DBVersion.cs -------------------------------------------------------------------------------- /Source/Framework/Database/DatabaseLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Database/DatabaseLoader.cs -------------------------------------------------------------------------------- /Source/Framework/Database/DatabaseWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Database/DatabaseWorker.cs -------------------------------------------------------------------------------- /Source/Framework/Database/FileEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Database/FileEntry.cs -------------------------------------------------------------------------------- /Source/Framework/Database/ISqlCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Database/ISqlCallback.cs -------------------------------------------------------------------------------- /Source/Framework/Database/ISqlOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Database/ISqlOperation.cs -------------------------------------------------------------------------------- /Source/Framework/Database/MySqlBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Database/MySqlBase.cs -------------------------------------------------------------------------------- /Source/Framework/Database/QueryCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Database/QueryCallback.cs -------------------------------------------------------------------------------- /Source/Framework/Database/SQLEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Database/SQLEx.cs -------------------------------------------------------------------------------- /Source/Framework/Database/SQLFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Database/SQLFields.cs -------------------------------------------------------------------------------- /Source/Framework/Database/SQLQueryHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Database/SQLQueryHolder.cs -------------------------------------------------------------------------------- /Source/Framework/Database/SQLResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Database/SQLResult.cs -------------------------------------------------------------------------------- /Source/Framework/Database/SQLTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Database/SQLTransaction.cs -------------------------------------------------------------------------------- /Source/Framework/Database/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Database/State.cs -------------------------------------------------------------------------------- /Source/Framework/Database/UpdateMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Database/UpdateMode.cs -------------------------------------------------------------------------------- /Source/Framework/Database/UpdateResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Database/UpdateResult.cs -------------------------------------------------------------------------------- /Source/Framework/Dynamic/AbortState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Dynamic/AbortState.cs -------------------------------------------------------------------------------- /Source/Framework/Dynamic/BasicEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Dynamic/BasicEvent.cs -------------------------------------------------------------------------------- /Source/Framework/Dynamic/EventMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Dynamic/EventMap.cs -------------------------------------------------------------------------------- /Source/Framework/Dynamic/EventSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Dynamic/EventSystem.cs -------------------------------------------------------------------------------- /Source/Framework/Dynamic/FlagArray128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Dynamic/FlagArray128.cs -------------------------------------------------------------------------------- /Source/Framework/Dynamic/FlaggedArray32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Dynamic/FlaggedArray32.cs -------------------------------------------------------------------------------- /Source/Framework/Dynamic/FlaggedArray64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Dynamic/FlaggedArray64.cs -------------------------------------------------------------------------------- /Source/Framework/Dynamic/FlagsArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Dynamic/FlagsArray.cs -------------------------------------------------------------------------------- /Source/Framework/Dynamic/RefManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Dynamic/RefManager.cs -------------------------------------------------------------------------------- /Source/Framework/Dynamic/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Dynamic/Reference.cs -------------------------------------------------------------------------------- /Source/Framework/Dynamic/RepeatEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Dynamic/RepeatEvent.cs -------------------------------------------------------------------------------- /Source/Framework/Dynamic/TaskContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Dynamic/TaskContext.cs -------------------------------------------------------------------------------- /Source/Framework/Dynamic/TaskQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Dynamic/TaskQueue.cs -------------------------------------------------------------------------------- /Source/Framework/Dynamic/TaskScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Dynamic/TaskScheduler.cs -------------------------------------------------------------------------------- /Source/Framework/Framework - Backup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Framework - Backup.csproj -------------------------------------------------------------------------------- /Source/Framework/Framework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Framework.csproj -------------------------------------------------------------------------------- /Source/Framework/GameMath/AxisAlignedBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/GameMath/AxisAlignedBox.cs -------------------------------------------------------------------------------- /Source/Framework/GameMath/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/GameMath/Box.cs -------------------------------------------------------------------------------- /Source/Framework/GameMath/Ray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/GameMath/Ray.cs -------------------------------------------------------------------------------- /Source/Framework/GameMath/RayConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/GameMath/RayConverter.cs -------------------------------------------------------------------------------- /Source/Framework/IO/ByteBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/IO/ByteBuffer.cs -------------------------------------------------------------------------------- /Source/Framework/IO/SocketBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/IO/SocketBuffer.cs -------------------------------------------------------------------------------- /Source/Framework/IO/StringArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/IO/StringArguments.cs -------------------------------------------------------------------------------- /Source/Framework/IO/Zlib/Adler32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/IO/Zlib/Adler32.cs -------------------------------------------------------------------------------- /Source/Framework/IO/Zlib/Crc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/IO/Zlib/Crc32.cs -------------------------------------------------------------------------------- /Source/Framework/IO/Zlib/Deflate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/IO/Zlib/Deflate.cs -------------------------------------------------------------------------------- /Source/Framework/IO/Zlib/Trees.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/IO/Zlib/Trees.cs -------------------------------------------------------------------------------- /Source/Framework/IO/Zlib/ZLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/IO/Zlib/ZLib.cs -------------------------------------------------------------------------------- /Source/Framework/IO/Zlib/ZUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/IO/Zlib/ZUtil.cs -------------------------------------------------------------------------------- /Source/Framework/IO/Zlib/compress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/IO/Zlib/compress.cs -------------------------------------------------------------------------------- /Source/Framework/Logging/Appender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Logging/Appender.cs -------------------------------------------------------------------------------- /Source/Framework/Logging/AppenderFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Logging/AppenderFlags.cs -------------------------------------------------------------------------------- /Source/Framework/Logging/AppenderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Logging/AppenderType.cs -------------------------------------------------------------------------------- /Source/Framework/Logging/ConsoleAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Logging/ConsoleAppender.cs -------------------------------------------------------------------------------- /Source/Framework/Logging/DBAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Logging/DBAppender.cs -------------------------------------------------------------------------------- /Source/Framework/Logging/FileAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Logging/FileAppender.cs -------------------------------------------------------------------------------- /Source/Framework/Logging/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Logging/Log.cs -------------------------------------------------------------------------------- /Source/Framework/Logging/LogFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Logging/LogFilter.cs -------------------------------------------------------------------------------- /Source/Framework/Logging/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Logging/LogLevel.cs -------------------------------------------------------------------------------- /Source/Framework/Logging/LogMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Logging/LogMessage.cs -------------------------------------------------------------------------------- /Source/Framework/Logging/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Logging/Logger.cs -------------------------------------------------------------------------------- /Source/Framework/Metrics/MeteredMetric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Metrics/MeteredMetric.cs -------------------------------------------------------------------------------- /Source/Framework/Metrics/MetricFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Metrics/MetricFactory.cs -------------------------------------------------------------------------------- /Source/Framework/Models/BoxedValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Models/BoxedValue.cs -------------------------------------------------------------------------------- /Source/Framework/Networking/ISocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Networking/ISocket.cs -------------------------------------------------------------------------------- /Source/Framework/Networking/SSLSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Networking/SSLSocket.cs -------------------------------------------------------------------------------- /Source/Framework/Networking/SocketBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Networking/SocketBase.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/AccountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/AccountService.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/AccountTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/AccountTypes.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/Api/V1/ChannelId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/Api/V1/ChannelId.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/AttributeTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/AttributeTypes.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/AuroraError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/AuroraError.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/CASInitError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/CASInitError.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ChallengeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ChallengeService.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ChannelTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ChannelTypes.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ClientDisconnect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ClientDisconnect.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ClientLoadingTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ClientLoadingTime.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ClientNameLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ClientNameLookup.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ClientPerformance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ClientPerformance.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ClientShared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ClientShared.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ClientTradingPost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ClientTradingPost.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ClubBan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ClubBan.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ClubCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ClubCore.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ClubEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ClubEnum.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ClubInvitation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ClubInvitation.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ClubMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ClubMember.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ClubMemberId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ClubMemberId.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ClubNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ClubNotification.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ClubRangeSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ClubRangeSet.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ClubRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ClubRequest.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ClubRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ClubRole.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ClubStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ClubStream.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ClubTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ClubTypes.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ConnectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ConnectionService.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/EmbedTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/EmbedTypes.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/EntityTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/EntityTypes.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/EtsTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/EtsTypes.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/EventViewTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/EventViewTypes.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/FriendsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/FriendsService.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/FriendsTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/FriendsTypes.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/InvitationTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/InvitationTypes.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/MessageTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/MessageTypes.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/NotificationTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/NotificationTypes.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/PresenceListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/PresenceListener.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/PresenceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/PresenceService.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/PresenceTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/PresenceTypes.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ReportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ReportService.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ReportTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ReportTypes.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/ResourceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/ResourceService.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/RoleTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/RoleTypes.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/RpcConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/RpcConfig.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/RpcTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/RpcTypes.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/UserManagerTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/UserManagerTypes.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/VoiceChannelJoin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/VoiceChannelJoin.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/VoiceChannelLeave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/VoiceChannelLeave.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/VoiceTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/VoiceTypes.cs -------------------------------------------------------------------------------- /Source/Framework/Proto/WorldLoadFailed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Proto/WorldLoadFailed.cs -------------------------------------------------------------------------------- /Source/Framework/Realm/Realm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Realm/Realm.cs -------------------------------------------------------------------------------- /Source/Framework/Realm/RealmBuildInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Realm/RealmBuildInfo.cs -------------------------------------------------------------------------------- /Source/Framework/Realm/RealmId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Realm/RealmId.cs -------------------------------------------------------------------------------- /Source/Framework/Realm/RealmManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Realm/RealmManager.cs -------------------------------------------------------------------------------- /Source/Framework/Serialization/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Serialization/Json.cs -------------------------------------------------------------------------------- /Source/Framework/Singleton/Singleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Singleton/Singleton.cs -------------------------------------------------------------------------------- /Source/Framework/Threading/ThreadingUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Threading/ThreadingUtil.cs -------------------------------------------------------------------------------- /Source/Framework/Util/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Util/Extensions.cs -------------------------------------------------------------------------------- /Source/Framework/Util/ICheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Util/ICheck.cs -------------------------------------------------------------------------------- /Source/Framework/Util/IDoWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Util/IDoWork.cs -------------------------------------------------------------------------------- /Source/Framework/Util/MathFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Util/MathFunctions.cs -------------------------------------------------------------------------------- /Source/Framework/Util/NetworkExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Util/NetworkExtensions.cs -------------------------------------------------------------------------------- /Source/Framework/Util/RandomHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Util/RandomHelper.cs -------------------------------------------------------------------------------- /Source/Framework/Util/Time.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Util/Time.cs -------------------------------------------------------------------------------- /Source/Framework/Util/VariableStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Util/VariableStore.cs -------------------------------------------------------------------------------- /Source/Framework/Web/API/ApiRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Web/API/ApiRequest.cs -------------------------------------------------------------------------------- /Source/Framework/Web/Http.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Web/Http.cs -------------------------------------------------------------------------------- /Source/Framework/Web/Rest/Misc/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Framework/Web/Rest/Misc/Address.cs -------------------------------------------------------------------------------- /Source/Game/AI/AISelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/AISelector.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/AICondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/AICondition.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/AISpellInfoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/AISpellInfoType.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/AITarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/AITarget.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/AggressorAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/AggressorAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/ArcherAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/ArcherAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/AreaTriggerAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/AreaTriggerAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/CasterAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/CasterAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/CombatAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/CombatAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/CreatureAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/CreatureAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/CritterAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/CritterAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/GameObjectAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/GameObjectAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/GuardAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/GuardAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/IUnitAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/IUnitAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/NullAreaTriggerAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/NullAreaTriggerAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/NullCreatureAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/NullCreatureAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/PassiveAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/PassiveAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/PetAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/PetAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/PossessedAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/PossessedAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/PowerUsersSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/PowerUsersSelector.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/ReactorAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/ReactorAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/ScheduledChangeAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/ScheduledChangeAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/TotemAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/TotemAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/TriggerAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/TriggerAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/TurretAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/TurretAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/UnitAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/UnitAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/CoreAI/VehicleAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/CoreAI/VehicleAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/PlayerAI/PlayerAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/PlayerAI/PlayerAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/PlayerAI/Spells.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/PlayerAI/Spells.cs -------------------------------------------------------------------------------- /Source/Game/AI/ScriptedAI/BossAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/ScriptedAI/BossAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/ScriptedAI/EscortAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/ScriptedAI/EscortAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/ScriptedAI/EscortPointIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/ScriptedAI/EscortPointIds.cs -------------------------------------------------------------------------------- /Source/Game/AI/ScriptedAI/EscortState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/ScriptedAI/EscortState.cs -------------------------------------------------------------------------------- /Source/Game/AI/ScriptedAI/FollowState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/ScriptedAI/FollowState.cs -------------------------------------------------------------------------------- /Source/Game/AI/ScriptedAI/FollowerAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/ScriptedAI/FollowerAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/ScriptedAI/ScriptedAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/ScriptedAI/ScriptedAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/ScriptedAI/SummonList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/ScriptedAI/SummonList.cs -------------------------------------------------------------------------------- /Source/Game/AI/ScriptedAI/WorldBossAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/ScriptedAI/WorldBossAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/SmartScripts/SmartAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/SmartScripts/SmartAI.cs -------------------------------------------------------------------------------- /Source/Game/AI/SmartScripts/SmartAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/SmartScripts/SmartAction.cs -------------------------------------------------------------------------------- /Source/Game/AI/SmartScripts/SmartEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/SmartScripts/SmartEvent.cs -------------------------------------------------------------------------------- /Source/Game/AI/SmartScripts/SmartScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/SmartScripts/SmartScript.cs -------------------------------------------------------------------------------- /Source/Game/AI/SmartScripts/SmartTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AI/SmartScripts/SmartTarget.cs -------------------------------------------------------------------------------- /Source/Game/Accounts/AccountManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Accounts/AccountManager.cs -------------------------------------------------------------------------------- /Source/Game/Accounts/AccountOpResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Accounts/AccountOpResult.cs -------------------------------------------------------------------------------- /Source/Game/Accounts/BNetAccountManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Accounts/BNetAccountManager.cs -------------------------------------------------------------------------------- /Source/Game/Accounts/RBACCommandResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Accounts/RBACCommandResult.cs -------------------------------------------------------------------------------- /Source/Game/Accounts/RBACData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Accounts/RBACData.cs -------------------------------------------------------------------------------- /Source/Game/Accounts/RBACPermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Accounts/RBACPermission.cs -------------------------------------------------------------------------------- /Source/Game/Achievements/Criteria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Achievements/Criteria.cs -------------------------------------------------------------------------------- /Source/Game/Achievements/CriteriaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Achievements/CriteriaData.cs -------------------------------------------------------------------------------- /Source/Game/Achievements/CriteriaDataSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Achievements/CriteriaDataSet.cs -------------------------------------------------------------------------------- /Source/Game/Achievements/CriteriaHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Achievements/CriteriaHandler.cs -------------------------------------------------------------------------------- /Source/Game/Achievements/CriteriaManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Achievements/CriteriaManager.cs -------------------------------------------------------------------------------- /Source/Game/Achievements/CriteriaTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Achievements/CriteriaTree.cs -------------------------------------------------------------------------------- /Source/Game/Arenas/Arena.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Arenas/Arena.cs -------------------------------------------------------------------------------- /Source/Game/Arenas/ArenaScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Arenas/ArenaScore.cs -------------------------------------------------------------------------------- /Source/Game/Arenas/ArenaTeam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Arenas/ArenaTeam.cs -------------------------------------------------------------------------------- /Source/Game/Arenas/ArenaTeamManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Arenas/ArenaTeamManager.cs -------------------------------------------------------------------------------- /Source/Game/Arenas/Zones/BladesEdgeArena.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Arenas/Zones/BladesEdgeArena.cs -------------------------------------------------------------------------------- /Source/Game/Arenas/Zones/DalaranSewers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Arenas/Zones/DalaranSewers.cs -------------------------------------------------------------------------------- /Source/Game/Arenas/Zones/NagrandArena.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Arenas/Zones/NagrandArena.cs -------------------------------------------------------------------------------- /Source/Game/Arenas/Zones/RingofValor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Arenas/Zones/RingofValor.cs -------------------------------------------------------------------------------- /Source/Game/Arenas/Zones/TigersPeak.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Arenas/Zones/TigersPeak.cs -------------------------------------------------------------------------------- /Source/Game/Arenas/Zones/TolvironArena.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Arenas/Zones/TolvironArena.cs -------------------------------------------------------------------------------- /Source/Game/AuctionHouse/AuctionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AuctionHouse/AuctionManager.cs -------------------------------------------------------------------------------- /Source/Game/AuctionHouse/AuctionPosting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AuctionHouse/AuctionPosting.cs -------------------------------------------------------------------------------- /Source/Game/AuctionHouse/CommodityQuote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/AuctionHouse/CommodityQuote.cs -------------------------------------------------------------------------------- /Source/Game/BattleFields/BattleField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/BattleFields/BattleField.cs -------------------------------------------------------------------------------- /Source/Game/BattleGrounds/BattleGround.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/BattleGrounds/BattleGround.cs -------------------------------------------------------------------------------- /Source/Game/BattlePets/BattlePet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/BattlePets/BattlePet.cs -------------------------------------------------------------------------------- /Source/Game/BattlePets/BattlePetMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/BattlePets/BattlePetMgr.cs -------------------------------------------------------------------------------- /Source/Game/Battlepay/BattlepayManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Battlepay/BattlepayManager.cs -------------------------------------------------------------------------------- /Source/Game/Battlepay/BpayError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Battlepay/BpayError.cs -------------------------------------------------------------------------------- /Source/Game/Battlepay/BpayStatusString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Battlepay/BpayStatusString.cs -------------------------------------------------------------------------------- /Source/Game/Battlepay/BpayUpdateStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Battlepay/BpayUpdateStatus.cs -------------------------------------------------------------------------------- /Source/Game/Battlepay/ProductListResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Battlepay/ProductListResult.cs -------------------------------------------------------------------------------- /Source/Game/Battlepay/ProductType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Battlepay/ProductType.cs -------------------------------------------------------------------------------- /Source/Game/Battlepay/Purchase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Battlepay/Purchase.cs -------------------------------------------------------------------------------- /Source/Game/BlackMarket/BlackMarketEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/BlackMarket/BlackMarketEntry.cs -------------------------------------------------------------------------------- /Source/Game/Cache/CharacterCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Cache/CharacterCache.cs -------------------------------------------------------------------------------- /Source/Game/Cache/CharacterCacheEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Cache/CharacterCacheEntry.cs -------------------------------------------------------------------------------- /Source/Game/Calendar/CalendarEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Calendar/CalendarEvent.cs -------------------------------------------------------------------------------- /Source/Game/Calendar/CalendarInvite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Calendar/CalendarInvite.cs -------------------------------------------------------------------------------- /Source/Game/Calendar/CalendarManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Calendar/CalendarManager.cs -------------------------------------------------------------------------------- /Source/Game/Chat/AccountIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/AccountIdentifier.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Channels/BannedAppend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Channels/BannedAppend.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Channels/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Channels/Channel.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Channels/ChannelManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Channels/ChannelManager.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Channels/InviteAppend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Channels/InviteAppend.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Channels/JoinedAppend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Channels/JoinedAppend.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Channels/LeftAppend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Channels/LeftAppend.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Channels/MutedAppend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Channels/MutedAppend.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Channels/NotInLFGAppend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Channels/NotInLFGAppend.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Channels/NotOwnerAppend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Channels/NotOwnerAppend.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Channels/VoiceOffAppend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Channels/VoiceOffAppend.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Channels/VoiceOnAppend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Channels/VoiceOnAppend.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Channels/YouLeftAppend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Channels/YouLeftAppend.cs -------------------------------------------------------------------------------- /Source/Game/Chat/ChatCommandNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/ChatCommandNode.cs -------------------------------------------------------------------------------- /Source/Game/Chat/ChatCommandResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/ChatCommandResult.cs -------------------------------------------------------------------------------- /Source/Game/Chat/CommandArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/CommandArgs.cs -------------------------------------------------------------------------------- /Source/Game/Chat/CommandAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/CommandAttribute.cs -------------------------------------------------------------------------------- /Source/Game/Chat/CommandGroupAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/CommandGroupAttribute.cs -------------------------------------------------------------------------------- /Source/Game/Chat/CommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/CommandHandler.cs -------------------------------------------------------------------------------- /Source/Game/Chat/CommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/CommandManager.cs -------------------------------------------------------------------------------- /Source/Game/Chat/CommandPermissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/CommandPermissions.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Commands/AhBotCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Commands/AhBotCommands.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Commands/ArenaCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Commands/ArenaCommands.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Commands/BanCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Commands/BanCommands.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Commands/CastCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Commands/CastCommands.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Commands/GMCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Commands/GMCommands.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Commands/GoCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Commands/GoCommands.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Commands/LFGCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Commands/LFGCommands.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Commands/ListCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Commands/ListCommands.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Commands/MiscCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Commands/MiscCommands.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Commands/NPCCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Commands/NPCCommands.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Commands/PdumpCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Commands/PdumpCommand.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Commands/PetCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Commands/PetCommands.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Commands/RbacComands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Commands/RbacComands.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Commands/SendCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Commands/SendCommands.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Commands/Spells.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Commands/Spells.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Commands/TeleCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Commands/TeleCommands.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Commands/WPCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Commands/WPCommands.cs -------------------------------------------------------------------------------- /Source/Game/Chat/ConsoleHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/ConsoleHandler.cs -------------------------------------------------------------------------------- /Source/Game/Chat/HandleCommandDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/HandleCommandDelegate.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Hyperlink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Hyperlink.cs -------------------------------------------------------------------------------- /Source/Game/Chat/HyperlinkColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/HyperlinkColor.cs -------------------------------------------------------------------------------- /Source/Game/Chat/HyperlinkInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/HyperlinkInfo.cs -------------------------------------------------------------------------------- /Source/Game/Chat/LanguageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/LanguageManager.cs -------------------------------------------------------------------------------- /Source/Game/Chat/OptionalArgAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/OptionalArgAttribute.cs -------------------------------------------------------------------------------- /Source/Game/Chat/PlayerIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/PlayerIdentifier.cs -------------------------------------------------------------------------------- /Source/Game/Chat/QuotedString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/QuotedString.cs -------------------------------------------------------------------------------- /Source/Game/Chat/RemoteAccessHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/RemoteAccessHandler.cs -------------------------------------------------------------------------------- /Source/Game/Chat/Tail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/Tail.cs -------------------------------------------------------------------------------- /Source/Game/Chat/VariantArgAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Chat/VariantArgAttribute.cs -------------------------------------------------------------------------------- /Source/Game/Collision/AABound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Collision/AABound.cs -------------------------------------------------------------------------------- /Source/Game/Collision/AreaInfoCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Collision/AreaInfoCallback.cs -------------------------------------------------------------------------------- /Source/Game/Collision/BIH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Collision/BIH.cs -------------------------------------------------------------------------------- /Source/Game/Collision/BIHWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Collision/BIHWrap.cs -------------------------------------------------------------------------------- /Source/Game/Collision/DynTreeImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Collision/DynTreeImpl.cs -------------------------------------------------------------------------------- /Source/Game/Collision/DynamicMapTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Collision/DynamicMapTree.cs -------------------------------------------------------------------------------- /Source/Game/Collision/MapRayCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Collision/MapRayCallback.cs -------------------------------------------------------------------------------- /Source/Game/Collision/Maps/AreaInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Collision/Maps/AreaInfo.cs -------------------------------------------------------------------------------- /Source/Game/Collision/Models/IModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Collision/Models/IModel.cs -------------------------------------------------------------------------------- /Source/Game/Collision/Models/WmoLiquid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Collision/Models/WmoLiquid.cs -------------------------------------------------------------------------------- /Source/Game/Collision/RegularGrid2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Collision/RegularGrid2D.cs -------------------------------------------------------------------------------- /Source/Game/Collision/TriBoundFunc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Collision/TriBoundFunc.cs -------------------------------------------------------------------------------- /Source/Game/Collision/WorkerCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Collision/WorkerCallback.cs -------------------------------------------------------------------------------- /Source/Game/Combat/CombatManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Combat/CombatManager.cs -------------------------------------------------------------------------------- /Source/Game/Combat/CombatReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Combat/CombatReference.cs -------------------------------------------------------------------------------- /Source/Game/Combat/OnlineState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Combat/OnlineState.cs -------------------------------------------------------------------------------- /Source/Game/Combat/PvPCombatReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Combat/PvPCombatReference.cs -------------------------------------------------------------------------------- /Source/Game/Combat/TauntState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Combat/TauntState.cs -------------------------------------------------------------------------------- /Source/Game/Combat/ThreatManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Combat/ThreatManager.cs -------------------------------------------------------------------------------- /Source/Game/Combat/ThreatReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Combat/ThreatReference.cs -------------------------------------------------------------------------------- /Source/Game/Conditions/Condition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Conditions/Condition.cs -------------------------------------------------------------------------------- /Source/Game/Conditions/DisableManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Conditions/DisableManager.cs -------------------------------------------------------------------------------- /Source/Game/DataStorage/CliDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/DataStorage/CliDB.cs -------------------------------------------------------------------------------- /Source/Game/DataStorage/DB2Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/DataStorage/DB2Manager.cs -------------------------------------------------------------------------------- /Source/Game/DataStorage/FlyByCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/DataStorage/FlyByCamera.cs -------------------------------------------------------------------------------- /Source/Game/DataStorage/HotfixId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/DataStorage/HotfixId.cs -------------------------------------------------------------------------------- /Source/Game/DataStorage/HotfixRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/DataStorage/HotfixRecord.cs -------------------------------------------------------------------------------- /Source/Game/DataStorage/M2Storage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/DataStorage/M2Storage.cs -------------------------------------------------------------------------------- /Source/Game/DataStorage/UiMapBounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/DataStorage/UiMapBounds.cs -------------------------------------------------------------------------------- /Source/Game/DungeonFinding/LFGManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/DungeonFinding/LFGManager.cs -------------------------------------------------------------------------------- /Source/Game/DungeonFinding/LFGQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/DungeonFinding/LFGQueue.cs -------------------------------------------------------------------------------- /Source/Game/DungeonFinding/LFGScripts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/DungeonFinding/LFGScripts.cs -------------------------------------------------------------------------------- /Source/Game/Entities/ActiveStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/ActiveStates.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Conversation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Conversation.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Corpse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Corpse.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Creatures/NpcText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Creatures/NpcText.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Creatures/Trainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Creatures/Trainer.cs -------------------------------------------------------------------------------- /Source/Game/Entities/DynamicObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/DynamicObject.cs -------------------------------------------------------------------------------- /Source/Game/Entities/DynamicObjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/DynamicObjectType.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Guardian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Guardian.cs -------------------------------------------------------------------------------- /Source/Game/Entities/ITransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/ITransport.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Items/AzeriteData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Items/AzeriteData.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Items/AzeriteItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Items/AzeriteItem.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Items/Bag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Items/Bag.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Items/BonusData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Items/BonusData.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Items/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Items/Item.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Minion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Minion.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Objects/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Objects/Position.cs -------------------------------------------------------------------------------- /Source/Game/Entities/PassengerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/PassengerInfo.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Pet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Pet.cs -------------------------------------------------------------------------------- /Source/Game/Entities/PetEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/PetEntry.cs -------------------------------------------------------------------------------- /Source/Game/Entities/PetLoginQueryLoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/PetLoginQueryLoad.cs -------------------------------------------------------------------------------- /Source/Game/Entities/PetSpell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/PetSpell.cs -------------------------------------------------------------------------------- /Source/Game/Entities/PetStable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/PetStable.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Players/BgData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Players/BgData.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Players/DuelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Players/DuelInfo.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Players/Petition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Players/Petition.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Players/Player.DB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Players/Player.DB.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Players/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Players/Player.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Players/PvPInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Players/PvPInfo.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Players/RestMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Players/RestMgr.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Players/Runes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Players/Runes.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Players/SceneMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Players/SceneMgr.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Players/TradeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Players/TradeData.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Puppet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Puppet.cs -------------------------------------------------------------------------------- /Source/Game/Entities/SceneObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/SceneObject.cs -------------------------------------------------------------------------------- /Source/Game/Entities/TempSummon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/TempSummon.cs -------------------------------------------------------------------------------- /Source/Game/Entities/TempSummonData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/TempSummonData.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Totem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Totem.cs -------------------------------------------------------------------------------- /Source/Game/Entities/TotemType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/TotemType.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Transport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Transport.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Units/CharmInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Units/CharmInfo.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Units/CleanDamage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Units/CleanDamage.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Units/DamageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Units/DamageInfo.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Units/DispelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Units/DispelInfo.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Units/HealInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Units/HealInfo.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Units/Unit.Combat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Units/Unit.Combat.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Units/Unit.Fields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Units/Unit.Fields.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Units/Unit.Pets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Units/Unit.Pets.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Units/Unit.Spells.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Units/Unit.Spells.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Units/Unit.Stats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Units/Unit.Stats.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Units/Unit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Units/Unit.cs -------------------------------------------------------------------------------- /Source/Game/Entities/Vehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/Vehicle.cs -------------------------------------------------------------------------------- /Source/Game/Entities/VehicleAccessory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/VehicleAccessory.cs -------------------------------------------------------------------------------- /Source/Game/Entities/VehicleJoinEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/VehicleJoinEvent.cs -------------------------------------------------------------------------------- /Source/Game/Entities/VehicleSeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/VehicleSeat.cs -------------------------------------------------------------------------------- /Source/Game/Entities/VehicleSeatAddon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/VehicleSeatAddon.cs -------------------------------------------------------------------------------- /Source/Game/Entities/VehicleTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Entities/VehicleTemplate.cs -------------------------------------------------------------------------------- /Source/Game/Events/GameEventManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Events/GameEventManager.cs -------------------------------------------------------------------------------- /Source/Game/Events/GameEventSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Events/GameEventSender.cs -------------------------------------------------------------------------------- /Source/Game/Extendability/Extentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Extendability/Extentions.cs -------------------------------------------------------------------------------- /Source/Game/Extendability/IOHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Extendability/IOHelpers.cs -------------------------------------------------------------------------------- /Source/Game/Game.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Game.csproj -------------------------------------------------------------------------------- /Source/Game/Garrisons/GarrisonManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Garrisons/GarrisonManager.cs -------------------------------------------------------------------------------- /Source/Game/Garrisons/GarrisonMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Garrisons/GarrisonMap.cs -------------------------------------------------------------------------------- /Source/Game/Garrisons/Garrisons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Garrisons/Garrisons.cs -------------------------------------------------------------------------------- /Source/Game/Globals/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Globals/Global.cs -------------------------------------------------------------------------------- /Source/Game/Globals/ObjectAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Globals/ObjectAccessor.cs -------------------------------------------------------------------------------- /Source/Game/Globals/ObjectManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Globals/ObjectManager.cs -------------------------------------------------------------------------------- /Source/Game/Globals/ProductAddon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Globals/ProductAddon.cs -------------------------------------------------------------------------------- /Source/Game/Groups/GroupManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Groups/GroupManager.cs -------------------------------------------------------------------------------- /Source/Game/Groups/GroupRefManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Groups/GroupRefManager.cs -------------------------------------------------------------------------------- /Source/Game/Groups/GroupReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Groups/GroupReference.cs -------------------------------------------------------------------------------- /Source/Game/Groups/MemberSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Groups/MemberSlot.cs -------------------------------------------------------------------------------- /Source/Game/Groups/PlayerGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Groups/PlayerGroup.cs -------------------------------------------------------------------------------- /Source/Game/Groups/RaidMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Groups/RaidMarker.cs -------------------------------------------------------------------------------- /Source/Game/Guilds/Guild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Guilds/Guild.cs -------------------------------------------------------------------------------- /Source/Game/Guilds/GuildManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Guilds/GuildManager.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/ArtifactHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/ArtifactHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/AuctionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/AuctionHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/AzeriteHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/AzeriteHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/BankHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/BankHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/BattlePetHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/BattlePetHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/BattlenetHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/BattlenetHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/BattlepayHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/BattlepayHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/CalendarHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/CalendarHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/ChannelHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/ChannelHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/CharacterHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/CharacterHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/ChatHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/ChatHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/CombatHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/CombatHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/DuelHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/DuelHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/GarrisonHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/GarrisonHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/GroupHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/GroupHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/GuildHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/GuildHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/HotfixHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/HotfixHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/InspectHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/InspectHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/ItemHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/ItemHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/LFGHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/LFGHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/LogoutHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/LogoutHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/LootHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/LootHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/MailHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/MailHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/MiscHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/MiscHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/MovementHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/MovementHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/MythicPlusHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/MythicPlusHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/NPCHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/NPCHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/PetHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/PetHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/PetitionsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/PetitionsHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/QueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/QueryHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/QuestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/QuestHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/RAFHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/RAFHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/ScenarioHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/ScenarioHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/SceneHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/SceneHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/SkillHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/SkillHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/SocialHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/SocialHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/SpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/SpellHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/TaxiHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/TaxiHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/TicketHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/TicketHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/TimeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/TimeHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/TokenHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/TokenHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/ToyHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/ToyHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/TradeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/TradeHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/TraitHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/TraitHandler.cs -------------------------------------------------------------------------------- /Source/Game/Handlers/VehicleHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Handlers/VehicleHandler.cs -------------------------------------------------------------------------------- /Source/Game/Loot/Loot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Loot/Loot.cs -------------------------------------------------------------------------------- /Source/Game/Loot/LootItemStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Loot/LootItemStorage.cs -------------------------------------------------------------------------------- /Source/Game/Loot/LootManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Loot/LootManager.cs -------------------------------------------------------------------------------- /Source/Game/Loot/LootStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Loot/LootStorage.cs -------------------------------------------------------------------------------- /Source/Game/Mails/Mail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Mails/Mail.cs -------------------------------------------------------------------------------- /Source/Game/Mails/MailDraft.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Mails/MailDraft.cs -------------------------------------------------------------------------------- /Source/Game/Maps/AreaBoundary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/AreaBoundary.cs -------------------------------------------------------------------------------- /Source/Game/Maps/BattlegroundMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/BattlegroundMap.cs -------------------------------------------------------------------------------- /Source/Game/Maps/BoundaryUnionBoundary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/BoundaryUnionBoundary.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Cell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Cell.cs -------------------------------------------------------------------------------- /Source/Game/Maps/CellArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/CellArea.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Checks/UnitAuraCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Checks/UnitAuraCheck.cs -------------------------------------------------------------------------------- /Source/Game/Maps/CompareRespawnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/CompareRespawnInfo.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Grids/CellCoord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Grids/CellCoord.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Grids/Grid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Grids/Grid.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Grids/GridCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Grids/GridCell.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Grids/GridCoord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Grids/GridCoord.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Grids/GridDefines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Grids/GridDefines.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Grids/GridInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Grids/GridInfo.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Grids/GridMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Grids/GridMap.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Grids/GridState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Grids/GridState.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Grids/ICoord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Grids/ICoord.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Grids/LiquidData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Grids/LiquidData.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Grids/MapAreaHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Grids/MapAreaHeader.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Grids/MapFileHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Grids/MapFileHeader.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Grids/MapHeightHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Grids/MapHeightHeader.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Grids/MapLiquidHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Grids/MapLiquidHeader.cs -------------------------------------------------------------------------------- /Source/Game/Maps/InstanceMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/InstanceMap.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Instances/BossInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Instances/BossInfo.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Instances/DoorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Instances/DoorData.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Instances/DoorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Instances/DoorInfo.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Instances/MinionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Instances/MinionData.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Instances/MinionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Instances/MinionInfo.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Instances/ObjectData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Instances/ObjectData.cs -------------------------------------------------------------------------------- /Source/Game/Maps/MMapData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/MMapData.cs -------------------------------------------------------------------------------- /Source/Game/Maps/MMapManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/MMapManager.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Map.cs -------------------------------------------------------------------------------- /Source/Game/Maps/MapManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/MapManager.cs -------------------------------------------------------------------------------- /Source/Game/Maps/MmapTileHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/MmapTileHeader.cs -------------------------------------------------------------------------------- /Source/Game/Maps/ObjectGridCleaner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/ObjectGridCleaner.cs -------------------------------------------------------------------------------- /Source/Game/Maps/ObjectGridEvacuator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/ObjectGridEvacuator.cs -------------------------------------------------------------------------------- /Source/Game/Maps/ObjectGridLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/ObjectGridLoader.cs -------------------------------------------------------------------------------- /Source/Game/Maps/ObjectGridLoaderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/ObjectGridLoaderBase.cs -------------------------------------------------------------------------------- /Source/Game/Maps/ObjectGridStoper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/ObjectGridStoper.cs -------------------------------------------------------------------------------- /Source/Game/Maps/ObjectGridUnloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/ObjectGridUnloader.cs -------------------------------------------------------------------------------- /Source/Game/Maps/ObjectWorldLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/ObjectWorldLoader.cs -------------------------------------------------------------------------------- /Source/Game/Maps/ParallelogramBoundary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/ParallelogramBoundary.cs -------------------------------------------------------------------------------- /Source/Game/Maps/RectangleBoundary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/RectangleBoundary.cs -------------------------------------------------------------------------------- /Source/Game/Maps/RespawnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/RespawnInfo.cs -------------------------------------------------------------------------------- /Source/Game/Maps/ScriptAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/ScriptAction.cs -------------------------------------------------------------------------------- /Source/Game/Maps/SpawnData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/SpawnData.cs -------------------------------------------------------------------------------- /Source/Game/Maps/SpawnMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/SpawnMetadata.cs -------------------------------------------------------------------------------- /Source/Game/Maps/SplineRawInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/SplineRawInitializer.cs -------------------------------------------------------------------------------- /Source/Game/Maps/TerrainInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/TerrainInfo.cs -------------------------------------------------------------------------------- /Source/Game/Maps/TerrainManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/TerrainManager.cs -------------------------------------------------------------------------------- /Source/Game/Maps/TransferAbortParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/TransferAbortParams.cs -------------------------------------------------------------------------------- /Source/Game/Maps/TransportAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/TransportAnimation.cs -------------------------------------------------------------------------------- /Source/Game/Maps/TransportManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/TransportManager.cs -------------------------------------------------------------------------------- /Source/Game/Maps/TransportPathEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/TransportPathEvent.cs -------------------------------------------------------------------------------- /Source/Game/Maps/TransportPathLeg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/TransportPathLeg.cs -------------------------------------------------------------------------------- /Source/Game/Maps/TransportPathSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/TransportPathSegment.cs -------------------------------------------------------------------------------- /Source/Game/Maps/TransportSpawn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/TransportSpawn.cs -------------------------------------------------------------------------------- /Source/Game/Maps/TransportTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/TransportTemplate.cs -------------------------------------------------------------------------------- /Source/Game/Maps/TriangleBoundary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/TriangleBoundary.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Workers/LocalizedDo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Workers/LocalizedDo.cs -------------------------------------------------------------------------------- /Source/Game/Maps/Workers/RespawnDo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/Workers/RespawnDo.cs -------------------------------------------------------------------------------- /Source/Game/Maps/WorldObjectTypedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/WorldObjectTypedList.cs -------------------------------------------------------------------------------- /Source/Game/Maps/ZRangeBoundary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/ZRangeBoundary.cs -------------------------------------------------------------------------------- /Source/Game/Maps/ZoneDynamicInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/ZoneDynamicInfo.cs -------------------------------------------------------------------------------- /Source/Game/Maps/ZoneScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Maps/ZoneScript.cs -------------------------------------------------------------------------------- /Source/Game/Miscellaneous/Formulas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Miscellaneous/Formulas.cs -------------------------------------------------------------------------------- /Source/Game/Movement/AbstractFollower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Movement/AbstractFollower.cs -------------------------------------------------------------------------------- /Source/Game/Movement/MotionMaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Movement/MotionMaster.cs -------------------------------------------------------------------------------- /Source/Game/Movement/MoveSpline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Movement/MoveSpline.cs -------------------------------------------------------------------------------- /Source/Game/Movement/MoveSplineFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Movement/MoveSplineFlags.cs -------------------------------------------------------------------------------- /Source/Game/Movement/MoveSplineInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Movement/MoveSplineInit.cs -------------------------------------------------------------------------------- /Source/Game/Movement/Spline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Movement/Spline.cs -------------------------------------------------------------------------------- /Source/Game/Movement/WaypointManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Movement/WaypointManager.cs -------------------------------------------------------------------------------- /Source/Game/Networking/AccountInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Networking/AccountInfo.cs -------------------------------------------------------------------------------- /Source/Game/Networking/ClientPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Networking/ClientPacket.cs -------------------------------------------------------------------------------- /Source/Game/Networking/PacketHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Networking/PacketHandler.cs -------------------------------------------------------------------------------- /Source/Game/Networking/PacketHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Networking/PacketHeader.cs -------------------------------------------------------------------------------- /Source/Game/Networking/PacketLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Networking/PacketLog.cs -------------------------------------------------------------------------------- /Source/Game/Networking/PacketManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Networking/PacketManager.cs -------------------------------------------------------------------------------- /Source/Game/Networking/RASocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Networking/RASocket.cs -------------------------------------------------------------------------------- /Source/Game/Networking/ServerPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Networking/ServerPacket.cs -------------------------------------------------------------------------------- /Source/Game/Networking/WorldPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Networking/WorldPacket.cs -------------------------------------------------------------------------------- /Source/Game/Networking/WorldSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Networking/WorldSocket.cs -------------------------------------------------------------------------------- /Source/Game/OutdoorPVP/OutdoorPvP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/OutdoorPVP/OutdoorPvP.cs -------------------------------------------------------------------------------- /Source/Game/Phasing/PhaseFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Phasing/PhaseFlags.cs -------------------------------------------------------------------------------- /Source/Game/Phasing/PhaseRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Phasing/PhaseRef.cs -------------------------------------------------------------------------------- /Source/Game/Phasing/PhaseShift.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Phasing/PhaseShift.cs -------------------------------------------------------------------------------- /Source/Game/Phasing/PhaseShiftFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Phasing/PhaseShiftFlags.cs -------------------------------------------------------------------------------- /Source/Game/Phasing/PhasingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Phasing/PhasingHandler.cs -------------------------------------------------------------------------------- /Source/Game/Phasing/UiMapPhaseIdRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Phasing/UiMapPhaseIdRef.cs -------------------------------------------------------------------------------- /Source/Game/Phasing/VisibleMapIdRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Phasing/VisibleMapIdRef.cs -------------------------------------------------------------------------------- /Source/Game/Pools/Pool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Pools/Pool.cs -------------------------------------------------------------------------------- /Source/Game/Pools/PoolGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Pools/PoolGroup.cs -------------------------------------------------------------------------------- /Source/Game/Pools/PoolManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Pools/PoolManager.cs -------------------------------------------------------------------------------- /Source/Game/Pools/PoolObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Pools/PoolObject.cs -------------------------------------------------------------------------------- /Source/Game/Pools/PoolTemplateData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Pools/PoolTemplateData.cs -------------------------------------------------------------------------------- /Source/Game/Pools/QuestPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Pools/QuestPool.cs -------------------------------------------------------------------------------- /Source/Game/Pools/QuestPoolManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Pools/QuestPoolManager.cs -------------------------------------------------------------------------------- /Source/Game/Pools/SpawnedPoolData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Pools/SpawnedPoolData.cs -------------------------------------------------------------------------------- /Source/Game/Quest/Quest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Quest/Quest.cs -------------------------------------------------------------------------------- /Source/Game/Quest/QuestConditionalText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Quest/QuestConditionalText.cs -------------------------------------------------------------------------------- /Source/Game/Quest/QuestGreeting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Quest/QuestGreeting.cs -------------------------------------------------------------------------------- /Source/Game/Quest/QuestGreetingLocale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Quest/QuestGreetingLocale.cs -------------------------------------------------------------------------------- /Source/Game/Quest/QuestObjective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Quest/QuestObjective.cs -------------------------------------------------------------------------------- /Source/Game/Quest/QuestStatusData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Quest/QuestStatusData.cs -------------------------------------------------------------------------------- /Source/Game/Quest/QuestTemplateLocale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Quest/QuestTemplateLocale.cs -------------------------------------------------------------------------------- /Source/Game/Reputation/FactionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Reputation/FactionState.cs -------------------------------------------------------------------------------- /Source/Game/Reputation/RepRewardRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Reputation/RepRewardRate.cs -------------------------------------------------------------------------------- /Source/Game/Reputation/ReputationMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Reputation/ReputationMgr.cs -------------------------------------------------------------------------------- /Source/Game/Scenarios/InstanceScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Scenarios/InstanceScenario.cs -------------------------------------------------------------------------------- /Source/Game/Scenarios/Scenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Scenarios/Scenario.cs -------------------------------------------------------------------------------- /Source/Game/Scenarios/ScenarioDBData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Scenarios/ScenarioDBData.cs -------------------------------------------------------------------------------- /Source/Game/Scenarios/ScenarioData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Scenarios/ScenarioData.cs -------------------------------------------------------------------------------- /Source/Game/Scenarios/ScenarioManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Scenarios/ScenarioManager.cs -------------------------------------------------------------------------------- /Source/Game/Scenarios/ScenarioPOI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Scenarios/ScenarioPOI.cs -------------------------------------------------------------------------------- /Source/Game/Scenarios/ScenarioPOIPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Scenarios/ScenarioPOIPoint.cs -------------------------------------------------------------------------------- /Source/Game/Scenarios/ScenarioType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Scenarios/ScenarioType.cs -------------------------------------------------------------------------------- /Source/Game/Scripting/AuraScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Scripting/AuraScript.cs -------------------------------------------------------------------------------- /Source/Game/Scripting/ScriptAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Scripting/ScriptAttribute.cs -------------------------------------------------------------------------------- /Source/Game/Scripting/ScriptManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Scripting/ScriptManager.cs -------------------------------------------------------------------------------- /Source/Game/Scripting/ScriptObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Scripting/ScriptObject.cs -------------------------------------------------------------------------------- /Source/Game/Scripting/ScriptRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Scripting/ScriptRegistry.cs -------------------------------------------------------------------------------- /Source/Game/Scripting/SpellScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Scripting/SpellScript.cs -------------------------------------------------------------------------------- /Source/Game/Server/AccountData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Server/AccountData.cs -------------------------------------------------------------------------------- /Source/Game/Server/ConnectToKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Server/ConnectToKey.cs -------------------------------------------------------------------------------- /Source/Game/Server/DosProtection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Server/DosProtection.cs -------------------------------------------------------------------------------- /Source/Game/Server/PacketCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Server/PacketCounter.cs -------------------------------------------------------------------------------- /Source/Game/Server/WorldConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Server/WorldConfig.cs -------------------------------------------------------------------------------- /Source/Game/Server/WorldSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Server/WorldSession.cs -------------------------------------------------------------------------------- /Source/Game/Services/ServiceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Services/ServiceAttribute.cs -------------------------------------------------------------------------------- /Source/Game/Services/WorldSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Services/WorldSession.cs -------------------------------------------------------------------------------- /Source/Game/Spells/Auras/Aura.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/Auras/Aura.cs -------------------------------------------------------------------------------- /Source/Game/Spells/Auras/AuraEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/Auras/AuraEffect.cs -------------------------------------------------------------------------------- /Source/Game/Spells/Auras/AuraFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/Auras/AuraFlags.cs -------------------------------------------------------------------------------- /Source/Game/Spells/Auras/AuraKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/Auras/AuraKey.cs -------------------------------------------------------------------------------- /Source/Game/Spells/Auras/DynObjAura.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/Auras/DynObjAura.cs -------------------------------------------------------------------------------- /Source/Game/Spells/Auras/UnitAura.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/Auras/UnitAura.cs -------------------------------------------------------------------------------- /Source/Game/Spells/CastSpellExtraArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/CastSpellExtraArgs.cs -------------------------------------------------------------------------------- /Source/Game/Spells/CastSpellTargetArg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/CastSpellTargetArg.cs -------------------------------------------------------------------------------- /Source/Game/Spells/CorpseTargetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/CorpseTargetInfo.cs -------------------------------------------------------------------------------- /Source/Game/Spells/DispelableAura.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/DispelableAura.cs -------------------------------------------------------------------------------- /Source/Game/Spells/GOTargetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/GOTargetInfo.cs -------------------------------------------------------------------------------- /Source/Game/Spells/HitTriggerSpell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/HitTriggerSpell.cs -------------------------------------------------------------------------------- /Source/Game/Spells/ImmunityInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/ImmunityInfo.cs -------------------------------------------------------------------------------- /Source/Game/Spells/ItemTargetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/ItemTargetInfo.cs -------------------------------------------------------------------------------- /Source/Game/Spells/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/Node.cs -------------------------------------------------------------------------------- /Source/Game/Spells/NodeEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/NodeEntry.cs -------------------------------------------------------------------------------- /Source/Game/Spells/NodeGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/NodeGroup.cs -------------------------------------------------------------------------------- /Source/Game/Spells/PetAura.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/PetAura.cs -------------------------------------------------------------------------------- /Source/Game/Spells/ProcFlagsInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/ProcFlagsInit.cs -------------------------------------------------------------------------------- /Source/Game/Spells/ProcReflectDelayed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/ProcReflectDelayed.cs -------------------------------------------------------------------------------- /Source/Game/Spells/ServersideSpellName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/ServersideSpellName.cs -------------------------------------------------------------------------------- /Source/Game/Spells/SkillStatusData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/SkillStatusData.cs -------------------------------------------------------------------------------- /Source/Game/Spells/Spell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/Spell.cs -------------------------------------------------------------------------------- /Source/Game/Spells/SpellArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/SpellArea.cs -------------------------------------------------------------------------------- /Source/Game/Spells/SpellCastTargets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/SpellCastTargets.cs -------------------------------------------------------------------------------- /Source/Game/Spells/SpellChainNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/SpellChainNode.cs -------------------------------------------------------------------------------- /Source/Game/Spells/SpellDestination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/SpellDestination.cs -------------------------------------------------------------------------------- /Source/Game/Spells/SpellDiminishInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/SpellDiminishInfo.cs -------------------------------------------------------------------------------- /Source/Game/Spells/SpellEffectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/SpellEffectInfo.cs -------------------------------------------------------------------------------- /Source/Game/Spells/SpellEffects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/SpellEffects.cs -------------------------------------------------------------------------------- /Source/Game/Spells/SpellEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/SpellEvent.cs -------------------------------------------------------------------------------- /Source/Game/Spells/SpellHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/SpellHistory.cs -------------------------------------------------------------------------------- /Source/Game/Spells/SpellInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/SpellInfo.cs -------------------------------------------------------------------------------- /Source/Game/Spells/SpellInfoLoadHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/SpellInfoLoadHelper.cs -------------------------------------------------------------------------------- /Source/Game/Spells/SpellLearnSkillNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/SpellLearnSkillNode.cs -------------------------------------------------------------------------------- /Source/Game/Spells/SpellLearnSpellNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/SpellLearnSpellNode.cs -------------------------------------------------------------------------------- /Source/Game/Spells/SpellLogEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/SpellLogEffect.cs -------------------------------------------------------------------------------- /Source/Game/Spells/SpellManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/SpellManager.cs -------------------------------------------------------------------------------- /Source/Game/Spells/SpellMisc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/SpellMisc.cs -------------------------------------------------------------------------------- /Source/Game/Spells/SpellModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/SpellModifier.cs -------------------------------------------------------------------------------- /Source/Game/Spells/SpellPowerCost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/SpellPowerCost.cs -------------------------------------------------------------------------------- /Source/Game/Spells/SpellProcEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/SpellProcEntry.cs -------------------------------------------------------------------------------- /Source/Game/Spells/SpellTargetPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/SpellTargetPosition.cs -------------------------------------------------------------------------------- /Source/Game/Spells/SpellThreatEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/SpellThreatEntry.cs -------------------------------------------------------------------------------- /Source/Game/Spells/SpellValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/SpellValue.cs -------------------------------------------------------------------------------- /Source/Game/Spells/TargetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/TargetInfo.cs -------------------------------------------------------------------------------- /Source/Game/Spells/TargetInfoBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/TargetInfoBase.cs -------------------------------------------------------------------------------- /Source/Game/Spells/TraitMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/TraitMgr.cs -------------------------------------------------------------------------------- /Source/Game/Spells/Tree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Spells/Tree.cs -------------------------------------------------------------------------------- /Source/Game/SupportSystem/BugTicket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/SupportSystem/BugTicket.cs -------------------------------------------------------------------------------- /Source/Game/SupportSystem/Ticket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/SupportSystem/Ticket.cs -------------------------------------------------------------------------------- /Source/Game/Text/BroadcastTextBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Text/BroadcastTextBuilder.cs -------------------------------------------------------------------------------- /Source/Game/Text/ChatPacketSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Text/ChatPacketSender.cs -------------------------------------------------------------------------------- /Source/Game/Text/CreatureTextBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Text/CreatureTextBuilder.cs -------------------------------------------------------------------------------- /Source/Game/Text/CreatureTextEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Text/CreatureTextEntry.cs -------------------------------------------------------------------------------- /Source/Game/Text/CreatureTextId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Text/CreatureTextId.cs -------------------------------------------------------------------------------- /Source/Game/Text/CreatureTextLocale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Text/CreatureTextLocale.cs -------------------------------------------------------------------------------- /Source/Game/Text/CreatureTextLocalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Text/CreatureTextLocalizer.cs -------------------------------------------------------------------------------- /Source/Game/Text/CreatureTextManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Text/CreatureTextManager.cs -------------------------------------------------------------------------------- /Source/Game/Text/CreatureTextRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Text/CreatureTextRange.cs -------------------------------------------------------------------------------- /Source/Game/Text/CustomChatTextBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Text/CustomChatTextBuilder.cs -------------------------------------------------------------------------------- /Source/Game/Text/MessageBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Text/MessageBuilder.cs -------------------------------------------------------------------------------- /Source/Game/Text/PlayerTextBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Text/PlayerTextBuilder.cs -------------------------------------------------------------------------------- /Source/Game/Text/SoundKitPlayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Text/SoundKitPlayType.cs -------------------------------------------------------------------------------- /Source/Game/Time/GameTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Time/GameTime.cs -------------------------------------------------------------------------------- /Source/Game/Time/Updatetime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Time/Updatetime.cs -------------------------------------------------------------------------------- /Source/Game/Warden/CategoryCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Warden/CategoryCheck.cs -------------------------------------------------------------------------------- /Source/Game/Warden/ClientWardenModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Warden/ClientWardenModule.cs -------------------------------------------------------------------------------- /Source/Game/Warden/SHA1Randx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Warden/SHA1Randx.cs -------------------------------------------------------------------------------- /Source/Game/Warden/Warden.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Warden/Warden.cs -------------------------------------------------------------------------------- /Source/Game/Warden/WardenActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Warden/WardenActions.cs -------------------------------------------------------------------------------- /Source/Game/Warden/WardenCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Warden/WardenCheck.cs -------------------------------------------------------------------------------- /Source/Game/Warden/WardenCheckCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Warden/WardenCheckCategory.cs -------------------------------------------------------------------------------- /Source/Game/Warden/WardenCheckManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Warden/WardenCheckManager.cs -------------------------------------------------------------------------------- /Source/Game/Warden/WardenCheckType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Warden/WardenCheckType.cs -------------------------------------------------------------------------------- /Source/Game/Warden/WardenHashRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Warden/WardenHashRequest.cs -------------------------------------------------------------------------------- /Source/Game/Warden/WardenModuleUse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Warden/WardenModuleUse.cs -------------------------------------------------------------------------------- /Source/Game/Warden/WardenWin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Warden/WardenWin.cs -------------------------------------------------------------------------------- /Source/Game/Weather/Weather.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Weather/Weather.cs -------------------------------------------------------------------------------- /Source/Game/Weather/WeatherData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Weather/WeatherData.cs -------------------------------------------------------------------------------- /Source/Game/Weather/WeatherManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Weather/WeatherManager.cs -------------------------------------------------------------------------------- /Source/Game/Weather/WeatherState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Weather/WeatherState.cs -------------------------------------------------------------------------------- /Source/Game/Weather/WeatherType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/Weather/WeatherType.cs -------------------------------------------------------------------------------- /Source/Game/World/Autobroadcast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/World/Autobroadcast.cs -------------------------------------------------------------------------------- /Source/Game/World/ServerMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/World/ServerMessageType.cs -------------------------------------------------------------------------------- /Source/Game/World/ShutdownExitCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/World/ShutdownExitCode.cs -------------------------------------------------------------------------------- /Source/Game/World/ShutdownMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/World/ShutdownMask.cs -------------------------------------------------------------------------------- /Source/Game/World/WorldManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/World/WorldManager.cs -------------------------------------------------------------------------------- /Source/Game/World/WorldStateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/World/WorldStateManager.cs -------------------------------------------------------------------------------- /Source/Game/World/WorldStateTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/World/WorldStateTemplate.cs -------------------------------------------------------------------------------- /Source/Game/World/WorldTimers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Game/World/WorldTimers.cs -------------------------------------------------------------------------------- /Source/Scripts/BattleField/WinterGrasp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/BattleField/WinterGrasp.cs -------------------------------------------------------------------------------- /Source/Scripts/Events/Brewfest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Events/Brewfest.cs -------------------------------------------------------------------------------- /Source/Scripts/Events/HallowsEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Events/HallowsEnd.cs -------------------------------------------------------------------------------- /Source/Scripts/Events/LoveIsInTheAir.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Events/LoveIsInTheAir.cs -------------------------------------------------------------------------------- /Source/Scripts/Events/LunarFestival.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Events/LunarFestival.cs -------------------------------------------------------------------------------- /Source/Scripts/Events/Midsummer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Events/Midsummer.cs -------------------------------------------------------------------------------- /Source/Scripts/Events/PilgrimsBounty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Events/PilgrimsBounty.cs -------------------------------------------------------------------------------- /Source/Scripts/Events/WinterVeil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Events/WinterVeil.cs -------------------------------------------------------------------------------- /Source/Scripts/Pets/DeathKnight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Pets/DeathKnight.cs -------------------------------------------------------------------------------- /Source/Scripts/Pets/Generic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Pets/Generic.cs -------------------------------------------------------------------------------- /Source/Scripts/Pets/Hunter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Pets/Hunter.cs -------------------------------------------------------------------------------- /Source/Scripts/Pets/Mage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Pets/Mage.cs -------------------------------------------------------------------------------- /Source/Scripts/Pets/Priest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Pets/Priest.cs -------------------------------------------------------------------------------- /Source/Scripts/Pets/Shaman.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Pets/Shaman.cs -------------------------------------------------------------------------------- /Source/Scripts/Scripts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Scripts.csproj -------------------------------------------------------------------------------- /Source/Scripts/Smart/SmartAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Smart/SmartAI.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/DeathKnight/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/DeathKnight/Misc.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/Druid/DruidForms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/Druid/DruidForms.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/Druid/GoreSpells.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/Druid/GoreSpells.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/Druid/MaimSpells.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/Druid/MaimSpells.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/Druid/RakeSpells.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/Druid/RakeSpells.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/Generic/EmoteIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/Generic/EmoteIds.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/Generic/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/Generic/Misc.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/Generic/ModelIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/Generic/ModelIds.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/Generic/QuestIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/Generic/QuestIds.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/Generic/TextIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/Generic/TextIds.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/Items/FactionIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/Items/FactionIds.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/Items/ItemIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/Items/ItemIds.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/Items/ModelIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/Items/ModelIds.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/Items/ObjectIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/Items/ObjectIds.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/Items/QuestIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/Items/QuestIds.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/Items/SoundIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/Items/SoundIds.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/Items/TextIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/Items/TextIds.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/Mage/MageSpells.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/Mage/MageSpells.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/Monk/MonkSpells.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/Monk/MonkSpells.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/Monk/TigerLust.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/Monk/TigerLust.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/Priest/RaidCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/Priest/RaidCheck.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/Quest/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/Quest/Misc.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/Rogue/CheatDeath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/Rogue/CheatDeath.cs -------------------------------------------------------------------------------- /Source/Scripts/Spells/Rogue/ePoisons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/Spells/Rogue/ePoisons.cs -------------------------------------------------------------------------------- /Source/Scripts/World/Achievements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/World/Achievements.cs -------------------------------------------------------------------------------- /Source/Scripts/World/AreaTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/World/AreaTrigger.cs -------------------------------------------------------------------------------- /Source/Scripts/World/BoostedXp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/World/BoostedXp.cs -------------------------------------------------------------------------------- /Source/Scripts/World/Conversation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/World/Conversation.cs -------------------------------------------------------------------------------- /Source/Scripts/World/DuelReset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/World/DuelReset.cs -------------------------------------------------------------------------------- /Source/Scripts/World/EmeraldDragons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/World/EmeraldDragons.cs -------------------------------------------------------------------------------- /Source/Scripts/World/GameObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/World/GameObject.cs -------------------------------------------------------------------------------- /Source/Scripts/World/ItemScripts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/World/ItemScripts.cs -------------------------------------------------------------------------------- /Source/Scripts/World/NpcGuard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/World/NpcGuard.cs -------------------------------------------------------------------------------- /Source/Scripts/World/NpcInnkeeper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/World/NpcInnkeeper.cs -------------------------------------------------------------------------------- /Source/Scripts/World/NpcSpecial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/World/NpcSpecial.cs -------------------------------------------------------------------------------- /Source/Scripts/World/SceneScripts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/Scripts/World/SceneScripts.cs -------------------------------------------------------------------------------- /Source/WorldServer/Blue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/WorldServer/Blue.ico -------------------------------------------------------------------------------- /Source/WorldServer/Forged Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/WorldServer/Forged Icon.ico -------------------------------------------------------------------------------- /Source/WorldServer/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/WorldServer/Server.cs -------------------------------------------------------------------------------- /Source/WorldServer/WorldServer.conf.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/WorldServer/WorldServer.conf.dist -------------------------------------------------------------------------------- /Source/WorldServer/WorldServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/Source/WorldServer/WorldServer.csproj -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/THANKS -------------------------------------------------------------------------------- /WoWProto/AuroraError.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/AuroraError.proto -------------------------------------------------------------------------------- /WoWProto/CASInitError.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/CASInitError.proto -------------------------------------------------------------------------------- /WoWProto/ClientCancelConnect.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/ClientCancelConnect.proto -------------------------------------------------------------------------------- /WoWProto/ClientDisconnect.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/ClientDisconnect.proto -------------------------------------------------------------------------------- /WoWProto/ClientLoadingTime.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/ClientLoadingTime.proto -------------------------------------------------------------------------------- /WoWProto/ClientNameLookup.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/ClientNameLookup.proto -------------------------------------------------------------------------------- /WoWProto/ClientPerformance.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/ClientPerformance.proto -------------------------------------------------------------------------------- /WoWProto/ClientPerformanceShared.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/ClientPerformanceShared.proto -------------------------------------------------------------------------------- /WoWProto/ClientRestrictedAction.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/ClientRestrictedAction.proto -------------------------------------------------------------------------------- /WoWProto/ClientShared.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/ClientShared.proto -------------------------------------------------------------------------------- /WoWProto/ClientSharedImports.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/ClientSharedImports.proto -------------------------------------------------------------------------------- /WoWProto/ClientTradingPost.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/ClientTradingPost.proto -------------------------------------------------------------------------------- /WoWProto/ClientVoiceChannelJoin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/ClientVoiceChannelJoin.proto -------------------------------------------------------------------------------- /WoWProto/ClientVoiceChannelLeave.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/ClientVoiceChannelLeave.proto -------------------------------------------------------------------------------- /WoWProto/ClientVoiceLoginState.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/ClientVoiceLoginState.proto -------------------------------------------------------------------------------- /WoWProto/ClientVoiceProviderError.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/ClientVoiceProviderError.proto -------------------------------------------------------------------------------- /WoWProto/CriticalStreamingError.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/CriticalStreamingError.proto -------------------------------------------------------------------------------- /WoWProto/TelemetrySharedImports.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/TelemetrySharedImports.proto -------------------------------------------------------------------------------- /WoWProto/WorldLoadFailed.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/WorldLoadFailed.proto -------------------------------------------------------------------------------- /WoWProto/WorldSceneLoadFailed.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/WorldSceneLoadFailed.proto -------------------------------------------------------------------------------- /WoWProto/bgs/low/pb/client/club_ban.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/bgs/low/pb/client/club_ban.proto -------------------------------------------------------------------------------- /WoWProto/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /WoWProto/telemetry_extensions.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/telemetry_extensions.proto -------------------------------------------------------------------------------- /WoWProto/voice_channel_join.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/voice_channel_join.proto -------------------------------------------------------------------------------- /WoWProto/voice_channel_leave.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/voice_channel_leave.proto -------------------------------------------------------------------------------- /WoWProto/voice_provider_error.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/WoWProto/voice_provider_error.proto -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/appveyor.yml -------------------------------------------------------------------------------- /default.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/default.props -------------------------------------------------------------------------------- /protoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/protoc.exe -------------------------------------------------------------------------------- /sql/base/auth_database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/sql/base/auth_database.sql -------------------------------------------------------------------------------- /sql/base/characters_database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/sql/base/characters_database.sql -------------------------------------------------------------------------------- /sql/base/dev/DO_NOT_IMPORT_THESE_FILES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sql/base/dev/hotfixes_database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/sql/base/dev/hotfixes_database.sql -------------------------------------------------------------------------------- /sql/base/dev/world_database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/sql/base/dev/world_database.sql -------------------------------------------------------------------------------- /sql/create/create_mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/sql/create/create_mysql.sql -------------------------------------------------------------------------------- /sql/create/drop_mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/sql/create/drop_mysql.sql -------------------------------------------------------------------------------- /sql/create/drop_mysql_8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/sql/create/drop_mysql_8.sql -------------------------------------------------------------------------------- /sql/custom/auth/.gitignore: -------------------------------------------------------------------------------- 1 | *.sql 2 | -------------------------------------------------------------------------------- /sql/custom/characters/.gitignore: -------------------------------------------------------------------------------- 1 | *.sql 2 | -------------------------------------------------------------------------------- /sql/custom/hotfixes/.gitignore: -------------------------------------------------------------------------------- 1 | *.sql 2 | -------------------------------------------------------------------------------- /sql/custom/world/.gitignore: -------------------------------------------------------------------------------- 1 | *.sql 2 | -------------------------------------------------------------------------------- /sql/updates/hotfixes/forged/area_poi.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/sql/updates/hotfixes/forged/area_poi.sql -------------------------------------------------------------------------------- /sql/updates/world/Forged/EvokerFixes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/sql/updates/world/Forged/EvokerFixes.sql -------------------------------------------------------------------------------- /sql/updates/world/Forged/VendorInfo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/sql/updates/world/Forged/VendorInfo.sql -------------------------------------------------------------------------------- /sql/updates/world/Forged/WorgenFix.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/sql/updates/world/Forged/WorgenFix.sql -------------------------------------------------------------------------------- /sql/updates/world/Forged/Wrathion_ai.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/sql/updates/world/Forged/Wrathion_ai.sql -------------------------------------------------------------------------------- /sql/updates/world/Forged/innkeeperfix.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForgedWoW/ForgedCore/HEAD/sql/updates/world/Forged/innkeeperfix.sql --------------------------------------------------------------------------------