From d337309b172c4a7ebde04da2003a3fee270d3a87 Mon Sep 17 00:00:00 2001 From: Sky Johnson Date: Tue, 29 Jul 2025 22:05:20 -0500 Subject: [PATCH] continue work on parser, move converted packet/substruct definitions over --- internal/common/types.go | 10 +- internal/packets/PARSER.md | 54 +- internal/packets/login/CharSelectProfile.xml | 276 -- internal/packets/login/CreateCharacter.xml | 559 --- .../packets/login/DeleteCharacterResponse.xml | 8 - internal/packets/login/LoginReplyMsg.xml | 360 -- internal/packets/login/LoginRequest.xml | 25 - internal/packets/login/LoginResponse.xml | 125 - internal/packets/login/PlayResponse.xml | 29 - internal/packets/login/WorldList.xml | 83 - internal/packets/login/WorldUpdate.xml | 6 - internal/packets/parser/parser.go | 28 +- internal/packets/parser/structs.go | 8 +- internal/packets/substructs/AASpellInfo.xml | 39 - .../substructs/BaseItemDescription.xml | 484 --- .../common}/BadLanguageFilter.xml | 2 +- .../packets/xml/common/CreateCharacter.xml | 744 ++++ .../xml/common/CreateCharacterReply.xml | 7 + .../packets/xml/item/BaseItemDescription.xml | 1058 +++++ .../xml/item/BaseItemDescriptionGeneric.xml | 37 + .../xml/item/BaseItemDescriptionInspect.xml | 30 + .../xml/item/BaseMerchantItemDescription.xml | 597 +++ internal/packets/xml/item/Item.xml | 305 ++ internal/packets/xml/item/ItemAdornment.xml | 136 + internal/packets/xml/item/ItemArmor.xml | 200 + .../packets/xml/item/ItemArmorDetails.xml | 6 + internal/packets/xml/item/ItemArmorSet.xml | 129 + internal/packets/xml/item/ItemBag.xml | 325 ++ internal/packets/xml/item/ItemBagDetails.xml | 6 + internal/packets/xml/item/ItemBauble.xml | 375 ++ internal/packets/xml/item/ItemBook.xml | 106 + internal/packets/xml/item/ItemDecoration.xml | 57 + internal/packets/xml/item/ItemDescription.xml | 127 + .../xml/item/ItemDescriptionGeneric.xml | 7 + .../xml/item/ItemDescriptionInspect.xml | 7 + .../packets/xml/item/ItemDungeonMaker.xml | 46 + internal/packets/xml/item/ItemFood.xml | 182 + internal/packets/xml/item/ItemFooter.xml | 1787 ++++++++ .../packets/xml/item/ItemFooterInspect.xml | 5 + internal/packets/xml/item/ItemGeneric.xml | 106 + internal/packets/xml/item/ItemHouse.xml | 174 + .../packets/xml/item/ItemHouseContainer.xml | 242 ++ internal/packets/xml/item/ItemInspect.xml | 6 + internal/packets/xml/item/ItemMarketplace.xml | 111 + internal/packets/xml/item/ItemPattern.xml | 244 ++ internal/packets/xml/item/ItemProfile.xml | 57 + internal/packets/xml/item/ItemRange.xml | 398 ++ .../packets/xml/item/ItemRangeDetails.xml | 20 + internal/packets/xml/item/ItemRecipeBook.xml | 271 ++ .../xml/item/ItemRecipeBookDetails.xml | 8 + internal/packets/xml/item/ItemSet.xml | 170 + internal/packets/xml/item/ItemShield.xml | 173 + .../packets/xml/item/ItemShieldDetails.xml | 6 + internal/packets/xml/item/ItemSkill.xml | 203 + internal/packets/xml/item/ItemThrown.xml | 202 + internal/packets/xml/item/ItemWeapon.xml | 376 ++ .../packets/xml/item/ItemWeaponDetails.xml | 11 + .../packets/xml/item/LootItemDescription.xml | 42 + internal/packets/xml/item/LootItemGeneric.xml | 78 + internal/packets/xml/item/Loot_ItemFooter.xml | 114 + .../xml/item/MerchantItemAdornment.xml | 123 + .../packets/xml/item/MerchantItemArmor.xml | 158 + .../packets/xml/item/MerchantItemArmorSet.xml | 259 ++ internal/packets/xml/item/MerchantItemBag.xml | 249 ++ .../packets/xml/item/MerchantItemBauble.xml | 293 ++ .../packets/xml/item/MerchantItemBook.xml | 90 + .../xml/item/MerchantItemDecoration.xml | 57 + .../xml/item/MerchantItemDescription.xml | 102 + .../xml/item/MerchantItemDungeonMaker.xml | 46 + .../packets/xml/item/MerchantItemFood.xml | 142 + .../packets/xml/item/MerchantItemGeneric.xml | 82 + .../packets/xml/item/MerchantItemHouse.xml | 148 + .../xml/item/MerchantItemHouseContainer.xml | 202 + .../xml/item/MerchantItemMarketplace.xml | 123 + .../packets/xml/item/MerchantItemPattern.xml | 222 + .../packets/xml/item/MerchantItemProfile.xml | 57 + .../packets/xml/item/MerchantItemRange.xml | 314 ++ .../xml/item/MerchantItemRecipeBook.xml | 224 + internal/packets/xml/item/MerchantItemSet.xml | 156 + .../packets/xml/item/MerchantItemShield.xml | 134 + .../packets/xml/item/MerchantItemSkill.xml | 150 + .../packets/xml/item/MerchantItemThrown.xml | 162 + .../packets/xml/item/MerchantItemWeapon.xml | 294 ++ .../packets/xml/item/QuestItemDescription.xml | 12 + .../packets/xml/item/QuestItemRewards.xml | 10 + internal/packets/xml/item/SkillItemFooter.xml | 6 + internal/packets/xml/item/UpdateInventory.xml | 122 + .../packets/xml/login/CharSelectProfile.xml | 398 ++ .../{ => xml}/login/CreateCharacterReply.xml | 14 +- .../login/DeleteCharacterRequest.xml | 4 +- .../xml/login/DeleteCharacterResponse.xml | 10 + internal/packets/xml/login/LoginReplyMsg.xml | 490 +++ internal/packets/xml/login/LoginRequest.xml | 35 + .../packets/{ => xml}/login/PlayRequest.xml | 7 +- internal/packets/xml/login/PlayResponse.xml | 33 + internal/packets/xml/login/WorldList.xml | 100 + internal/packets/xml/login/WorldUpdate.xml | 9 + .../spawn/SignWidgetSpawnStruct_Footer.xml | 90 + .../packets/xml/spawn/SpawnInfoStruct.xml | 2098 +++++++++ .../packets/xml/spawn/SpawnPositionStruct.xml | 300 ++ internal/packets/xml/spawn/SpawnStruct.xml | 107 + .../packets/xml/spawn/SpawnStruct_Footer.xml | 41 + .../packets/xml/spawn/SpawnStruct_Header.xml | 104 + .../spawn/SpawnVisualizationInfoStruct.xml | 142 + .../xml/spawn/WidgetSpawnStruct_Footer.xml | 54 + .../xml/world/AchievementSpellInfo.xml | 810 ++++ .../packets/xml/world/AchievementUpdate.xml | 26 + .../packets/xml/world/AdvancementRequest.xml | 6 + internal/packets/xml/world/AdventureList.xml | 3764 +++++++++++++++++ .../packets/xml/world/AfterInvSpellUpdate.xml | 7 + internal/packets/xml/world/ArenaGameTypes.xml | 49 + .../packets/xml/world/AvailWorldChannels.xml | 15 + internal/packets/xml/world/BagOptions.xml | 7 + .../packets/xml/world/BeginItemCreation.xml | 53 + internal/packets/xml/world/BeginTracking.xml | 5 + internal/packets/xml/world/BioUpdate.xml | 5 + internal/packets/xml/world/BrokerBags.xml | 10 + internal/packets/xml/world/BrokerItems.xml | 242 ++ internal/packets/xml/world/BuyHouse.xml | 8 + .../xml/world/CSTicketHeaderRequestMsg.xml | 5 + internal/packets/xml/world/CSToolsRequest.xml | 5 + internal/packets/xml/world/Camp.xml | 20 + internal/packets/xml/world/CampAbortedMsg.xml | 4 + .../xml/world/CancelMoveObjectMode.xml | 5 + internal/packets/xml/world/CannedEmote.xml | 18 + .../xml/world/CharacterAchievements.xml | 111 + .../xml/world/CharacterCreatedDungeons.xml | 42 + .../packets/xml/world/CharacterCurrency.xml | 36 + .../xml/world/CharacterHousingList.xml | 49 + internal/packets/xml/world/CharacterMerc.xml | 421 ++ .../packets/xml/world/CharacterMounts.xml | 38 + internal/packets/xml/world/CharacterPet.xml | 230 + internal/packets/xml/world/CharacterSheet.xml | 1528 +++++++ .../packets/xml/world/ChatChannelUpdate.xml | 7 + internal/packets/xml/world/ChatFiltersMsg.xml | 22 + .../packets/xml/world/ChatRelationship.xml | 12 + internal/packets/xml/world/ChoiceWindow.xml | 30 + .../packets/xml/world/ClearForLanding.xml | 5 + .../packets/xml/world/ClearForTakeOff.xml | 10 + internal/packets/xml/world/ClientFell.xml | 6 + internal/packets/xml/world/CloseWindow.xml | 6 + .../packets/xml/world/CollectionFilter.xml | 16 + internal/packets/xml/world/CollectionItem.xml | 7 + .../packets/xml/world/CollectionUpdate.xml | 63 + internal/packets/xml/world/CommandName.xml | 9 + .../packets/xml/world/CommitAATemplate.xml | 6 + .../xml/world/CreateBoatTransportMsg.xml | 5 + .../packets/xml/world/CreateFromRecipe.xml | 445 ++ .../xml/world/CsCategoryRequestMsg.xml | 5 + internal/packets/xml/world/CurrentPet.xml | 6 + .../packets/xml/world/DailyObjectives.xml | 16 + internal/packets/xml/world/DeathWindow.xml | 14 + .../packets/xml/world/DefaultGroupOptions.xml | 26 + .../world/DefaultGroupOptionsRequestMsg.xml | 4 + .../packets/xml/world/DestroyGhostCmd.xml | 6 + internal/packets/xml/world/DialogClose.xml | 5 + internal/packets/xml/world/DialogOpen.xml | 47 + internal/packets/xml/world/DialogSelect.xml | 6 + internal/packets/xml/world/DietyAbilities.xml | 9 + .../packets/xml/world/DisplayHouseStatus.xml | 59 + .../packets/xml/world/DisplaySpellFailed.xml | 13 + internal/packets/xml/world/DisplayText.xml | 12 + .../packets/xml/world/DisplayVisitScreen.xml | 57 + .../world/DoneLoadingEntityResourcesMsg.xml | 4 + .../xml/world/DoneLoadingUIResourcesMsg.xml | 4 + .../xml/world/DoneLoadingZoneResourcesMsg.xml | 9 + .../world/DoneSendingInitialEntitiesMsg.xml | 4 + internal/packets/xml/world/DressingRoom.xml | 60 + .../xml/world/DungeonMakerItemRequest.xml | 9 + internal/packets/xml/world/EffectInfo.xml | 37 + .../packets/xml/world/EnableGameEvent.xml | 6 + .../packets/xml/world/EncounterBroken.xml | 11 + internal/packets/xml/world/EnterCombat.xml | 5 + internal/packets/xml/world/EnterHouse.xml | 9 + .../packets/xml/world/EntityVerbsRequest.xml | 5 + .../packets/xml/world/EntityVerbsResponse.xml | 13 + .../packets/xml/world/EntityVerbsVerb.xml | 6 + .../xml/world/EntityVerbsVerbBackup.xml | 5 + internal/packets/xml/world/EqShowBook.xml | 49 + .../packets/xml/world/EqTargetItemCmd.xml | 11 + internal/packets/xml/world/EquipmentSets.xml | 13 + .../packets/xml/world/ExamineAASpellInfo.xml | 30 + .../packets/xml/world/ExamineEffectInfo.xml | 18 + .../packets/xml/world/ExamineInfoHeader.xml | 186 + .../xml/world/ExamineInfoItemLinkRequest.xml | 77 + .../xml/world/ExamineInfoItemRequest.xml | 13 + .../packets/xml/world/ExamineInfoRequest.xml | 7 + .../xml/world/ExamineInfoRequestMsg.xml | 46 + .../xml/world/ExamineInfoRequest_type3.xml | 19 + .../xml/world/ExaminePartialSpellInfo.xml | 10 + .../packets/xml/world/ExamineRecipeInfo.xml | 30 + .../xml/world/ExamineSpecialSpellInfo.xml | 38 + .../xml/world/ExamineSpellEffectRequest.xml | 12 + .../packets/xml/world/ExamineSpellInfo.xml | 58 + internal/packets/xml/world/FactionUpdate.xml | 31 + .../packets/xml/world/FinishCastSpell.xml | 6 + internal/packets/xml/world/FlashWindow.xml | 6 + internal/packets/xml/world/FlightPathsMsg.xml | 41 + internal/packets/xml/world/FogInit.xml | 179 + internal/packets/xml/world/GameWorldTime.xml | 29 + internal/packets/xml/world/GetMailHeader.xml | 113 + internal/packets/xml/world/GlowPath.xml | 26 + internal/packets/xml/world/GroupMember.xml | 202 + .../packets/xml/world/GuildBankEventList.xml | 10 + .../packets/xml/world/GuildEventAction.xml | 8 + internal/packets/xml/world/GuildEventAdd.xml | 9 + .../packets/xml/world/GuildEventDetails.xml | 9 + internal/packets/xml/world/GuildEventList.xml | 12 + .../xml/world/GuildMembershipResponse.xml | 110 + .../packets/xml/world/GuildRecruiting.xml | 18 + .../xml/world/GuildRecruitingDetails.xml | 22 + .../xml/world/GuildRecruitingImage.xml | 9 + .../xml/world/GuildRecruitingMemberInfo.xml | 18 + internal/packets/xml/world/GuildUpdate.xml | 426 ++ internal/packets/xml/world/HearCastSpell.xml | 49 + internal/packets/xml/world/HearChat.xml | 85 + .../packets/xml/world/HearDamage_Header.xml | 44 + internal/packets/xml/world/HearDeath.xml | 13 + internal/packets/xml/world/HearDispell.xml | 9 + internal/packets/xml/world/HearHeal.xml | 53 + .../packets/xml/world/HearMultipleDamage.xml | 34 + .../packets/xml/world/HearRangeDamage.xml | 26 + .../xml/world/HearRangeSpellDamage.xml | 32 + .../packets/xml/world/HearSimpleDamage.xml | 53 + .../xml/world/HearSiphonSpellDamage.xml | 58 + .../packets/xml/world/HearSpellDamage.xml | 29 + internal/packets/xml/world/HearThreatCmd.xml | 9 + internal/packets/xml/world/HeritageMsg.xml | 13 + .../packets/xml/world/HeroicOpportunity.xml | 26 + .../xml/world/HouseAccessRemoveMsg.xml | 7 + .../packets/xml/world/HouseAccessSetMsg.xml | 7 + .../xml/world/HouseDefaultAccessSetMsg.xml | 6 + internal/packets/xml/world/HouseItemsList.xml | 77 + internal/packets/xml/world/InspectPlayer.xml | 462 ++ .../packets/xml/world/InstanceCreated.xml | 50 + internal/packets/xml/world/InstanceUpdate.xml | 20 + .../packets/xml/world/InstructionWindow.xml | 24 + .../xml/world/InstructionWindowGoal.xml | 5 + internal/packets/xml/world/Interrupt.xml | 10 + .../packets/xml/world/JoinGuildNotify.xml | 89 + .../xml/world/JournalQuestStoryline.xml | 23 + .../packets/xml/world/JournalRewardData.xml | 261 ++ .../packets/xml/world/JournalStoryLines.xml | 21 + internal/packets/xml/world/KeymapDataMsg.xml | 7 + internal/packets/xml/world/KeymapNoneMsg.xml | 9 + .../xml/world/KnowledgebaseRequestMsg.xml | 7 + .../xml/world/KnowledgebaseResponseMsg.xml | 18 + internal/packets/xml/world/LFGGroupSearch.xml | 6 + internal/packets/xml/world/Languages.xml | 10 + internal/packets/xml/world/Launchpad.xml | 5 + .../packets/xml/world/LeaveGuildNotify.xml | 6 + internal/packets/xml/world/LevelChanged.xml | 7 + internal/packets/xml/world/LikeOption.xml | 7 + .../packets/xml/world/LoadCalendarEvents.xml | 48 + .../packets/xml/world/LoadWelcomeWindow.xml | 114 + .../packets/xml/world/LoginByNumRequest.xml | 23 + internal/packets/xml/world/LoginResponse.xml | 189 + internal/packets/xml/world/LootItem.xml | 31 + internal/packets/xml/world/Lottery.xml | 16 + internal/packets/xml/world/MacroInit.xml | 38 + internal/packets/xml/world/MacroUpdate.xml | 29 + internal/packets/xml/world/MailGetMessage.xml | 67 + .../packets/xml/world/MailSendMessage.xml | 12 + .../xml/world/MailSendMessageReply.xml | 8 + .../packets/xml/world/MaintainedEffects.xml | 79 + internal/packets/xml/world/MapData.xml | 63 + internal/packets/xml/world/MapExploration.xml | 11 + .../packets/xml/world/MapFogDataUpdateMsg.xml | 18 + internal/packets/xml/world/MapRequest.xml | 6 + .../xml/world/MarketAddFundsRequest.xml | 10 + .../packets/xml/world/MarketFundsUpdate.xml | 11 + .../packets/xml/world/MarketPlacePrices.xml | 14 + internal/packets/xml/world/ModifyGuild.xml | 14 + internal/packets/xml/world/MoveClient.xml | 30 + internal/packets/xml/world/MoveObjectMode.xml | 65 + .../world/MoveableObjectPlacementCriteri.xml | 7 + internal/packets/xml/world/OfferQuest.xml | 216 + internal/packets/xml/world/OnScreenMsg.xml | 19 + internal/packets/xml/world/OpenCharCust.xml | 8 + internal/packets/xml/world/PaperdollImage.xml | 24 + .../packets/xml/world/PartialSpellInfo.xml | 55 + internal/packets/xml/world/PassiveEffects.xml | 13 + internal/packets/xml/world/PayUpkeep.xml | 10 + .../xml/world/PerformCameraShakeMsg.xml | 9 + internal/packets/xml/world/PetOptions.xml | 14 + .../packets/xml/world/PetOptionsResponse.xml | 36 + .../packets/xml/world/PlaceMoveableObject.xml | 24 + internal/packets/xml/world/Play3DSound.xml | 11 + internal/packets/xml/world/PlayFlavor.xml | 54 + internal/packets/xml/world/PlaySound.xml | 9 + internal/packets/xml/world/PlayVoice.xml | 8 + .../xml/world/PlayerHouseAccessUpdateMsg.xml | 8 + .../xml/world/PlayerHouseBaseScreen.xml | 355 ++ .../packets/xml/world/PlayerHousePurchase.xml | 27 + .../packets/xml/world/PlayerKnockback.xml | 12 + .../packets/xml/world/PlayerPosUpdate.xml | 91 + internal/packets/xml/world/PlayerTrade.xml | 186 + .../packets/xml/world/PointOfInterest.xml | 8 + .../packets/xml/world/PredictionUpdateMsg.xml | 4 + .../packets/xml/world/PromoFlagsDetails.xml | 59 + internal/packets/xml/world/QuestComplete.xml | 122 + .../xml/world/QuestExamineInfoHeader.xml | 12 + .../packets/xml/world/QuestFactionRewards.xml | 10 + .../xml/world/QuestJournalInspectMsg.xml | 9 + .../packets/xml/world/QuestJournalReply.xml | 970 +++++ .../world/QuestJournalReply_PARSER_ONLY.xml | 116 + .../packets/xml/world/QuestJournalUpdate.xml | 194 + .../packets/xml/world/QuestJournalVisible.xml | 7 + .../xml/world/QuestJournalWaypoint.xml | 12 + .../packets/xml/world/QuestRewardPackMsg.xml | 11 + internal/packets/xml/world/QuickBarInit.xml | 50 + .../xml/world/QuickBarUpdateRequest.xml | 27 + internal/packets/xml/world/RaidMember.xml | 82 + internal/packets/xml/world/RaidUpdate.xml | 106 + .../packets/xml/world/ReadyForTakeOff.xml | 4 + internal/packets/xml/world/ReadyToZoneMsg.xml | 4 + internal/packets/xml/world/ReceiveOffer.xml | 15 + internal/packets/xml/world/RecipeBook.xml | 5 + .../packets/xml/world/RecipeDetailList.xml | 33 + internal/packets/xml/world/RecipeDetails.xml | 20 + internal/packets/xml/world/RecipeInfo.xml | 508 +++ internal/packets/xml/world/RecipeList.xml | 22 + .../packets/xml/world/RecipeListUnknown.xml | 5 + internal/packets/xml/world/RemoteCmdMsg.xml | 10 + internal/packets/xml/world/RequestCamp.xml | 20 + .../xml/world/RequestGuildEventDetails.xml | 14 + .../packets/xml/world/RequestGuildInfo.xml | 9 + .../packets/xml/world/RequestRecipeDetail.xml | 26 + internal/packets/xml/world/Research.xml | 42 + internal/packets/xml/world/Resurrected.xml | 5 + internal/packets/xml/world/RewardPackMsg.xml | 12 + internal/packets/xml/world/SatMsg.xml | 4 + internal/packets/xml/world/SavageBar.xml | 8 + .../packets/xml/world/SelectTradeskill.xml | 73 + .../packets/xml/world/ServerControlFlags.xml | 19 + .../packets/xml/world/ServerDialogClose.xml | 5 + .../packets/xml/world/ServerUpdateTarget.xml | 6 + .../packets/xml/world/SetControlGhost.xml | 36 + .../packets/xml/world/SetDefaultCommand.xml | 7 + internal/packets/xml/world/SetPOVGhostCmd.xml | 5 + .../packets/xml/world/SetRemoteCmdsMsg.xml | 8 + .../packets/xml/world/ShowItemCreation.xml | 117 + internal/packets/xml/world/ShowRecipeBook.xml | 17 + internal/packets/xml/world/ShowWindow.xml | 6 + internal/packets/xml/world/Signal.xml | 5 + .../xml/world/SkillInfoItemRequest.xml | 6 + .../xml/world/SkillInfoItemResponse.xml | 7 + .../packets/xml/world/SkillInfoRequest.xml | 7 + .../packets/xml/world/SkillInfoResponse.xml | 8 + .../xml/world/SkillInfoSpellRequest.xml | 7 + internal/packets/xml/world/SkillMap.xml | 19 + .../packets/xml/world/SpecialSpellInfo.xml | 129 + internal/packets/xml/world/SpellEffects.xml | 38 + internal/packets/xml/world/SpellFizzle.xml | 10 + internal/packets/xml/world/SpellGainedMsg.xml | 47 + internal/packets/xml/world/SpellInfo.xml | 963 +++++ internal/packets/xml/world/SpellNoLand.xml | 10 + .../packets/xml/world/SpellSlotMapping.xml | 9 + internal/packets/xml/world/StartBroker.xml | 7 + internal/packets/xml/world/StartCastSpell.xml | 6 + internal/packets/xml/world/StateCmd.xml | 14 + internal/packets/xml/world/StoppedLooting.xml | 5 + .../xml/world/SubStruct_UpdateSpellBook.xml | 188 + internal/packets/xml/world/SubmitCharCust.xml | 42 + internal/packets/xml/world/SupplyDepot.xml | 35 + internal/packets/xml/world/SysClient.xml | 5 + .../packets/xml/world/TSEventReaction.xml | 5 + .../packets/xml/world/TargetSpellEffects.xml | 32 + .../packets/xml/world/TeleportDestination.xml | 8 + internal/packets/xml/world/TeleportList.xml | 84 + .../packets/xml/world/TeleportWithinZone.xml | 7 + internal/packets/xml/world/TintWidgetsMsg.xml | 8 + internal/packets/xml/world/TitleUpdate.xml | 11 + internal/packets/xml/world/TrackingUpdate.xml | 22 + internal/packets/xml/world/TraitsList.xml | 582 +++ internal/packets/xml/world/UIEvent.xml | 19 + internal/packets/xml/world/UpdateBank.xml | 24 + .../packets/xml/world/UpdateCreateItem.xml | 26 + .../xml/world/UpdateHouseAccessDataMsg.xml | 14 + internal/packets/xml/world/UpdateLoot.xml | 71 + .../xml/world/UpdateMaintainedExamine.xml | 37 + internal/packets/xml/world/UpdateMerchant.xml | 317 ++ .../packets/xml/world/UpdatePlayerMail.xml | 17 + .../packets/xml/world/UpdateRecipeBook.xml | 29 + internal/packets/xml/world/UpdateSign.xml | 8 + .../packets/xml/world/UpdateSkillBook.xml | 61 + .../packets/xml/world/UpdateSpellBook.xml | 86 + internal/packets/xml/world/UpdateTarget.xml | 6 + internal/packets/xml/world/UpdateTitle.xml | 23 + .../packets/xml/world/VoiceChatServer.xml | 8 + .../packets/xml/world/WaypointReplyMsg.xml | 11 + internal/packets/xml/world/WaypointSelect.xml | 14 + internal/packets/xml/world/WaypointUpdate.xml | 21 + internal/packets/xml/world/Weakness.xml | 6 + .../xml/world/WhoChannelQueryReply.xml | 10 + internal/packets/xml/world/WhoQueryReply.xml | 81 + .../packets/xml/world/ZoneBgInstanceList.xml | 33 + internal/packets/xml/world/ZoneChangeMsg.xml | 8 + internal/packets/xml/world/ZoneInfo.xml | 880 ++++ .../xml/world/substruct_AASpellInfo.xml | 60 + .../xml/world/substruct_info_template.xml | 15 + .../packets/xml/world/substruct_item_info.xml | 9 + .../packets/xml/world/substruct_node_info.xml | 66 + .../xml/world/substruct_unknown5_info.xml | 14 + 404 files changed, 38780 insertions(+), 2054 deletions(-) delete mode 100644 internal/packets/login/CharSelectProfile.xml delete mode 100644 internal/packets/login/CreateCharacter.xml delete mode 100644 internal/packets/login/DeleteCharacterResponse.xml delete mode 100644 internal/packets/login/LoginReplyMsg.xml delete mode 100644 internal/packets/login/LoginRequest.xml delete mode 100644 internal/packets/login/LoginResponse.xml delete mode 100644 internal/packets/login/PlayResponse.xml delete mode 100644 internal/packets/login/WorldList.xml delete mode 100644 internal/packets/login/WorldUpdate.xml delete mode 100644 internal/packets/substructs/AASpellInfo.xml delete mode 100644 internal/packets/substructs/BaseItemDescription.xml rename internal/packets/{login => xml/common}/BadLanguageFilter.xml (79%) create mode 100644 internal/packets/xml/common/CreateCharacter.xml create mode 100644 internal/packets/xml/common/CreateCharacterReply.xml create mode 100644 internal/packets/xml/item/BaseItemDescription.xml create mode 100644 internal/packets/xml/item/BaseItemDescriptionGeneric.xml create mode 100644 internal/packets/xml/item/BaseItemDescriptionInspect.xml create mode 100644 internal/packets/xml/item/BaseMerchantItemDescription.xml create mode 100644 internal/packets/xml/item/Item.xml create mode 100644 internal/packets/xml/item/ItemAdornment.xml create mode 100644 internal/packets/xml/item/ItemArmor.xml create mode 100644 internal/packets/xml/item/ItemArmorDetails.xml create mode 100644 internal/packets/xml/item/ItemArmorSet.xml create mode 100644 internal/packets/xml/item/ItemBag.xml create mode 100644 internal/packets/xml/item/ItemBagDetails.xml create mode 100644 internal/packets/xml/item/ItemBauble.xml create mode 100644 internal/packets/xml/item/ItemBook.xml create mode 100644 internal/packets/xml/item/ItemDecoration.xml create mode 100644 internal/packets/xml/item/ItemDescription.xml create mode 100644 internal/packets/xml/item/ItemDescriptionGeneric.xml create mode 100644 internal/packets/xml/item/ItemDescriptionInspect.xml create mode 100644 internal/packets/xml/item/ItemDungeonMaker.xml create mode 100644 internal/packets/xml/item/ItemFood.xml create mode 100644 internal/packets/xml/item/ItemFooter.xml create mode 100644 internal/packets/xml/item/ItemFooterInspect.xml create mode 100644 internal/packets/xml/item/ItemGeneric.xml create mode 100644 internal/packets/xml/item/ItemHouse.xml create mode 100644 internal/packets/xml/item/ItemHouseContainer.xml create mode 100644 internal/packets/xml/item/ItemInspect.xml create mode 100644 internal/packets/xml/item/ItemMarketplace.xml create mode 100644 internal/packets/xml/item/ItemPattern.xml create mode 100644 internal/packets/xml/item/ItemProfile.xml create mode 100644 internal/packets/xml/item/ItemRange.xml create mode 100644 internal/packets/xml/item/ItemRangeDetails.xml create mode 100644 internal/packets/xml/item/ItemRecipeBook.xml create mode 100644 internal/packets/xml/item/ItemRecipeBookDetails.xml create mode 100644 internal/packets/xml/item/ItemSet.xml create mode 100644 internal/packets/xml/item/ItemShield.xml create mode 100644 internal/packets/xml/item/ItemShieldDetails.xml create mode 100644 internal/packets/xml/item/ItemSkill.xml create mode 100644 internal/packets/xml/item/ItemThrown.xml create mode 100644 internal/packets/xml/item/ItemWeapon.xml create mode 100644 internal/packets/xml/item/ItemWeaponDetails.xml create mode 100644 internal/packets/xml/item/LootItemDescription.xml create mode 100644 internal/packets/xml/item/LootItemGeneric.xml create mode 100644 internal/packets/xml/item/Loot_ItemFooter.xml create mode 100644 internal/packets/xml/item/MerchantItemAdornment.xml create mode 100644 internal/packets/xml/item/MerchantItemArmor.xml create mode 100644 internal/packets/xml/item/MerchantItemArmorSet.xml create mode 100644 internal/packets/xml/item/MerchantItemBag.xml create mode 100644 internal/packets/xml/item/MerchantItemBauble.xml create mode 100644 internal/packets/xml/item/MerchantItemBook.xml create mode 100644 internal/packets/xml/item/MerchantItemDecoration.xml create mode 100644 internal/packets/xml/item/MerchantItemDescription.xml create mode 100644 internal/packets/xml/item/MerchantItemDungeonMaker.xml create mode 100644 internal/packets/xml/item/MerchantItemFood.xml create mode 100644 internal/packets/xml/item/MerchantItemGeneric.xml create mode 100644 internal/packets/xml/item/MerchantItemHouse.xml create mode 100644 internal/packets/xml/item/MerchantItemHouseContainer.xml create mode 100644 internal/packets/xml/item/MerchantItemMarketplace.xml create mode 100644 internal/packets/xml/item/MerchantItemPattern.xml create mode 100644 internal/packets/xml/item/MerchantItemProfile.xml create mode 100644 internal/packets/xml/item/MerchantItemRange.xml create mode 100644 internal/packets/xml/item/MerchantItemRecipeBook.xml create mode 100644 internal/packets/xml/item/MerchantItemSet.xml create mode 100644 internal/packets/xml/item/MerchantItemShield.xml create mode 100644 internal/packets/xml/item/MerchantItemSkill.xml create mode 100644 internal/packets/xml/item/MerchantItemThrown.xml create mode 100644 internal/packets/xml/item/MerchantItemWeapon.xml create mode 100644 internal/packets/xml/item/QuestItemDescription.xml create mode 100644 internal/packets/xml/item/QuestItemRewards.xml create mode 100644 internal/packets/xml/item/SkillItemFooter.xml create mode 100644 internal/packets/xml/item/UpdateInventory.xml create mode 100644 internal/packets/xml/login/CharSelectProfile.xml rename internal/packets/{ => xml}/login/CreateCharacterReply.xml (53%) rename internal/packets/{ => xml}/login/DeleteCharacterRequest.xml (59%) create mode 100644 internal/packets/xml/login/DeleteCharacterResponse.xml create mode 100644 internal/packets/xml/login/LoginReplyMsg.xml create mode 100644 internal/packets/xml/login/LoginRequest.xml rename internal/packets/{ => xml}/login/PlayRequest.xml (55%) create mode 100644 internal/packets/xml/login/PlayResponse.xml create mode 100644 internal/packets/xml/login/WorldList.xml create mode 100644 internal/packets/xml/login/WorldUpdate.xml create mode 100644 internal/packets/xml/spawn/SignWidgetSpawnStruct_Footer.xml create mode 100644 internal/packets/xml/spawn/SpawnInfoStruct.xml create mode 100644 internal/packets/xml/spawn/SpawnPositionStruct.xml create mode 100644 internal/packets/xml/spawn/SpawnStruct.xml create mode 100644 internal/packets/xml/spawn/SpawnStruct_Footer.xml create mode 100644 internal/packets/xml/spawn/SpawnStruct_Header.xml create mode 100644 internal/packets/xml/spawn/SpawnVisualizationInfoStruct.xml create mode 100644 internal/packets/xml/spawn/WidgetSpawnStruct_Footer.xml create mode 100644 internal/packets/xml/world/AchievementSpellInfo.xml create mode 100644 internal/packets/xml/world/AchievementUpdate.xml create mode 100644 internal/packets/xml/world/AdvancementRequest.xml create mode 100644 internal/packets/xml/world/AdventureList.xml create mode 100644 internal/packets/xml/world/AfterInvSpellUpdate.xml create mode 100644 internal/packets/xml/world/ArenaGameTypes.xml create mode 100644 internal/packets/xml/world/AvailWorldChannels.xml create mode 100644 internal/packets/xml/world/BagOptions.xml create mode 100644 internal/packets/xml/world/BeginItemCreation.xml create mode 100644 internal/packets/xml/world/BeginTracking.xml create mode 100644 internal/packets/xml/world/BioUpdate.xml create mode 100644 internal/packets/xml/world/BrokerBags.xml create mode 100644 internal/packets/xml/world/BrokerItems.xml create mode 100644 internal/packets/xml/world/BuyHouse.xml create mode 100644 internal/packets/xml/world/CSTicketHeaderRequestMsg.xml create mode 100644 internal/packets/xml/world/CSToolsRequest.xml create mode 100644 internal/packets/xml/world/Camp.xml create mode 100644 internal/packets/xml/world/CampAbortedMsg.xml create mode 100644 internal/packets/xml/world/CancelMoveObjectMode.xml create mode 100644 internal/packets/xml/world/CannedEmote.xml create mode 100644 internal/packets/xml/world/CharacterAchievements.xml create mode 100644 internal/packets/xml/world/CharacterCreatedDungeons.xml create mode 100644 internal/packets/xml/world/CharacterCurrency.xml create mode 100644 internal/packets/xml/world/CharacterHousingList.xml create mode 100644 internal/packets/xml/world/CharacterMerc.xml create mode 100644 internal/packets/xml/world/CharacterMounts.xml create mode 100644 internal/packets/xml/world/CharacterPet.xml create mode 100644 internal/packets/xml/world/CharacterSheet.xml create mode 100644 internal/packets/xml/world/ChatChannelUpdate.xml create mode 100644 internal/packets/xml/world/ChatFiltersMsg.xml create mode 100644 internal/packets/xml/world/ChatRelationship.xml create mode 100644 internal/packets/xml/world/ChoiceWindow.xml create mode 100644 internal/packets/xml/world/ClearForLanding.xml create mode 100644 internal/packets/xml/world/ClearForTakeOff.xml create mode 100644 internal/packets/xml/world/ClientFell.xml create mode 100644 internal/packets/xml/world/CloseWindow.xml create mode 100644 internal/packets/xml/world/CollectionFilter.xml create mode 100644 internal/packets/xml/world/CollectionItem.xml create mode 100644 internal/packets/xml/world/CollectionUpdate.xml create mode 100644 internal/packets/xml/world/CommandName.xml create mode 100644 internal/packets/xml/world/CommitAATemplate.xml create mode 100644 internal/packets/xml/world/CreateBoatTransportMsg.xml create mode 100644 internal/packets/xml/world/CreateFromRecipe.xml create mode 100644 internal/packets/xml/world/CsCategoryRequestMsg.xml create mode 100644 internal/packets/xml/world/CurrentPet.xml create mode 100644 internal/packets/xml/world/DailyObjectives.xml create mode 100644 internal/packets/xml/world/DeathWindow.xml create mode 100644 internal/packets/xml/world/DefaultGroupOptions.xml create mode 100644 internal/packets/xml/world/DefaultGroupOptionsRequestMsg.xml create mode 100644 internal/packets/xml/world/DestroyGhostCmd.xml create mode 100644 internal/packets/xml/world/DialogClose.xml create mode 100644 internal/packets/xml/world/DialogOpen.xml create mode 100644 internal/packets/xml/world/DialogSelect.xml create mode 100644 internal/packets/xml/world/DietyAbilities.xml create mode 100644 internal/packets/xml/world/DisplayHouseStatus.xml create mode 100644 internal/packets/xml/world/DisplaySpellFailed.xml create mode 100644 internal/packets/xml/world/DisplayText.xml create mode 100644 internal/packets/xml/world/DisplayVisitScreen.xml create mode 100644 internal/packets/xml/world/DoneLoadingEntityResourcesMsg.xml create mode 100644 internal/packets/xml/world/DoneLoadingUIResourcesMsg.xml create mode 100644 internal/packets/xml/world/DoneLoadingZoneResourcesMsg.xml create mode 100644 internal/packets/xml/world/DoneSendingInitialEntitiesMsg.xml create mode 100644 internal/packets/xml/world/DressingRoom.xml create mode 100644 internal/packets/xml/world/DungeonMakerItemRequest.xml create mode 100644 internal/packets/xml/world/EffectInfo.xml create mode 100644 internal/packets/xml/world/EnableGameEvent.xml create mode 100644 internal/packets/xml/world/EncounterBroken.xml create mode 100644 internal/packets/xml/world/EnterCombat.xml create mode 100644 internal/packets/xml/world/EnterHouse.xml create mode 100644 internal/packets/xml/world/EntityVerbsRequest.xml create mode 100644 internal/packets/xml/world/EntityVerbsResponse.xml create mode 100644 internal/packets/xml/world/EntityVerbsVerb.xml create mode 100644 internal/packets/xml/world/EntityVerbsVerbBackup.xml create mode 100644 internal/packets/xml/world/EqShowBook.xml create mode 100644 internal/packets/xml/world/EqTargetItemCmd.xml create mode 100644 internal/packets/xml/world/EquipmentSets.xml create mode 100644 internal/packets/xml/world/ExamineAASpellInfo.xml create mode 100644 internal/packets/xml/world/ExamineEffectInfo.xml create mode 100644 internal/packets/xml/world/ExamineInfoHeader.xml create mode 100644 internal/packets/xml/world/ExamineInfoItemLinkRequest.xml create mode 100644 internal/packets/xml/world/ExamineInfoItemRequest.xml create mode 100644 internal/packets/xml/world/ExamineInfoRequest.xml create mode 100644 internal/packets/xml/world/ExamineInfoRequestMsg.xml create mode 100644 internal/packets/xml/world/ExamineInfoRequest_type3.xml create mode 100644 internal/packets/xml/world/ExaminePartialSpellInfo.xml create mode 100644 internal/packets/xml/world/ExamineRecipeInfo.xml create mode 100644 internal/packets/xml/world/ExamineSpecialSpellInfo.xml create mode 100644 internal/packets/xml/world/ExamineSpellEffectRequest.xml create mode 100644 internal/packets/xml/world/ExamineSpellInfo.xml create mode 100644 internal/packets/xml/world/FactionUpdate.xml create mode 100644 internal/packets/xml/world/FinishCastSpell.xml create mode 100644 internal/packets/xml/world/FlashWindow.xml create mode 100644 internal/packets/xml/world/FlightPathsMsg.xml create mode 100644 internal/packets/xml/world/FogInit.xml create mode 100644 internal/packets/xml/world/GameWorldTime.xml create mode 100644 internal/packets/xml/world/GetMailHeader.xml create mode 100644 internal/packets/xml/world/GlowPath.xml create mode 100644 internal/packets/xml/world/GroupMember.xml create mode 100644 internal/packets/xml/world/GuildBankEventList.xml create mode 100644 internal/packets/xml/world/GuildEventAction.xml create mode 100644 internal/packets/xml/world/GuildEventAdd.xml create mode 100644 internal/packets/xml/world/GuildEventDetails.xml create mode 100644 internal/packets/xml/world/GuildEventList.xml create mode 100644 internal/packets/xml/world/GuildMembershipResponse.xml create mode 100644 internal/packets/xml/world/GuildRecruiting.xml create mode 100644 internal/packets/xml/world/GuildRecruitingDetails.xml create mode 100644 internal/packets/xml/world/GuildRecruitingImage.xml create mode 100644 internal/packets/xml/world/GuildRecruitingMemberInfo.xml create mode 100644 internal/packets/xml/world/GuildUpdate.xml create mode 100644 internal/packets/xml/world/HearCastSpell.xml create mode 100644 internal/packets/xml/world/HearChat.xml create mode 100644 internal/packets/xml/world/HearDamage_Header.xml create mode 100644 internal/packets/xml/world/HearDeath.xml create mode 100644 internal/packets/xml/world/HearDispell.xml create mode 100644 internal/packets/xml/world/HearHeal.xml create mode 100644 internal/packets/xml/world/HearMultipleDamage.xml create mode 100644 internal/packets/xml/world/HearRangeDamage.xml create mode 100644 internal/packets/xml/world/HearRangeSpellDamage.xml create mode 100644 internal/packets/xml/world/HearSimpleDamage.xml create mode 100644 internal/packets/xml/world/HearSiphonSpellDamage.xml create mode 100644 internal/packets/xml/world/HearSpellDamage.xml create mode 100644 internal/packets/xml/world/HearThreatCmd.xml create mode 100644 internal/packets/xml/world/HeritageMsg.xml create mode 100644 internal/packets/xml/world/HeroicOpportunity.xml create mode 100644 internal/packets/xml/world/HouseAccessRemoveMsg.xml create mode 100644 internal/packets/xml/world/HouseAccessSetMsg.xml create mode 100644 internal/packets/xml/world/HouseDefaultAccessSetMsg.xml create mode 100644 internal/packets/xml/world/HouseItemsList.xml create mode 100644 internal/packets/xml/world/InspectPlayer.xml create mode 100644 internal/packets/xml/world/InstanceCreated.xml create mode 100644 internal/packets/xml/world/InstanceUpdate.xml create mode 100644 internal/packets/xml/world/InstructionWindow.xml create mode 100644 internal/packets/xml/world/InstructionWindowGoal.xml create mode 100644 internal/packets/xml/world/Interrupt.xml create mode 100644 internal/packets/xml/world/JoinGuildNotify.xml create mode 100644 internal/packets/xml/world/JournalQuestStoryline.xml create mode 100644 internal/packets/xml/world/JournalRewardData.xml create mode 100644 internal/packets/xml/world/JournalStoryLines.xml create mode 100644 internal/packets/xml/world/KeymapDataMsg.xml create mode 100644 internal/packets/xml/world/KeymapNoneMsg.xml create mode 100644 internal/packets/xml/world/KnowledgebaseRequestMsg.xml create mode 100644 internal/packets/xml/world/KnowledgebaseResponseMsg.xml create mode 100644 internal/packets/xml/world/LFGGroupSearch.xml create mode 100644 internal/packets/xml/world/Languages.xml create mode 100644 internal/packets/xml/world/Launchpad.xml create mode 100644 internal/packets/xml/world/LeaveGuildNotify.xml create mode 100644 internal/packets/xml/world/LevelChanged.xml create mode 100644 internal/packets/xml/world/LikeOption.xml create mode 100644 internal/packets/xml/world/LoadCalendarEvents.xml create mode 100644 internal/packets/xml/world/LoadWelcomeWindow.xml create mode 100644 internal/packets/xml/world/LoginByNumRequest.xml create mode 100644 internal/packets/xml/world/LoginResponse.xml create mode 100644 internal/packets/xml/world/LootItem.xml create mode 100644 internal/packets/xml/world/Lottery.xml create mode 100644 internal/packets/xml/world/MacroInit.xml create mode 100644 internal/packets/xml/world/MacroUpdate.xml create mode 100644 internal/packets/xml/world/MailGetMessage.xml create mode 100644 internal/packets/xml/world/MailSendMessage.xml create mode 100644 internal/packets/xml/world/MailSendMessageReply.xml create mode 100644 internal/packets/xml/world/MaintainedEffects.xml create mode 100644 internal/packets/xml/world/MapData.xml create mode 100644 internal/packets/xml/world/MapExploration.xml create mode 100644 internal/packets/xml/world/MapFogDataUpdateMsg.xml create mode 100644 internal/packets/xml/world/MapRequest.xml create mode 100644 internal/packets/xml/world/MarketAddFundsRequest.xml create mode 100644 internal/packets/xml/world/MarketFundsUpdate.xml create mode 100644 internal/packets/xml/world/MarketPlacePrices.xml create mode 100644 internal/packets/xml/world/ModifyGuild.xml create mode 100644 internal/packets/xml/world/MoveClient.xml create mode 100644 internal/packets/xml/world/MoveObjectMode.xml create mode 100644 internal/packets/xml/world/MoveableObjectPlacementCriteri.xml create mode 100644 internal/packets/xml/world/OfferQuest.xml create mode 100644 internal/packets/xml/world/OnScreenMsg.xml create mode 100644 internal/packets/xml/world/OpenCharCust.xml create mode 100644 internal/packets/xml/world/PaperdollImage.xml create mode 100644 internal/packets/xml/world/PartialSpellInfo.xml create mode 100644 internal/packets/xml/world/PassiveEffects.xml create mode 100644 internal/packets/xml/world/PayUpkeep.xml create mode 100644 internal/packets/xml/world/PerformCameraShakeMsg.xml create mode 100644 internal/packets/xml/world/PetOptions.xml create mode 100644 internal/packets/xml/world/PetOptionsResponse.xml create mode 100644 internal/packets/xml/world/PlaceMoveableObject.xml create mode 100644 internal/packets/xml/world/Play3DSound.xml create mode 100644 internal/packets/xml/world/PlayFlavor.xml create mode 100644 internal/packets/xml/world/PlaySound.xml create mode 100644 internal/packets/xml/world/PlayVoice.xml create mode 100644 internal/packets/xml/world/PlayerHouseAccessUpdateMsg.xml create mode 100644 internal/packets/xml/world/PlayerHouseBaseScreen.xml create mode 100644 internal/packets/xml/world/PlayerHousePurchase.xml create mode 100644 internal/packets/xml/world/PlayerKnockback.xml create mode 100644 internal/packets/xml/world/PlayerPosUpdate.xml create mode 100644 internal/packets/xml/world/PlayerTrade.xml create mode 100644 internal/packets/xml/world/PointOfInterest.xml create mode 100644 internal/packets/xml/world/PredictionUpdateMsg.xml create mode 100644 internal/packets/xml/world/PromoFlagsDetails.xml create mode 100644 internal/packets/xml/world/QuestComplete.xml create mode 100644 internal/packets/xml/world/QuestExamineInfoHeader.xml create mode 100644 internal/packets/xml/world/QuestFactionRewards.xml create mode 100644 internal/packets/xml/world/QuestJournalInspectMsg.xml create mode 100644 internal/packets/xml/world/QuestJournalReply.xml create mode 100644 internal/packets/xml/world/QuestJournalReply_PARSER_ONLY.xml create mode 100644 internal/packets/xml/world/QuestJournalUpdate.xml create mode 100644 internal/packets/xml/world/QuestJournalVisible.xml create mode 100644 internal/packets/xml/world/QuestJournalWaypoint.xml create mode 100644 internal/packets/xml/world/QuestRewardPackMsg.xml create mode 100644 internal/packets/xml/world/QuickBarInit.xml create mode 100644 internal/packets/xml/world/QuickBarUpdateRequest.xml create mode 100644 internal/packets/xml/world/RaidMember.xml create mode 100644 internal/packets/xml/world/RaidUpdate.xml create mode 100644 internal/packets/xml/world/ReadyForTakeOff.xml create mode 100644 internal/packets/xml/world/ReadyToZoneMsg.xml create mode 100644 internal/packets/xml/world/ReceiveOffer.xml create mode 100644 internal/packets/xml/world/RecipeBook.xml create mode 100644 internal/packets/xml/world/RecipeDetailList.xml create mode 100644 internal/packets/xml/world/RecipeDetails.xml create mode 100644 internal/packets/xml/world/RecipeInfo.xml create mode 100644 internal/packets/xml/world/RecipeList.xml create mode 100644 internal/packets/xml/world/RecipeListUnknown.xml create mode 100644 internal/packets/xml/world/RemoteCmdMsg.xml create mode 100644 internal/packets/xml/world/RequestCamp.xml create mode 100644 internal/packets/xml/world/RequestGuildEventDetails.xml create mode 100644 internal/packets/xml/world/RequestGuildInfo.xml create mode 100644 internal/packets/xml/world/RequestRecipeDetail.xml create mode 100644 internal/packets/xml/world/Research.xml create mode 100644 internal/packets/xml/world/Resurrected.xml create mode 100644 internal/packets/xml/world/RewardPackMsg.xml create mode 100644 internal/packets/xml/world/SatMsg.xml create mode 100644 internal/packets/xml/world/SavageBar.xml create mode 100644 internal/packets/xml/world/SelectTradeskill.xml create mode 100644 internal/packets/xml/world/ServerControlFlags.xml create mode 100644 internal/packets/xml/world/ServerDialogClose.xml create mode 100644 internal/packets/xml/world/ServerUpdateTarget.xml create mode 100644 internal/packets/xml/world/SetControlGhost.xml create mode 100644 internal/packets/xml/world/SetDefaultCommand.xml create mode 100644 internal/packets/xml/world/SetPOVGhostCmd.xml create mode 100644 internal/packets/xml/world/SetRemoteCmdsMsg.xml create mode 100644 internal/packets/xml/world/ShowItemCreation.xml create mode 100644 internal/packets/xml/world/ShowRecipeBook.xml create mode 100644 internal/packets/xml/world/ShowWindow.xml create mode 100644 internal/packets/xml/world/Signal.xml create mode 100644 internal/packets/xml/world/SkillInfoItemRequest.xml create mode 100644 internal/packets/xml/world/SkillInfoItemResponse.xml create mode 100644 internal/packets/xml/world/SkillInfoRequest.xml create mode 100644 internal/packets/xml/world/SkillInfoResponse.xml create mode 100644 internal/packets/xml/world/SkillInfoSpellRequest.xml create mode 100644 internal/packets/xml/world/SkillMap.xml create mode 100644 internal/packets/xml/world/SpecialSpellInfo.xml create mode 100644 internal/packets/xml/world/SpellEffects.xml create mode 100644 internal/packets/xml/world/SpellFizzle.xml create mode 100644 internal/packets/xml/world/SpellGainedMsg.xml create mode 100644 internal/packets/xml/world/SpellInfo.xml create mode 100644 internal/packets/xml/world/SpellNoLand.xml create mode 100644 internal/packets/xml/world/SpellSlotMapping.xml create mode 100644 internal/packets/xml/world/StartBroker.xml create mode 100644 internal/packets/xml/world/StartCastSpell.xml create mode 100644 internal/packets/xml/world/StateCmd.xml create mode 100644 internal/packets/xml/world/StoppedLooting.xml create mode 100644 internal/packets/xml/world/SubStruct_UpdateSpellBook.xml create mode 100644 internal/packets/xml/world/SubmitCharCust.xml create mode 100644 internal/packets/xml/world/SupplyDepot.xml create mode 100644 internal/packets/xml/world/SysClient.xml create mode 100644 internal/packets/xml/world/TSEventReaction.xml create mode 100644 internal/packets/xml/world/TargetSpellEffects.xml create mode 100644 internal/packets/xml/world/TeleportDestination.xml create mode 100644 internal/packets/xml/world/TeleportList.xml create mode 100644 internal/packets/xml/world/TeleportWithinZone.xml create mode 100644 internal/packets/xml/world/TintWidgetsMsg.xml create mode 100644 internal/packets/xml/world/TitleUpdate.xml create mode 100644 internal/packets/xml/world/TrackingUpdate.xml create mode 100644 internal/packets/xml/world/TraitsList.xml create mode 100644 internal/packets/xml/world/UIEvent.xml create mode 100644 internal/packets/xml/world/UpdateBank.xml create mode 100644 internal/packets/xml/world/UpdateCreateItem.xml create mode 100644 internal/packets/xml/world/UpdateHouseAccessDataMsg.xml create mode 100644 internal/packets/xml/world/UpdateLoot.xml create mode 100644 internal/packets/xml/world/UpdateMaintainedExamine.xml create mode 100644 internal/packets/xml/world/UpdateMerchant.xml create mode 100644 internal/packets/xml/world/UpdatePlayerMail.xml create mode 100644 internal/packets/xml/world/UpdateRecipeBook.xml create mode 100644 internal/packets/xml/world/UpdateSign.xml create mode 100644 internal/packets/xml/world/UpdateSkillBook.xml create mode 100644 internal/packets/xml/world/UpdateSpellBook.xml create mode 100644 internal/packets/xml/world/UpdateTarget.xml create mode 100644 internal/packets/xml/world/UpdateTitle.xml create mode 100644 internal/packets/xml/world/VoiceChatServer.xml create mode 100644 internal/packets/xml/world/WaypointReplyMsg.xml create mode 100644 internal/packets/xml/world/WaypointSelect.xml create mode 100644 internal/packets/xml/world/WaypointUpdate.xml create mode 100644 internal/packets/xml/world/Weakness.xml create mode 100644 internal/packets/xml/world/WhoChannelQueryReply.xml create mode 100644 internal/packets/xml/world/WhoQueryReply.xml create mode 100644 internal/packets/xml/world/ZoneBgInstanceList.xml create mode 100644 internal/packets/xml/world/ZoneChangeMsg.xml create mode 100644 internal/packets/xml/world/ZoneInfo.xml create mode 100644 internal/packets/xml/world/substruct_AASpellInfo.xml create mode 100644 internal/packets/xml/world/substruct_info_template.xml create mode 100644 internal/packets/xml/world/substruct_item_info.xml create mode 100644 internal/packets/xml/world/substruct_node_info.xml create mode 100644 internal/packets/xml/world/substruct_unknown5_info.xml diff --git a/internal/common/types.go b/internal/common/types.go index 5d97221..dee72a9 100644 --- a/internal/common/types.go +++ b/internal/common/types.go @@ -3,14 +3,14 @@ package common type EQ2DataType int const ( - TypeInt8 EQ2DataType = iota + TypeUint8 EQ2DataType = iota + TypeUint16 + TypeUint32 + TypeUint64 + TypeInt8 TypeInt16 TypeInt32 TypeInt64 - TypeSInt8 - TypeSInt16 - TypeSInt32 - TypeSInt64 TypeChar TypeFloat TypeDouble diff --git a/internal/packets/PARSER.md b/internal/packets/PARSER.md index e98d689..8d2e394 100644 --- a/internal/packets/PARSER.md +++ b/internal/packets/PARSER.md @@ -18,8 +18,8 @@ Fast XML-like parser for binary packet structures with versioning and conditiona | Type | Size | Description | |------|------|-------------| -| `i8`, `i16`, `i32`, `i64` | 1-8 bytes | Unsigned integers | -| `si8`, `si16`, `si32`, `si64` | 1-8 bytes | Signed integers | +| `u8`, `u16`, `u32`, `u64` | 1-8 bytes | Unsigned integers | +| `i8`, `i16`, `i32`, `i64` | 1-8 bytes | Signed integers | | `f32`, `f64`, `double` | 4-8 bytes | Floating point | | `str8`, `str16`, `str32` | Variable | Length-prefixed strings | | `char` | Fixed | Fixed-size byte array | @@ -30,7 +30,7 @@ Fast XML-like parser for binary packet structures with versioning and conditiona ## Multiple Field Names ```xml - + ``` @@ -38,7 +38,7 @@ Fast XML-like parser for binary packet structures with versioning and conditiona ```xml - + ``` @@ -109,9 +109,9 @@ Define reusable field groups that can be injected into packets: - +