├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── Build_Proxy.yml ├── .gitignore ├── Framework ├── Collections │ ├── Array.cs │ └── StringArray.cs ├── Constants │ ├── Authentication │ │ └── BattlenetConst.cs │ ├── ClientVersionBuild.cs │ ├── ConnectConst.cs │ ├── Locale.cs │ └── ServiceHash.cs ├── Cryptography │ ├── HashHelper.cs │ ├── PacketCrypt.cs │ ├── RsaCrypt.cs │ ├── SARC4.cs │ ├── SessionKeyGeneration.cs │ └── ShaHmac.cs ├── Debugging │ └── Errors.cs ├── Framework.csproj ├── GameMath │ ├── AxisAlignedBox.cs │ ├── CollisionDetection.cs │ ├── EulerAngles.cs │ ├── Matrix2.cs │ ├── Matrix3.cs │ ├── Matrix4.cs │ ├── Plane.cs │ ├── Position.cs │ ├── Quaternion.cs │ ├── Ray.cs │ ├── Vector2.cs │ ├── Vector3.cs │ └── Vector4.cs ├── IO │ ├── ByteBuffer.cs │ ├── SocketBuffer.cs │ ├── StringArguments.cs │ └── Zlib │ │ ├── Adler32.cs │ │ ├── Crc32.cs │ │ ├── Deflate.cs │ │ ├── Trees.cs │ │ ├── ZLib.cs │ │ ├── ZUtil.cs │ │ └── compress.cs ├── Logging │ └── Log.cs ├── Networking │ ├── AsyncAcceptor.cs │ ├── NetworkThread.cs │ ├── NetworkUtils.cs │ ├── SSLSocket.cs │ ├── SocketBase.cs │ └── SocketManager.cs ├── Proto │ ├── AccountService.cs │ ├── AccountTypes.cs │ ├── Api │ │ ├── V1 │ │ │ └── ChannelId.cs │ │ └── V2 │ │ │ ├── AttributeTypes.cs │ │ │ ├── ReportService.cs │ │ │ └── ReportTypes.cs │ ├── AttributeTypes.cs │ ├── AuthenticationService.cs │ ├── ChallengeService.cs │ ├── ChannelTypes.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 │ ├── 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 │ ├── UserManagerService.cs │ ├── UserManagerTypes.cs │ └── VoiceTypes.cs ├── Serialization │ └── Json.cs ├── Singleton │ └── Singleton.cs ├── Util │ ├── CollectionExtensions.cs │ ├── Extensions.cs │ ├── MathFunctions.cs │ ├── Network.cs │ ├── ProtobufExtensions.cs │ ├── RandomHelper.cs │ ├── Time.cs │ └── Utility.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 ├── HermesProxy.sln ├── HermesProxy ├── Auth │ ├── AuthClient.cs │ ├── AuthCommand.cs │ ├── AuthResult.cs │ └── RealmInfo.cs ├── BNetServer.pfx ├── BnetServer │ ├── Managers │ │ ├── BnetSessionTicketStorage.cs │ │ └── LoginServiceManager.cs │ ├── Networking │ │ ├── BnetRestApiSession.cs │ │ ├── BnetServerCertificate.cs │ │ └── BnetTcpSession.cs │ └── Services │ │ ├── BnetServices.ServiceManager.cs │ │ ├── BnetServices.cs │ │ └── Services │ │ ├── Account.cs │ │ ├── Authentication.cs │ │ ├── Connection.cs │ │ └── GameUtilities.cs ├── CSV │ ├── AreaNames.csv │ ├── AuraSpells1.csv │ ├── AuraSpells2.csv │ ├── AutoRepeatSpells1.csv │ ├── AutoRepeatSpells2.csv │ ├── Battlegrounds.csv │ ├── BroadcastTexts1.csv │ ├── BroadcastTexts2.csv │ ├── BuildAuthSeeds.csv │ ├── ChatChannels.csv │ ├── CreatureDisplayInfo.csv │ ├── CreatureModelCollisionHeightsModern1.csv │ ├── CreatureModelCollisionHeightsModern2.csv │ ├── DispellSpells.csv │ ├── Gems2.csv │ ├── Gems3.csv │ ├── Hotfix │ │ ├── AreaTrigger1.csv │ │ ├── AreaTrigger2.csv │ │ ├── CreatureDisplayInfo1.csv │ │ ├── CreatureDisplayInfo2.csv │ │ ├── CreatureDisplayInfoExtra1.csv │ │ ├── CreatureDisplayInfoExtra2.csv │ │ ├── CreatureDisplayInfoOption1.csv │ │ ├── CreatureDisplayInfoOption2.csv │ │ ├── Item1.csv │ │ ├── Item2.csv │ │ ├── ItemDisplayInfo1.csv │ │ ├── ItemDisplayInfo2.csv │ │ ├── ItemEffect1.csv │ │ ├── ItemEffect2.csv │ │ ├── ItemSparse1.csv │ │ ├── ItemSparse2.csv │ │ ├── SkillLine1.csv │ │ ├── SkillLine2.csv │ │ ├── SkillLineAbility1.csv │ │ ├── SkillLineAbility2.csv │ │ ├── SkillRaceClassInfo1.csv │ │ ├── SkillRaceClassInfo2.csv │ │ ├── Spell1.csv │ │ ├── Spell2.csv │ │ ├── SpellAuraOptions1.csv │ │ ├── SpellAuraOptions2.csv │ │ ├── SpellEffect1.csv │ │ ├── SpellEffect2.csv │ │ ├── SpellLevels1.csv │ │ ├── SpellLevels2.csv │ │ ├── SpellMisc1.csv │ │ ├── SpellMisc2.csv │ │ ├── SpellName1.csv │ │ ├── SpellName2.csv │ │ ├── SpellXSpellVisual1.csv │ │ └── SpellXSpellVisual2.csv │ ├── Item1.csv │ ├── Item2.csv │ ├── ItemAppearance1.csv │ ├── ItemAppearance2.csv │ ├── ItemDisplayIdToFileDataId1.csv │ ├── ItemDisplayIdToFileDataId2.csv │ ├── ItemEffect1.csv │ ├── ItemEffect2.csv │ ├── ItemEnchantVisuals1.csv │ ├── ItemEnchantVisuals2.csv │ ├── ItemIdToDisplayId1.csv │ ├── ItemIdToDisplayId2.csv │ ├── ItemIdToDisplayId3.csv │ ├── ItemModifiedAppearance1.csv │ ├── ItemModifiedAppearance2.csv │ ├── ItemSparse1.csv │ ├── ItemSparse2.csv │ ├── ItemSpellsData1.csv │ ├── ItemSpellsData2.csv │ ├── LearnSpells.csv │ ├── MeleeSpells1.csv │ ├── MeleeSpells2.csv │ ├── MountAuras.csv │ ├── QuestV2_1.csv │ ├── QuestV2_2.csv │ ├── RaceFaction.csv │ ├── SpellEffectPoints1.csv │ ├── SpellEffectPoints2.csv │ ├── SpellVisuals1.csv │ ├── SpellVisuals2.csv │ ├── StackableAuras1.csv │ ├── StackableAuras2.csv │ ├── TaxiNodes1.csv │ ├── TaxiNodes2.csv │ ├── TaxiPath1.csv │ ├── TaxiPath2.csv │ ├── TaxiPathNode1.csv │ ├── TaxiPathNode2.csv │ ├── TotemSpells.csv │ ├── Transports1.csv │ └── Transports2.csv ├── Configuration │ ├── ConfigurationParser.cs │ └── Settings.cs ├── GitVersion.yml ├── GlobalSessionData.cs ├── Hermes.ico ├── HermesProxy.config ├── HermesProxy.csproj ├── Program.cs ├── Realm │ ├── Realm.cs │ ├── RealmConst.cs │ ├── RealmId.cs │ └── RealmManager.cs ├── Server.cs ├── VersionChecker.cs └── World │ ├── Client │ ├── LegacyWorldCrypt.cs │ ├── PacketHandlers │ │ ├── ArenaHandler.cs │ │ ├── AuctionHandler.cs │ │ ├── BattleGroundHandler.cs │ │ ├── CharacterHandler.cs │ │ ├── ChatHandler.cs │ │ ├── CombatHandler.cs │ │ ├── DuelHandler.cs │ │ ├── GameObjectHandler.cs │ │ ├── GroupHandler.cs │ │ ├── GuildHandler.cs │ │ ├── InstanceHandler.cs │ │ ├── ItemHandler.cs │ │ ├── LootHandler.cs │ │ ├── MailHandler.cs │ │ ├── MiscHandler.cs │ │ ├── MovementHandler.cs │ │ ├── NPCHandler.cs │ │ ├── PetHandler.cs │ │ ├── PetitionHandler.cs │ │ ├── QueryHandler.cs │ │ ├── QuestHandler.cs │ │ ├── ReputationHandler.cs │ │ ├── SocialHandler.cs │ │ ├── SpellHandler.cs │ │ ├── SupportTicketHandler.cs │ │ ├── SystemHandler.cs │ │ ├── TaxiHandler.cs │ │ ├── TradeHandler.cs │ │ ├── UpdateHandler.cs │ │ └── WorldStateHandler.cs │ ├── UpdateField.cs │ └── WorldClient.cs │ ├── Enums │ ├── AccountDataType.cs │ ├── ArenaTeamCommand.cs │ ├── ArenaTeamEvent.cs │ ├── AuctionDefines.cs │ ├── AuthResult.cs │ ├── BattlegroundDefines.cs │ ├── ChannelDefines.cs │ ├── ChatMessageType.cs │ ├── CreatureDefines.cs │ ├── Currency.cs │ ├── DB2Hash.cs │ ├── EnchantmentSlot.cs │ ├── GameObjectDynamicFlags.cs │ ├── GossipDefines.cs │ ├── GroupDefines.cs │ ├── GuildDefines.cs │ ├── HitInfo.cs │ ├── HotfixStatus.cs │ ├── InstanceDefines.cs │ ├── ItemDefines.cs │ ├── Language.cs │ ├── LootDefines.cs │ ├── MailDefines.cs │ ├── MovementFlags.cs │ ├── MovementFlagsExtra.cs │ ├── NPCFlags.cs │ ├── ObjectType.cs │ ├── ObjectTypeMask.cs │ ├── Opcodes.cs │ ├── PetDefines.cs │ ├── PetFlags.cs │ ├── PlayerDefines.cs │ ├── PowerType.cs │ ├── PvPFlags.cs │ ├── QuestDefines.cs │ ├── QuestFlags.cs │ ├── SocialDefines.cs │ ├── SocketColor.cs │ ├── SpeedType.cs │ ├── SpellDefines.cs │ ├── SplineFlags.cs │ ├── SplineType.cs │ ├── SupportTicketDefines.cs │ ├── TrainerSpellState.cs │ ├── TutorialAction.cs │ ├── UnitDefines.cs │ ├── UnitDynamicFlags.cs │ ├── UnitFlags.cs │ ├── UpdateFieldAttributes.cs │ ├── UpdateFields.cs │ ├── UpdateFlag.cs │ ├── UpdateType.cs │ ├── V1_12_1_5875 │ │ ├── Opcode.cs │ │ ├── ResponseCodes.cs │ │ └── UpdateFields.cs │ ├── V1_14_0_40237 │ │ └── UpdateFields.cs │ ├── V1_14_1_40688 │ │ ├── Opcode.cs │ │ ├── ResponseCodes.cs │ │ └── UpdateFields.cs │ ├── V2_4_3_8606 │ │ ├── Opcode.cs │ │ ├── ResponseCodes.cs │ │ └── UpdateFields.cs │ ├── V2_5_2_39570 │ │ ├── Opcode.cs │ │ ├── ResponseCodes.cs │ │ └── UpdateFields.cs │ ├── V2_5_3_41750 │ │ ├── Opcode.cs │ │ └── UpdateFields.cs │ ├── V3_3_5_12340 │ │ ├── Opcode.cs │ │ └── UpdateFields.cs │ ├── Weather.cs │ └── WorldStates.cs │ ├── GameData.cs │ ├── HighGuid.cs │ ├── Objects │ ├── ActivePlayerData.cs │ ├── CharacterCustomizations.cs │ ├── ClassPowerTypes.cs │ ├── ContainerData.cs │ ├── CorpseData.cs │ ├── CreatureTemplate.cs │ ├── DynamicObjectData.cs │ ├── GameObjectData.cs │ ├── HotfixRecord.cs │ ├── ItemData.cs │ ├── ItemTemplate.cs │ ├── MovementInfo.cs │ ├── ObjectData.cs │ ├── ObjectTypeConverter.cs │ ├── PlayerData.cs │ ├── QuestTemplate.cs │ ├── ServerSideMovement.cs │ ├── UnitData.cs │ ├── UpdateFieldExtensions.cs │ ├── UpdateFieldsArray.cs │ ├── UpdateMask.cs │ └── Version │ │ ├── V1_14_0_40237 │ │ ├── CreateObjectBits.cs │ │ └── ObjectUpdateBuilder.cs │ │ ├── V1_14_1_40688 │ │ ├── CreateObjectBits.cs │ │ └── ObjectUpdateBuilder.cs │ │ ├── V2_5_2_39570 │ │ ├── CreateObjectBits.cs │ │ └── ObjectUpdateBuilder.cs │ │ └── V2_5_3_41750 │ │ ├── CreateObjectBits.cs │ │ └── ObjectUpdateBuilder.cs │ ├── Packet.cs │ ├── PacketHandlerAttribute.cs │ ├── Server │ ├── AccountDataManager.cs │ ├── CurrentPlayerStorage.cs │ ├── PacketHandlers │ │ ├── ArenaHandler.cs │ │ ├── AuctionHandler.cs │ │ ├── BattlegroundHandler.cs │ │ ├── CharacterHandler.cs │ │ ├── ChatHandler.cs │ │ ├── ClientConfigHandler.cs │ │ ├── CombatHandler.cs │ │ ├── DuelHandler.cs │ │ ├── GameObjectHandler.cs │ │ ├── GroupHandler.cs │ │ ├── GuildHandler.cs │ │ ├── HotfixHandler.cs │ │ ├── InstanceHandler.cs │ │ ├── ItemHandler.cs │ │ ├── LootHandler.cs │ │ ├── MailHandler.cs │ │ ├── MiscHandler.cs │ │ ├── MovementHandler.cs │ │ ├── NPCHandler.cs │ │ ├── PetHandler.cs │ │ ├── PetitionHandler.cs │ │ ├── QueryHandler.cs │ │ ├── QuestHandler.cs │ │ ├── ReputationHandler.cs │ │ ├── SessionHandler.cs │ │ ├── SocialHandler.cs │ │ ├── SpellHandler.cs │ │ ├── SupportTicketHandler.cs │ │ ├── TaxiHandler.cs │ │ └── TradeHandler.cs │ ├── Packets │ │ ├── ArenaPackets.cs │ │ ├── AuctionPackets.cs │ │ ├── AuthenticationPackets.cs │ │ ├── BattleGroundPackets.cs │ │ ├── CharacterPackets.cs │ │ ├── ChatPackets.cs │ │ ├── ClientConfigPackets.cs │ │ ├── CombatPackets.cs │ │ ├── DuelPackets.cs │ │ ├── GameObjectPackets.cs │ │ ├── GroupPackets.cs │ │ ├── GuildPackets.cs │ │ ├── HotfixPackets.cs │ │ ├── InstancePackets.cs │ │ ├── ItemPackets.cs │ │ ├── LootPackets.cs │ │ ├── MailPackets.cs │ │ ├── MiscPackets.cs │ │ ├── MovementPackets.cs │ │ ├── NPCPackets.cs │ │ ├── PetPackets.cs │ │ ├── PetitionPackets.cs │ │ ├── QueryPackets.cs │ │ ├── QuestPackets.cs │ │ ├── ReputationPackets.cs │ │ ├── SessionPackets.cs │ │ ├── SocialPackets.cs │ │ ├── SpellPackets.cs │ │ ├── SupportTicketPackets.cs │ │ ├── SystemPackets.cs │ │ ├── TaxiPackets.cs │ │ ├── TradePackets.cs │ │ ├── UpdatePackets.cs │ │ └── WorldStatePackets.cs │ ├── RealmSocket.cs │ ├── WorldSocket.cs │ └── WorldSocketManager.cs │ ├── SniffFile.cs │ └── WowGuid.cs ├── LICENSE ├── README.md └── scripts ├── Build_Linux.bat └── Build_Windows.bat /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/Build_Proxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/.github/workflows/Build_Proxy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/.gitignore -------------------------------------------------------------------------------- /Framework/Collections/Array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Collections/Array.cs -------------------------------------------------------------------------------- /Framework/Collections/StringArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Collections/StringArray.cs -------------------------------------------------------------------------------- /Framework/Constants/Authentication/BattlenetConst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Constants/Authentication/BattlenetConst.cs -------------------------------------------------------------------------------- /Framework/Constants/ClientVersionBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Constants/ClientVersionBuild.cs -------------------------------------------------------------------------------- /Framework/Constants/ConnectConst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Constants/ConnectConst.cs -------------------------------------------------------------------------------- /Framework/Constants/Locale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Constants/Locale.cs -------------------------------------------------------------------------------- /Framework/Constants/ServiceHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Constants/ServiceHash.cs -------------------------------------------------------------------------------- /Framework/Cryptography/HashHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Cryptography/HashHelper.cs -------------------------------------------------------------------------------- /Framework/Cryptography/PacketCrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Cryptography/PacketCrypt.cs -------------------------------------------------------------------------------- /Framework/Cryptography/RsaCrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Cryptography/RsaCrypt.cs -------------------------------------------------------------------------------- /Framework/Cryptography/SARC4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Cryptography/SARC4.cs -------------------------------------------------------------------------------- /Framework/Cryptography/SessionKeyGeneration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Cryptography/SessionKeyGeneration.cs -------------------------------------------------------------------------------- /Framework/Cryptography/ShaHmac.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Cryptography/ShaHmac.cs -------------------------------------------------------------------------------- /Framework/Debugging/Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Debugging/Errors.cs -------------------------------------------------------------------------------- /Framework/Framework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Framework.csproj -------------------------------------------------------------------------------- /Framework/GameMath/AxisAlignedBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/GameMath/AxisAlignedBox.cs -------------------------------------------------------------------------------- /Framework/GameMath/CollisionDetection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/GameMath/CollisionDetection.cs -------------------------------------------------------------------------------- /Framework/GameMath/EulerAngles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/GameMath/EulerAngles.cs -------------------------------------------------------------------------------- /Framework/GameMath/Matrix2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/GameMath/Matrix2.cs -------------------------------------------------------------------------------- /Framework/GameMath/Matrix3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/GameMath/Matrix3.cs -------------------------------------------------------------------------------- /Framework/GameMath/Matrix4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/GameMath/Matrix4.cs -------------------------------------------------------------------------------- /Framework/GameMath/Plane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/GameMath/Plane.cs -------------------------------------------------------------------------------- /Framework/GameMath/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/GameMath/Position.cs -------------------------------------------------------------------------------- /Framework/GameMath/Quaternion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/GameMath/Quaternion.cs -------------------------------------------------------------------------------- /Framework/GameMath/Ray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/GameMath/Ray.cs -------------------------------------------------------------------------------- /Framework/GameMath/Vector2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/GameMath/Vector2.cs -------------------------------------------------------------------------------- /Framework/GameMath/Vector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/GameMath/Vector3.cs -------------------------------------------------------------------------------- /Framework/GameMath/Vector4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/GameMath/Vector4.cs -------------------------------------------------------------------------------- /Framework/IO/ByteBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/IO/ByteBuffer.cs -------------------------------------------------------------------------------- /Framework/IO/SocketBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/IO/SocketBuffer.cs -------------------------------------------------------------------------------- /Framework/IO/StringArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/IO/StringArguments.cs -------------------------------------------------------------------------------- /Framework/IO/Zlib/Adler32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/IO/Zlib/Adler32.cs -------------------------------------------------------------------------------- /Framework/IO/Zlib/Crc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/IO/Zlib/Crc32.cs -------------------------------------------------------------------------------- /Framework/IO/Zlib/Deflate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/IO/Zlib/Deflate.cs -------------------------------------------------------------------------------- /Framework/IO/Zlib/Trees.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/IO/Zlib/Trees.cs -------------------------------------------------------------------------------- /Framework/IO/Zlib/ZLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/IO/Zlib/ZLib.cs -------------------------------------------------------------------------------- /Framework/IO/Zlib/ZUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/IO/Zlib/ZUtil.cs -------------------------------------------------------------------------------- /Framework/IO/Zlib/compress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/IO/Zlib/compress.cs -------------------------------------------------------------------------------- /Framework/Logging/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Logging/Log.cs -------------------------------------------------------------------------------- /Framework/Networking/AsyncAcceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Networking/AsyncAcceptor.cs -------------------------------------------------------------------------------- /Framework/Networking/NetworkThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Networking/NetworkThread.cs -------------------------------------------------------------------------------- /Framework/Networking/NetworkUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Networking/NetworkUtils.cs -------------------------------------------------------------------------------- /Framework/Networking/SSLSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Networking/SSLSocket.cs -------------------------------------------------------------------------------- /Framework/Networking/SocketBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Networking/SocketBase.cs -------------------------------------------------------------------------------- /Framework/Networking/SocketManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Networking/SocketManager.cs -------------------------------------------------------------------------------- /Framework/Proto/AccountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/AccountService.cs -------------------------------------------------------------------------------- /Framework/Proto/AccountTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/AccountTypes.cs -------------------------------------------------------------------------------- /Framework/Proto/Api/V1/ChannelId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/Api/V1/ChannelId.cs -------------------------------------------------------------------------------- /Framework/Proto/Api/V2/AttributeTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/Api/V2/AttributeTypes.cs -------------------------------------------------------------------------------- /Framework/Proto/Api/V2/ReportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/Api/V2/ReportService.cs -------------------------------------------------------------------------------- /Framework/Proto/Api/V2/ReportTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/Api/V2/ReportTypes.cs -------------------------------------------------------------------------------- /Framework/Proto/AttributeTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/AttributeTypes.cs -------------------------------------------------------------------------------- /Framework/Proto/AuthenticationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/AuthenticationService.cs -------------------------------------------------------------------------------- /Framework/Proto/ChallengeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/ChallengeService.cs -------------------------------------------------------------------------------- /Framework/Proto/ChannelTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/ChannelTypes.cs -------------------------------------------------------------------------------- /Framework/Proto/ClubBan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/ClubBan.cs -------------------------------------------------------------------------------- /Framework/Proto/ClubCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/ClubCore.cs -------------------------------------------------------------------------------- /Framework/Proto/ClubEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/ClubEnum.cs -------------------------------------------------------------------------------- /Framework/Proto/ClubInvitation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/ClubInvitation.cs -------------------------------------------------------------------------------- /Framework/Proto/ClubMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/ClubMember.cs -------------------------------------------------------------------------------- /Framework/Proto/ClubMemberId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/ClubMemberId.cs -------------------------------------------------------------------------------- /Framework/Proto/ClubMembershipListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/ClubMembershipListener.cs -------------------------------------------------------------------------------- /Framework/Proto/ClubMembershipService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/ClubMembershipService.cs -------------------------------------------------------------------------------- /Framework/Proto/ClubMembershipTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/ClubMembershipTypes.cs -------------------------------------------------------------------------------- /Framework/Proto/ClubNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/ClubNotification.cs -------------------------------------------------------------------------------- /Framework/Proto/ClubRangeSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/ClubRangeSet.cs -------------------------------------------------------------------------------- /Framework/Proto/ClubRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/ClubRequest.cs -------------------------------------------------------------------------------- /Framework/Proto/ClubRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/ClubRole.cs -------------------------------------------------------------------------------- /Framework/Proto/ClubStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/ClubStream.cs -------------------------------------------------------------------------------- /Framework/Proto/ClubTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/ClubTypes.cs -------------------------------------------------------------------------------- /Framework/Proto/ConnectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/ConnectionService.cs -------------------------------------------------------------------------------- /Framework/Proto/ContentHandleTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/ContentHandleTypes.cs -------------------------------------------------------------------------------- /Framework/Proto/EmbedTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/EmbedTypes.cs -------------------------------------------------------------------------------- /Framework/Proto/EntityTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/EntityTypes.cs -------------------------------------------------------------------------------- /Framework/Proto/EtsTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/EtsTypes.cs -------------------------------------------------------------------------------- /Framework/Proto/EventViewTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/EventViewTypes.cs -------------------------------------------------------------------------------- /Framework/Proto/FriendsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/FriendsService.cs -------------------------------------------------------------------------------- /Framework/Proto/FriendsTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/FriendsTypes.cs -------------------------------------------------------------------------------- /Framework/Proto/GameUtilitiesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/GameUtilitiesService.cs -------------------------------------------------------------------------------- /Framework/Proto/GameUtilitiesTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/GameUtilitiesTypes.cs -------------------------------------------------------------------------------- /Framework/Proto/GlobalExtensions/FieldOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/GlobalExtensions/FieldOptions.cs -------------------------------------------------------------------------------- /Framework/Proto/GlobalExtensions/MessageOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/GlobalExtensions/MessageOptions.cs -------------------------------------------------------------------------------- /Framework/Proto/GlobalExtensions/MethodOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/GlobalExtensions/MethodOptions.cs -------------------------------------------------------------------------------- /Framework/Proto/GlobalExtensions/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/GlobalExtensions/Range.cs -------------------------------------------------------------------------------- /Framework/Proto/GlobalExtensions/Routing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/GlobalExtensions/Routing.cs -------------------------------------------------------------------------------- /Framework/Proto/GlobalExtensions/ServiceOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/GlobalExtensions/ServiceOptions.cs -------------------------------------------------------------------------------- /Framework/Proto/Google/Protobuf/Descriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/Google/Protobuf/Descriptor.cs -------------------------------------------------------------------------------- /Framework/Proto/InvitationTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/InvitationTypes.cs -------------------------------------------------------------------------------- /Framework/Proto/MessageTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/MessageTypes.cs -------------------------------------------------------------------------------- /Framework/Proto/NotificationTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/NotificationTypes.cs -------------------------------------------------------------------------------- /Framework/Proto/PresenceListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/PresenceListener.cs -------------------------------------------------------------------------------- /Framework/Proto/PresenceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/PresenceService.cs -------------------------------------------------------------------------------- /Framework/Proto/PresenceTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/PresenceTypes.cs -------------------------------------------------------------------------------- /Framework/Proto/ProfanityFilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/ProfanityFilterConfig.cs -------------------------------------------------------------------------------- /Framework/Proto/ReportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/ReportService.cs -------------------------------------------------------------------------------- /Framework/Proto/ReportTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/ReportTypes.cs -------------------------------------------------------------------------------- /Framework/Proto/ResourceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/ResourceService.cs -------------------------------------------------------------------------------- /Framework/Proto/RoleTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/RoleTypes.cs -------------------------------------------------------------------------------- /Framework/Proto/RpcConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/RpcConfig.cs -------------------------------------------------------------------------------- /Framework/Proto/RpcTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/RpcTypes.cs -------------------------------------------------------------------------------- /Framework/Proto/UserManagerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/UserManagerService.cs -------------------------------------------------------------------------------- /Framework/Proto/UserManagerTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/UserManagerTypes.cs -------------------------------------------------------------------------------- /Framework/Proto/VoiceTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Proto/VoiceTypes.cs -------------------------------------------------------------------------------- /Framework/Serialization/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Serialization/Json.cs -------------------------------------------------------------------------------- /Framework/Singleton/Singleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Singleton/Singleton.cs -------------------------------------------------------------------------------- /Framework/Util/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Util/CollectionExtensions.cs -------------------------------------------------------------------------------- /Framework/Util/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Util/Extensions.cs -------------------------------------------------------------------------------- /Framework/Util/MathFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Util/MathFunctions.cs -------------------------------------------------------------------------------- /Framework/Util/Network.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Util/Network.cs -------------------------------------------------------------------------------- /Framework/Util/ProtobufExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Util/ProtobufExtensions.cs -------------------------------------------------------------------------------- /Framework/Util/RandomHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Util/RandomHelper.cs -------------------------------------------------------------------------------- /Framework/Util/Time.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Util/Time.cs -------------------------------------------------------------------------------- /Framework/Util/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Util/Utility.cs -------------------------------------------------------------------------------- /Framework/Web/API/ApiRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Web/API/ApiRequest.cs -------------------------------------------------------------------------------- /Framework/Web/Http.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Web/Http.cs -------------------------------------------------------------------------------- /Framework/Web/Rest/Authentication/LogonData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Web/Rest/Authentication/LogonData.cs -------------------------------------------------------------------------------- /Framework/Web/Rest/Authentication/LogonResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Web/Rest/Authentication/LogonResult.cs -------------------------------------------------------------------------------- /Framework/Web/Rest/Forms/FormInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Web/Rest/Forms/FormInput.cs -------------------------------------------------------------------------------- /Framework/Web/Rest/Forms/FormInputValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Web/Rest/Forms/FormInputValue.cs -------------------------------------------------------------------------------- /Framework/Web/Rest/Forms/FormInputs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Web/Rest/Forms/FormInputs.cs -------------------------------------------------------------------------------- /Framework/Web/Rest/Misc/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Web/Rest/Misc/Address.cs -------------------------------------------------------------------------------- /Framework/Web/Rest/Misc/AddressFamily.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Web/Rest/Misc/AddressFamily.cs -------------------------------------------------------------------------------- /Framework/Web/Rest/Misc/ClientVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Web/Rest/Misc/ClientVersion.cs -------------------------------------------------------------------------------- /Framework/Web/Rest/Misc/RealmCharacterCountEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Web/Rest/Misc/RealmCharacterCountEntry.cs -------------------------------------------------------------------------------- /Framework/Web/Rest/Realmlist/RealmCharacterCountList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Web/Rest/Realmlist/RealmCharacterCountList.cs -------------------------------------------------------------------------------- /Framework/Web/Rest/Realmlist/RealmEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Web/Rest/Realmlist/RealmEntry.cs -------------------------------------------------------------------------------- /Framework/Web/Rest/Realmlist/RealmListServerIPAddresses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Web/Rest/Realmlist/RealmListServerIPAddresses.cs -------------------------------------------------------------------------------- /Framework/Web/Rest/Realmlist/RealmListTicketClientInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Web/Rest/Realmlist/RealmListTicketClientInformation.cs -------------------------------------------------------------------------------- /Framework/Web/Rest/Realmlist/RealmListTicketIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Web/Rest/Realmlist/RealmListTicketIdentity.cs -------------------------------------------------------------------------------- /Framework/Web/Rest/Realmlist/RealmListTicketInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Web/Rest/Realmlist/RealmListTicketInformation.cs -------------------------------------------------------------------------------- /Framework/Web/Rest/Realmlist/RealmListUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Web/Rest/Realmlist/RealmListUpdate.cs -------------------------------------------------------------------------------- /Framework/Web/Rest/Realmlist/RealmListUpdates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/Framework/Web/Rest/Realmlist/RealmListUpdates.cs -------------------------------------------------------------------------------- /HermesProxy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy.sln -------------------------------------------------------------------------------- /HermesProxy/Auth/AuthClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/Auth/AuthClient.cs -------------------------------------------------------------------------------- /HermesProxy/Auth/AuthCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/Auth/AuthCommand.cs -------------------------------------------------------------------------------- /HermesProxy/Auth/AuthResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/Auth/AuthResult.cs -------------------------------------------------------------------------------- /HermesProxy/Auth/RealmInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/Auth/RealmInfo.cs -------------------------------------------------------------------------------- /HermesProxy/BNetServer.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/BNetServer.pfx -------------------------------------------------------------------------------- /HermesProxy/BnetServer/Managers/BnetSessionTicketStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/BnetServer/Managers/BnetSessionTicketStorage.cs -------------------------------------------------------------------------------- /HermesProxy/BnetServer/Managers/LoginServiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/BnetServer/Managers/LoginServiceManager.cs -------------------------------------------------------------------------------- /HermesProxy/BnetServer/Networking/BnetRestApiSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/BnetServer/Networking/BnetRestApiSession.cs -------------------------------------------------------------------------------- /HermesProxy/BnetServer/Networking/BnetServerCertificate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/BnetServer/Networking/BnetServerCertificate.cs -------------------------------------------------------------------------------- /HermesProxy/BnetServer/Networking/BnetTcpSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/BnetServer/Networking/BnetTcpSession.cs -------------------------------------------------------------------------------- /HermesProxy/BnetServer/Services/BnetServices.ServiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/BnetServer/Services/BnetServices.ServiceManager.cs -------------------------------------------------------------------------------- /HermesProxy/BnetServer/Services/BnetServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/BnetServer/Services/BnetServices.cs -------------------------------------------------------------------------------- /HermesProxy/BnetServer/Services/Services/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/BnetServer/Services/Services/Account.cs -------------------------------------------------------------------------------- /HermesProxy/BnetServer/Services/Services/Authentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/BnetServer/Services/Services/Authentication.cs -------------------------------------------------------------------------------- /HermesProxy/BnetServer/Services/Services/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/BnetServer/Services/Services/Connection.cs -------------------------------------------------------------------------------- /HermesProxy/BnetServer/Services/Services/GameUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/BnetServer/Services/Services/GameUtilities.cs -------------------------------------------------------------------------------- /HermesProxy/CSV/AreaNames.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/AreaNames.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/AuraSpells1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/AuraSpells1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/AuraSpells2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/AuraSpells2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/AutoRepeatSpells1.csv: -------------------------------------------------------------------------------- 1 | SpellId 2 | 75 3 | 1485 4 | 5019 5 | 19881 -------------------------------------------------------------------------------- /HermesProxy/CSV/AutoRepeatSpells2.csv: -------------------------------------------------------------------------------- 1 | SpellId 2 | 75 3 | 1485 4 | 5019 5 | 19881 6 | 31317 7 | 38196 -------------------------------------------------------------------------------- /HermesProxy/CSV/Battlegrounds.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Battlegrounds.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/BroadcastTexts1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/BroadcastTexts1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/BroadcastTexts2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/BroadcastTexts2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/BuildAuthSeeds.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/BuildAuthSeeds.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/ChatChannels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/ChatChannels.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/CreatureDisplayInfo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/CreatureDisplayInfo.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/CreatureModelCollisionHeightsModern1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/CreatureModelCollisionHeightsModern1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/CreatureModelCollisionHeightsModern2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/CreatureModelCollisionHeightsModern2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/DispellSpells.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/DispellSpells.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Gems2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Gems2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Gems3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Gems3.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/AreaTrigger1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/AreaTrigger1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/AreaTrigger2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/AreaTrigger2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/CreatureDisplayInfo1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/CreatureDisplayInfo1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/CreatureDisplayInfo2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/CreatureDisplayInfo2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/CreatureDisplayInfoExtra1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/CreatureDisplayInfoExtra1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/CreatureDisplayInfoExtra2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/CreatureDisplayInfoExtra2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/CreatureDisplayInfoOption1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/CreatureDisplayInfoOption1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/CreatureDisplayInfoOption2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/CreatureDisplayInfoOption2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/Item1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/Item1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/Item2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/Item2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/ItemDisplayInfo1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/ItemDisplayInfo1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/ItemDisplayInfo2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/ItemDisplayInfo2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/ItemEffect1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/ItemEffect1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/ItemEffect2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/ItemEffect2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/ItemSparse1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/ItemSparse1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/ItemSparse2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/ItemSparse2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/SkillLine1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/SkillLine1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/SkillLine2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/SkillLine2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/SkillLineAbility1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/SkillLineAbility1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/SkillLineAbility2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/SkillLineAbility2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/SkillRaceClassInfo1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/SkillRaceClassInfo1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/SkillRaceClassInfo2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/SkillRaceClassInfo2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/Spell1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/Spell1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/Spell2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/Spell2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/SpellAuraOptions1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/SpellAuraOptions1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/SpellAuraOptions2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/SpellAuraOptions2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/SpellEffect1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/SpellEffect1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/SpellEffect2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/SpellEffect2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/SpellLevels1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/SpellLevels1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/SpellLevels2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/SpellLevels2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/SpellMisc1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/SpellMisc1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/SpellMisc2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/SpellMisc2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/SpellName1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/SpellName1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/SpellName2.csv: -------------------------------------------------------------------------------- 1 | SpellId,Name -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/SpellXSpellVisual1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/SpellXSpellVisual1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Hotfix/SpellXSpellVisual2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Hotfix/SpellXSpellVisual2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Item1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Item1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Item2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Item2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/ItemAppearance1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/ItemAppearance1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/ItemAppearance2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/ItemAppearance2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/ItemDisplayIdToFileDataId1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/ItemDisplayIdToFileDataId1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/ItemDisplayIdToFileDataId2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/ItemDisplayIdToFileDataId2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/ItemEffect1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/ItemEffect1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/ItemEffect2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/ItemEffect2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/ItemEnchantVisuals1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/ItemEnchantVisuals1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/ItemEnchantVisuals2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/ItemEnchantVisuals2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/ItemIdToDisplayId1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/ItemIdToDisplayId1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/ItemIdToDisplayId2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/ItemIdToDisplayId2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/ItemIdToDisplayId3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/ItemIdToDisplayId3.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/ItemModifiedAppearance1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/ItemModifiedAppearance1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/ItemModifiedAppearance2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/ItemModifiedAppearance2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/ItemSparse1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/ItemSparse1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/ItemSparse2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/ItemSparse2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/ItemSpellsData1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/ItemSpellsData1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/ItemSpellsData2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/ItemSpellsData2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/LearnSpells.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/LearnSpells.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/MeleeSpells1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/MeleeSpells1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/MeleeSpells2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/MeleeSpells2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/MountAuras.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/MountAuras.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/QuestV2_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/QuestV2_1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/QuestV2_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/QuestV2_2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/RaceFaction.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/RaceFaction.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/SpellEffectPoints1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/SpellEffectPoints1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/SpellEffectPoints2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/SpellEffectPoints2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/SpellVisuals1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/SpellVisuals1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/SpellVisuals2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/SpellVisuals2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/StackableAuras1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/StackableAuras1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/StackableAuras2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/StackableAuras2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/TaxiNodes1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/TaxiNodes1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/TaxiNodes2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/TaxiNodes2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/TaxiPath1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/TaxiPath1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/TaxiPath2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/TaxiPath2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/TaxiPathNode1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/TaxiPathNode1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/TaxiPathNode2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/TaxiPathNode2.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/TotemSpells.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/TotemSpells.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Transports1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Transports1.csv -------------------------------------------------------------------------------- /HermesProxy/CSV/Transports2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/CSV/Transports2.csv -------------------------------------------------------------------------------- /HermesProxy/Configuration/ConfigurationParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/Configuration/ConfigurationParser.cs -------------------------------------------------------------------------------- /HermesProxy/Configuration/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/Configuration/Settings.cs -------------------------------------------------------------------------------- /HermesProxy/GitVersion.yml: -------------------------------------------------------------------------------- 1 | commit-date-format: O 2 | -------------------------------------------------------------------------------- /HermesProxy/GlobalSessionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/GlobalSessionData.cs -------------------------------------------------------------------------------- /HermesProxy/Hermes.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/Hermes.ico -------------------------------------------------------------------------------- /HermesProxy/HermesProxy.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/HermesProxy.config -------------------------------------------------------------------------------- /HermesProxy/HermesProxy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/HermesProxy.csproj -------------------------------------------------------------------------------- /HermesProxy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/Program.cs -------------------------------------------------------------------------------- /HermesProxy/Realm/Realm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/Realm/Realm.cs -------------------------------------------------------------------------------- /HermesProxy/Realm/RealmConst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/Realm/RealmConst.cs -------------------------------------------------------------------------------- /HermesProxy/Realm/RealmId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/Realm/RealmId.cs -------------------------------------------------------------------------------- /HermesProxy/Realm/RealmManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/Realm/RealmManager.cs -------------------------------------------------------------------------------- /HermesProxy/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/Server.cs -------------------------------------------------------------------------------- /HermesProxy/VersionChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/VersionChecker.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/LegacyWorldCrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/LegacyWorldCrypt.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/ArenaHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/ArenaHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/AuctionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/AuctionHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/BattleGroundHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/BattleGroundHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/CharacterHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/CharacterHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/ChatHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/ChatHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/CombatHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/CombatHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/DuelHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/DuelHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/GameObjectHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/GameObjectHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/GroupHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/GroupHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/GuildHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/GuildHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/InstanceHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/InstanceHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/ItemHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/ItemHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/LootHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/LootHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/MailHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/MailHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/MiscHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/MiscHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/MovementHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/MovementHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/NPCHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/NPCHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/PetHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/PetHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/PetitionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/PetitionHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/QueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/QueryHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/QuestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/QuestHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/ReputationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/ReputationHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/SocialHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/SocialHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/SpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/SpellHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/SupportTicketHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/SupportTicketHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/SystemHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/SystemHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/TaxiHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/TaxiHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/TradeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/TradeHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/UpdateHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/UpdateHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/PacketHandlers/WorldStateHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/PacketHandlers/WorldStateHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/UpdateField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/UpdateField.cs -------------------------------------------------------------------------------- /HermesProxy/World/Client/WorldClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Client/WorldClient.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/AccountDataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/AccountDataType.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/ArenaTeamCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/ArenaTeamCommand.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/ArenaTeamEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/ArenaTeamEvent.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/AuctionDefines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/AuctionDefines.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/AuthResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/AuthResult.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/BattlegroundDefines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/BattlegroundDefines.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/ChannelDefines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/ChannelDefines.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/ChatMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/ChatMessageType.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/CreatureDefines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/CreatureDefines.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/Currency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/Currency.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/DB2Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/DB2Hash.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/EnchantmentSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/EnchantmentSlot.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/GameObjectDynamicFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/GameObjectDynamicFlags.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/GossipDefines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/GossipDefines.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/GroupDefines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/GroupDefines.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/GuildDefines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/GuildDefines.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/HitInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/HitInfo.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/HotfixStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/HotfixStatus.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/InstanceDefines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/InstanceDefines.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/ItemDefines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/ItemDefines.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/Language.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/LootDefines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/LootDefines.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/MailDefines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/MailDefines.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/MovementFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/MovementFlags.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/MovementFlagsExtra.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/MovementFlagsExtra.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/NPCFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/NPCFlags.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/ObjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/ObjectType.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/ObjectTypeMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/ObjectTypeMask.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/Opcodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/Opcodes.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/PetDefines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/PetDefines.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/PetFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/PetFlags.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/PlayerDefines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/PlayerDefines.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/PowerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/PowerType.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/PvPFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/PvPFlags.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/QuestDefines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/QuestDefines.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/QuestFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/QuestFlags.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/SocialDefines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/SocialDefines.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/SocketColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/SocketColor.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/SpeedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/SpeedType.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/SpellDefines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/SpellDefines.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/SplineFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/SplineFlags.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/SplineType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/SplineType.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/SupportTicketDefines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/SupportTicketDefines.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/TrainerSpellState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/TrainerSpellState.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/TutorialAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/TutorialAction.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/UnitDefines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/UnitDefines.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/UnitDynamicFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/UnitDynamicFlags.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/UnitFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/UnitFlags.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/UpdateFieldAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/UpdateFieldAttributes.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/UpdateFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/UpdateFields.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/UpdateFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/UpdateFlag.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/UpdateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/UpdateType.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/V1_12_1_5875/Opcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/V1_12_1_5875/Opcode.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/V1_12_1_5875/ResponseCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/V1_12_1_5875/ResponseCodes.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/V1_12_1_5875/UpdateFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/V1_12_1_5875/UpdateFields.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/V1_14_0_40237/UpdateFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/V1_14_0_40237/UpdateFields.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/V1_14_1_40688/Opcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/V1_14_1_40688/Opcode.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/V1_14_1_40688/ResponseCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/V1_14_1_40688/ResponseCodes.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/V1_14_1_40688/UpdateFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/V1_14_1_40688/UpdateFields.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/V2_4_3_8606/Opcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/V2_4_3_8606/Opcode.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/V2_4_3_8606/ResponseCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/V2_4_3_8606/ResponseCodes.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/V2_4_3_8606/UpdateFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/V2_4_3_8606/UpdateFields.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/V2_5_2_39570/Opcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/V2_5_2_39570/Opcode.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/V2_5_2_39570/ResponseCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/V2_5_2_39570/ResponseCodes.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/V2_5_2_39570/UpdateFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/V2_5_2_39570/UpdateFields.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/V2_5_3_41750/Opcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/V2_5_3_41750/Opcode.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/V2_5_3_41750/UpdateFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/V2_5_3_41750/UpdateFields.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/V3_3_5_12340/Opcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/V3_3_5_12340/Opcode.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/V3_3_5_12340/UpdateFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/V3_3_5_12340/UpdateFields.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/Weather.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/Weather.cs -------------------------------------------------------------------------------- /HermesProxy/World/Enums/WorldStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Enums/WorldStates.cs -------------------------------------------------------------------------------- /HermesProxy/World/GameData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/GameData.cs -------------------------------------------------------------------------------- /HermesProxy/World/HighGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/HighGuid.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/ActivePlayerData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/ActivePlayerData.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/CharacterCustomizations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/CharacterCustomizations.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/ClassPowerTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/ClassPowerTypes.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/ContainerData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/ContainerData.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/CorpseData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/CorpseData.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/CreatureTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/CreatureTemplate.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/DynamicObjectData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/DynamicObjectData.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/GameObjectData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/GameObjectData.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/HotfixRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/HotfixRecord.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/ItemData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/ItemData.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/ItemTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/ItemTemplate.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/MovementInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/MovementInfo.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/ObjectData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/ObjectData.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/ObjectTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/ObjectTypeConverter.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/PlayerData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/PlayerData.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/QuestTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/QuestTemplate.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/ServerSideMovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/ServerSideMovement.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/UnitData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/UnitData.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/UpdateFieldExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/UpdateFieldExtensions.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/UpdateFieldsArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/UpdateFieldsArray.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/UpdateMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/UpdateMask.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/Version/V1_14_0_40237/CreateObjectBits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/Version/V1_14_0_40237/CreateObjectBits.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/Version/V1_14_0_40237/ObjectUpdateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/Version/V1_14_0_40237/ObjectUpdateBuilder.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/Version/V1_14_1_40688/CreateObjectBits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/Version/V1_14_1_40688/CreateObjectBits.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/Version/V1_14_1_40688/ObjectUpdateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/Version/V1_14_1_40688/ObjectUpdateBuilder.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/Version/V2_5_2_39570/CreateObjectBits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/Version/V2_5_2_39570/CreateObjectBits.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/Version/V2_5_2_39570/ObjectUpdateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/Version/V2_5_2_39570/ObjectUpdateBuilder.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/Version/V2_5_3_41750/CreateObjectBits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/Version/V2_5_3_41750/CreateObjectBits.cs -------------------------------------------------------------------------------- /HermesProxy/World/Objects/Version/V2_5_3_41750/ObjectUpdateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Objects/Version/V2_5_3_41750/ObjectUpdateBuilder.cs -------------------------------------------------------------------------------- /HermesProxy/World/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Packet.cs -------------------------------------------------------------------------------- /HermesProxy/World/PacketHandlerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/PacketHandlerAttribute.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/AccountDataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/AccountDataManager.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/CurrentPlayerStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/CurrentPlayerStorage.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/ArenaHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/ArenaHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/AuctionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/AuctionHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/BattlegroundHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/BattlegroundHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/CharacterHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/CharacterHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/ChatHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/ChatHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/ClientConfigHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/ClientConfigHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/CombatHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/CombatHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/DuelHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/DuelHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/GameObjectHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/GameObjectHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/GroupHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/GroupHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/GuildHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/GuildHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/HotfixHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/HotfixHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/InstanceHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/InstanceHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/ItemHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/ItemHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/LootHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/LootHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/MailHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/MailHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/MiscHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/MiscHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/MovementHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/MovementHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/NPCHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/NPCHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/PetHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/PetHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/PetitionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/PetitionHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/QueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/QueryHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/QuestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/QuestHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/ReputationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/ReputationHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/SessionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/SessionHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/SocialHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/SocialHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/SpellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/SpellHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/SupportTicketHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/SupportTicketHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/TaxiHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/TaxiHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/PacketHandlers/TradeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/PacketHandlers/TradeHandler.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/ArenaPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/ArenaPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/AuctionPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/AuctionPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/AuthenticationPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/AuthenticationPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/BattleGroundPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/BattleGroundPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/CharacterPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/CharacterPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/ChatPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/ChatPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/ClientConfigPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/ClientConfigPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/CombatPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/CombatPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/DuelPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/DuelPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/GameObjectPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/GameObjectPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/GroupPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/GroupPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/GuildPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/GuildPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/HotfixPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/HotfixPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/InstancePackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/InstancePackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/ItemPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/ItemPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/LootPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/LootPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/MailPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/MailPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/MiscPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/MiscPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/MovementPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/MovementPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/NPCPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/NPCPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/PetPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/PetPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/PetitionPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/PetitionPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/QueryPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/QueryPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/QuestPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/QuestPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/ReputationPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/ReputationPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/SessionPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/SessionPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/SocialPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/SocialPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/SpellPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/SpellPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/SupportTicketPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/SupportTicketPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/SystemPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/SystemPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/TaxiPackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/TaxiPackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/TradePackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/TradePackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/UpdatePackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/UpdatePackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/Packets/WorldStatePackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/Packets/WorldStatePackets.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/RealmSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/RealmSocket.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/WorldSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/WorldSocket.cs -------------------------------------------------------------------------------- /HermesProxy/World/Server/WorldSocketManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/Server/WorldSocketManager.cs -------------------------------------------------------------------------------- /HermesProxy/World/SniffFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/SniffFile.cs -------------------------------------------------------------------------------- /HermesProxy/World/WowGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/HermesProxy/World/WowGuid.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/README.md -------------------------------------------------------------------------------- /scripts/Build_Linux.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/scripts/Build_Linux.bat -------------------------------------------------------------------------------- /scripts/Build_Windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WowLegacyCore/HermesProxy/HEAD/scripts/Build_Windows.bat --------------------------------------------------------------------------------