2018-12-07 20:18:54 +01:00
|
|
|
namespace NexusForever.Shared.Network.Message
|
2018-10-09 12:03:35 +13:00
|
|
|
{
|
|
|
|
|
public enum GameMessageOpcode
|
|
|
|
|
{
|
|
|
|
|
State = 0x0000,
|
|
|
|
|
State2 = 0x0001,
|
|
|
|
|
ServerHello = 0x0003,
|
|
|
|
|
ServerMaxCharacterLevelAchieved = 0x0036,
|
|
|
|
|
ServerPlayerEnteredWorld = 0x0061,
|
|
|
|
|
ServerAuthEncrypted = 0x0076,
|
2019-04-11 02:59:44 +12:00
|
|
|
ServerLogoutUpdate = 0x0092,
|
2019-04-24 01:23:30 +12:00
|
|
|
ClientActivateUnitCast = 0x0097, // not sure about the name - almost the same as 0x00B3, but also initiates 0x07FD
|
2019-12-04 10:22:32 -08:00
|
|
|
ClientCastSpell = 0x009A,
|
2018-10-09 12:03:35 +13:00
|
|
|
ServerChangeWorld = 0x00AD,
|
2019-10-03 19:46:19 +13:00
|
|
|
ServerAchievementInit = 0x00AE,
|
|
|
|
|
ServerAchievementUpdate = 0x00AF,
|
2019-01-22 15:28:25 +01:00
|
|
|
ClientRequestActionSetChanges = 0x00B1,
|
|
|
|
|
Server00B2 = 0x00B2, // this triggers the client to send 0xB1
|
2019-04-24 01:23:30 +12:00
|
|
|
ClientActivateUnit = 0x00B3,
|
2019-01-07 06:41:03 -06:00
|
|
|
ServerBuybackItemUpdated = 0x00BA,
|
|
|
|
|
ClientBuybackItemFromVendor = 0x00BB,
|
|
|
|
|
ServerBuybackItems = 0x00BC,
|
|
|
|
|
ServerBuybackItemRemoved = 0x00BD,
|
2018-10-09 12:03:35 +13:00
|
|
|
ClientVendorPurchase = 0x00BE,
|
2019-04-11 02:59:44 +12:00
|
|
|
ClientLogoutRequest = 0x00BF,
|
|
|
|
|
ClientLogoutConfirm = 0x00C0,
|
2018-12-12 10:14:35 +13:00
|
|
|
ClientHousingResidencePrivacyLevel = 0x00C9,
|
2019-02-27 08:24:32 +13:00
|
|
|
ServerCostume = 0x00D8,
|
|
|
|
|
ServerCostumeList = 0x00D9,
|
2018-10-09 12:03:35 +13:00
|
|
|
ServerCharacterCreate = 0x00DC,
|
2018-12-06 08:42:42 -06:00
|
|
|
ServerChannelUpdateLoot = 0x00DD,
|
2019-04-24 01:23:30 +12:00
|
|
|
ServerDatacubeUpdateList = 0x00E0,
|
|
|
|
|
ServerDatacubeUpdate = 0x00E1,
|
|
|
|
|
ServerDatacubeVolumeUpdate = 0x00E2,
|
2019-06-27 12:39:41 -07:00
|
|
|
ServerCharacterDeleteResult = 0x00E6,
|
2021-02-21 21:23:41 +13:00
|
|
|
ServerInstanceSettings = 0x00F1, // handler sends 0x00D5 and ClientPlayerMovementSpeedUpdate
|
2020-04-11 13:42:36 -07:00
|
|
|
ClientEnteredWorld = 0x00F2,
|
2018-12-12 10:14:35 +13:00
|
|
|
ServerCharacterFlagsUpdated = 0x00FE,
|
2018-10-09 12:03:35 +13:00
|
|
|
Server0104 = 0x0104, // Galactic Archive
|
2019-06-10 23:20:58 +12:00
|
|
|
ServerGenericError = 0x0106,
|
2019-03-20 10:50:50 -07:00
|
|
|
ClientGuildHolomarkUpdate = 0x010C,
|
2021-08-12 00:06:19 +12:00
|
|
|
ServerHousingBasics = 0x010E,
|
2018-10-09 12:03:35 +13:00
|
|
|
ServerCharacter = 0x010F, // single character
|
2018-10-18 21:58:35 +13:00
|
|
|
ServerItemAdd = 0x0111,
|
2018-10-09 12:03:35 +13:00
|
|
|
ServerCharacterList = 0x0117,
|
2019-03-17 18:56:47 -07:00
|
|
|
ClientMailDelete = 0x011E,
|
|
|
|
|
ClientMailOpen = 0x0122,
|
2019-05-29 07:51:29 +12:00
|
|
|
ClientMailPayCod = 0x0123,
|
2019-03-17 18:56:47 -07:00
|
|
|
ClientMailReturn = 0x0124,
|
|
|
|
|
ClientMailTakeAllFromSelection = 0x0125,
|
|
|
|
|
ClientMailTakeAttachment = 0x0126,
|
|
|
|
|
ClientMailTakeCash = 0x0127,
|
2019-03-28 06:18:08 -07:00
|
|
|
ServerUnlockMount = 0x0129,
|
2020-04-03 21:27:28 -07:00
|
|
|
ClientItemMoveToSupplySatchel = 0x012A,
|
2019-03-10 07:20:37 +13:00
|
|
|
ServerPetCustomizationList = 0x012E,
|
2019-03-10 08:14:35 +13:00
|
|
|
ServerPetCustomisation = 0x012F,
|
2019-02-28 18:49:43 +01:00
|
|
|
ClientRapidTransport = 0x0141,
|
2018-10-18 21:58:35 +13:00
|
|
|
ServerItemDelete = 0x0148,
|
|
|
|
|
ClientItemDelete = 0x0149,
|
2019-10-28 04:14:47 -04:00
|
|
|
ClientEntityInteractChair = 0x014E,
|
2019-03-24 20:25:50 +13:00
|
|
|
ClientRequestAmpReset = 0x0151,
|
2019-03-28 06:18:08 -07:00
|
|
|
ClientItemUseLootBag = 0x015E,
|
2018-10-09 12:03:35 +13:00
|
|
|
ServerCharacterSelectFail = 0x0162,
|
2019-01-07 06:41:03 -06:00
|
|
|
ClientSellItemToVendor = 0x0166,
|
2019-03-17 18:56:47 -07:00
|
|
|
ClientMailSend = 0x0168,
|
2019-01-09 14:39:33 +01:00
|
|
|
ServerAbilityPoints = 0x0169,
|
2019-03-24 20:25:50 +13:00
|
|
|
ClientNonSpellActionSetChanges = 0x016A,
|
2018-12-12 10:14:35 +13:00
|
|
|
ServerShowActionBar = 0x016C,
|
2019-06-04 08:04:17 -07:00
|
|
|
ClientInnateChange = 0x016F,
|
2019-01-22 15:28:25 +01:00
|
|
|
ClientChangeActiveActionSet = 0x0174,
|
|
|
|
|
ServerChangeActiveActionSet = 0x0175,
|
2019-04-14 14:28:15 -07:00
|
|
|
ClientToggleWeapons = 0x0177,
|
2019-06-07 03:34:51 -04:00
|
|
|
ServerTutorial = 0x0179,
|
2019-01-09 14:39:33 +01:00
|
|
|
ServerSpellUpdate = 0x017B,
|
2018-10-18 21:58:35 +13:00
|
|
|
ClientItemSplit = 0x017D,
|
|
|
|
|
ServerItemStackCountUpdate = 0x017F,
|
|
|
|
|
ClientItemMove = 0x0182,
|
2020-04-03 21:27:28 -07:00
|
|
|
ClientItemMoveFromSupplySatchel = 0x0184,
|
2018-10-09 12:03:35 +13:00
|
|
|
ClientEntitySelect = 0x0185,
|
|
|
|
|
ServerFlightPathUpdate = 0x0188,
|
2018-12-07 20:18:54 +01:00
|
|
|
ServerTitleSet = 0x0189,
|
2019-01-03 00:53:14 +13:00
|
|
|
ServerTitleUpdate = 0x018A,
|
|
|
|
|
ServerTitles = 0x018B,
|
2020-04-03 21:27:28 -07:00
|
|
|
ServerSupplySatchelUpdate = 0x0199,
|
2018-10-09 12:03:35 +13:00
|
|
|
ServerPlayerChanged = 0x019B,
|
2019-01-09 14:39:33 +01:00
|
|
|
ServerActionSet = 0x019D,
|
2019-06-04 08:04:17 -07:00
|
|
|
ServerPlayerInnateSet = 0x019F,
|
2019-01-09 14:39:33 +01:00
|
|
|
ServerAbilities = 0x01A0,
|
2019-03-24 20:25:50 +13:00
|
|
|
ServerAmpList = 0x01A3,
|
2020-07-04 17:48:27 +12:00
|
|
|
ServerReputationUpdate = 0x01A5,
|
2019-01-06 05:03:46 -05:00
|
|
|
ServerPathUpdateXP = 0x01AA,
|
2018-12-12 10:14:35 +13:00
|
|
|
ServerExperienceGained = 0x01AC,
|
2019-03-28 06:18:08 -07:00
|
|
|
ServerUnlockVanityPet = 0x01AE,
|
2019-03-10 08:14:35 +13:00
|
|
|
ClientVehicleDisembark = 0x01AF,
|
2019-05-30 22:58:26 +02:00
|
|
|
ServerZoneMap = 0x01B4,
|
2021-02-21 21:23:41 +13:00
|
|
|
ServerChatAction = 0x01B5,
|
|
|
|
|
ServerChatFlag = 0x01B7,
|
|
|
|
|
ClientChatJoin = 0x01BA,
|
|
|
|
|
ServerChatJoinResult = 0x01BB,
|
2018-10-09 12:03:35 +13:00
|
|
|
ServerChatJoin = 0x01BC,
|
2021-02-21 21:23:41 +13:00
|
|
|
ClientChatLeave = 0x01BE,
|
|
|
|
|
ClientChatKick = 0x01BD,
|
|
|
|
|
ServerChatLeave = 0x01BF,
|
|
|
|
|
ServerChatList = 0x01C0,
|
2018-11-18 20:42:19 +00:00
|
|
|
ServerChatAccept = 0x01C2,
|
2018-12-07 20:18:54 +01:00
|
|
|
ClientChat = 0x01C3,
|
2018-11-18 20:42:19 +00:00
|
|
|
ServerChat = 0x01C8,
|
2021-02-21 21:23:41 +13:00
|
|
|
ClientChatMute = 0x01CE,
|
|
|
|
|
ClientChatModerator = 0x01CD,
|
|
|
|
|
ClientChatOwner = 0x01CF,
|
|
|
|
|
ClientChatPassword = 0x01D0,
|
|
|
|
|
ClientChatList = 0x01D2,
|
2019-03-20 10:50:50 -07:00
|
|
|
ServerChatResult = 0x01D3,
|
2019-03-04 05:45:41 -08:00
|
|
|
ClientChatWhisper = 0x01D4,
|
2021-08-10 20:51:42 -07:00
|
|
|
ServerChatWhisperFail = 0x01D9,
|
2019-03-04 05:45:41 -08:00
|
|
|
ServerChatZoneChange = 0x01DA,
|
2020-04-10 21:17:48 -07:00
|
|
|
ServerCinematicComplete = 0x0210,
|
|
|
|
|
ServerCinematic0211 = 0x0211,
|
|
|
|
|
ServerCinematic0212 = 0x0212,
|
|
|
|
|
ServerCinematicActorAttach = 0x0213,
|
|
|
|
|
ServerCinematicCameraSpline = 0x0215,
|
|
|
|
|
ServerCinematic0216 = 0x0216,
|
|
|
|
|
ServerCinematicTransitionDurationSet = 0x0222,
|
|
|
|
|
ServerCinematicVisualEffectEnd = 0x0225,
|
|
|
|
|
ServerCinematicScene = 0x0227,
|
|
|
|
|
ServerCinematicTransition = 0x0218,
|
|
|
|
|
ServerCinematicVisualEffect = 0x021C,
|
|
|
|
|
ServerCinematicActorVisibility = 0x0220,
|
|
|
|
|
ServerCinematicActor = 0x0228,
|
|
|
|
|
ServerCinematicText = 0x022A,
|
|
|
|
|
ServerCinematic022B = 0x022B,
|
|
|
|
|
ServerCinematicShowAnimate = 0x022E,
|
|
|
|
|
ServerCinematicActorAngle = 0x0230,
|
|
|
|
|
ServerCinematicNotify = 0x0232,
|
2018-10-09 12:03:35 +13:00
|
|
|
Server0237 = 0x0237, // UI related, opens or closes different UI windows (bank, barber, ect...)
|
|
|
|
|
ClientPing = 0x0241,
|
|
|
|
|
ClientEncrypted = 0x0244,
|
|
|
|
|
ServerCombatLog = 0x0247,
|
2021-08-12 00:06:19 +12:00
|
|
|
ServerHousingCommunityRename = 0x024D,
|
2019-02-27 08:24:32 +13:00
|
|
|
ClientCostumeSave = 0x0255,
|
|
|
|
|
ClientCostumeSet = 0x0256,
|
|
|
|
|
ServerCostumeSave = 0x0257,
|
|
|
|
|
ServerCostumeItemUnlockMultiple = 0x0258,
|
|
|
|
|
ServerCostumeItemUnlock = 0x0259,
|
|
|
|
|
ServerCostumeItemList = 0x025A,
|
2018-10-09 12:03:35 +13:00
|
|
|
ClientCharacterCreate = 0x025B,
|
|
|
|
|
ClientPacked = 0x025C, // the same as ClientEncrypted except the contents isn't encrypted?
|
2018-12-07 20:18:54 +01:00
|
|
|
ServerPlayerCreate = 0x025E,
|
2018-10-09 12:03:35 +13:00
|
|
|
ServerEntityCreate = 0x0262,
|
|
|
|
|
ClientCharacterDelete = 0x0352,
|
2019-06-10 23:20:58 +12:00
|
|
|
ServerEntityDestroy = 0x0355,
|
|
|
|
|
Server0357 = 0x0357,
|
|
|
|
|
ClientQuestAbandon = 0x035A,
|
|
|
|
|
ClientQuestAccept = 0x035B,
|
|
|
|
|
ServerQuestStateChange = 0x035C,
|
|
|
|
|
ClientQuestComplete = 0x035D,
|
|
|
|
|
ClientQuestSetIgnore = 0x035E,
|
2018-12-12 10:14:35 +13:00
|
|
|
ServerQuestInit = 0x035F,
|
2019-06-10 23:20:58 +12:00
|
|
|
ServerQuestObjectiveUpdate = 0x0361,
|
|
|
|
|
ClientQuestSetTracked = 0x0364,
|
|
|
|
|
ClientQuestRetry = 0x0365,
|
2019-12-06 05:18:55 -05:00
|
|
|
ServerForceKick = 0x036A,
|
2018-10-09 12:03:35 +13:00
|
|
|
ClientEmote = 0x037E,
|
2019-02-27 08:24:32 +13:00
|
|
|
ClientCostumeItemForget = 0x038B,
|
2019-04-16 01:21:48 +12:00
|
|
|
ClientPackedWorld = 0x038C,
|
2018-10-09 12:03:35 +13:00
|
|
|
Server03AA = 0x03AA, // friendship account related
|
|
|
|
|
Server03BE = 0x03BE, // friendship related
|
|
|
|
|
ServerRealmInfo = 0x03DB,
|
2018-12-07 20:18:54 +01:00
|
|
|
ServerRealmEncrypted = 0x03DC,
|
2018-12-01 22:10:58 -05:00
|
|
|
ClientCheat = 0x03E0,
|
2019-04-03 03:23:07 -04:00
|
|
|
ServerRealmBroadcast = 0x03E1,
|
2019-04-07 22:35:15 +12:00
|
|
|
ClientItemGenericUnlock = 0x0400,
|
2019-06-10 23:20:58 +12:00
|
|
|
ClientQuestShareResult = 0x045E,
|
|
|
|
|
ClientQuestShare = 0x045F,
|
2019-03-20 10:50:50 -07:00
|
|
|
ClientGuildRegister = 0x0481,
|
2021-01-04 22:16:11 +13:00
|
|
|
ServerGuildFlagUpdate = 0x048B,
|
|
|
|
|
ServerGuildInfoMessageUpdate = 0x048F,
|
2019-03-20 10:50:50 -07:00
|
|
|
ClientGuildInviteResponse = 0x0490,
|
|
|
|
|
ServerGuildInvite = 0x0491,
|
|
|
|
|
ServerGuildJoin = 0x0493,
|
|
|
|
|
ServerGuildRemove = 0x0495,
|
|
|
|
|
ServerGuildInit = 0x0497, // guild info
|
|
|
|
|
ServerGuildRoster = 0x04A0,
|
|
|
|
|
ServerGuildMemberRemove = 0x04A2,
|
|
|
|
|
ServerGuildMemberChange = 0x04A3,
|
|
|
|
|
ServerGuildMotdUpdate = 0x04A5,
|
|
|
|
|
ServerGuildNameplateAdd = 0x04AC,
|
|
|
|
|
ServerEntityGuildAffiliation = 0x04AE,
|
2021-08-12 00:06:19 +12:00
|
|
|
ServerGuildRename = 0x04AF,
|
2019-03-20 10:50:50 -07:00
|
|
|
ClientGuildOperation = 0x04B1,
|
|
|
|
|
ServerGuildRankChange = 0x04C5,
|
|
|
|
|
ServerGuildResult = 0x04C9,
|
2019-12-04 10:22:32 -08:00
|
|
|
ClientCastSpellContinuous = 0x04DB,
|
2021-08-12 00:06:19 +12:00
|
|
|
ServerHousingPlacedResidencesList = 0x04DD,
|
2018-12-12 10:14:35 +13:00
|
|
|
ServerHousingResidenceDecor = 0x04DE,
|
|
|
|
|
ServerHousingProperties = 0x04DF,
|
|
|
|
|
ServerHousingPlots = 0x04E1,
|
2019-03-28 06:18:08 -07:00
|
|
|
ClientItemUseDecor = 0x04E7,
|
2021-08-12 00:06:19 +12:00
|
|
|
ClientHousingCommunityRemoval = 0x04EA,
|
2018-12-12 10:14:35 +13:00
|
|
|
ClientHousingCrateAllDecor = 0x04EC,
|
2021-08-12 00:06:19 +12:00
|
|
|
ClientHousingCommunityDonate = 0x04F5,
|
2018-12-12 10:14:35 +13:00
|
|
|
ServerHousingNeighbors = 0x0507,
|
|
|
|
|
ServerHousingVendorList = 0x0508,
|
|
|
|
|
ClientHousingRemodel = 0x050A,
|
|
|
|
|
ClientHousingDecorUpdate = 0x050B,
|
2020-04-12 04:30:31 -05:00
|
|
|
ClientHousingFlagsUpdate = 0x050E,
|
2018-12-12 10:14:35 +13:00
|
|
|
ClientHousingPlugUpdate = 0x0510,
|
|
|
|
|
ClientHousingVendorList = 0x0525,
|
2019-04-10 06:39:25 +12:00
|
|
|
ServerHousingRandomCommunityList = 0x0526,
|
|
|
|
|
ServerHousingRandomResidenceList = 0x0527,
|
2018-12-12 10:14:35 +13:00
|
|
|
ClientHousingRenameProperty = 0x0529,
|
2021-08-12 00:06:19 +12:00
|
|
|
ClientHousingPlacedResidencesList = 0x052A,
|
|
|
|
|
ClientHousingCommunityPlacement = 0x052B,
|
2019-04-10 06:39:25 +12:00
|
|
|
ClientHousingRandomCommunityList = 0x052C,
|
|
|
|
|
ClientHousingRandomResidenceList = 0x052D,
|
2021-08-12 00:06:19 +12:00
|
|
|
ClientHousingReturn = 0x052E,
|
2018-12-12 10:14:35 +13:00
|
|
|
ClientHousingVisit = 0x0531,
|
2021-08-12 00:06:19 +12:00
|
|
|
ServerHousingOwnership = 0x0533,
|
2019-11-25 02:27:30 -05:00
|
|
|
ServerHousingResult = 0x0536,
|
2021-08-12 00:06:19 +12:00
|
|
|
ClientHousingCommunityPrivacyLevel = 0x0538,
|
2018-12-12 10:14:35 +13:00
|
|
|
ClientHousingEditMode = 0x053C,
|
|
|
|
|
ServerSpellList = 0x0551,
|
2019-11-09 08:02:41 +01:00
|
|
|
ClientInspectPlayerRequest = 0x0552,
|
|
|
|
|
ServerInspectPlayerResponse = 0x0553,
|
2018-10-18 21:58:35 +13:00
|
|
|
ServerItemSwap = 0x0568,
|
|
|
|
|
ServerItemMove = 0x0569,
|
2019-04-02 09:06:30 -07:00
|
|
|
ServerItemError = 0x056A,
|
2019-04-08 12:45:19 +02:00
|
|
|
BiInputKeySet = 0x056F,
|
|
|
|
|
ClientRequestInputKeySet = 0x0570,
|
|
|
|
|
ClientSetInputKeySet = 0x0571,
|
2018-10-09 12:03:35 +13:00
|
|
|
ClientHelloRealm = 0x058F,
|
|
|
|
|
ServerAuthAccepted = 0x0591,
|
|
|
|
|
ClientHelloAuth = 0x0592,
|
2019-04-11 02:59:44 +12:00
|
|
|
ServerLogout = 0x0594,
|
2019-03-25 19:48:16 -04:00
|
|
|
ClientPlayerInfoRequest = 0x0597,
|
|
|
|
|
ServerPlayerInfoBasicResponse = 0x0598,
|
|
|
|
|
ServerPlayerInfoFullResponse = 0x0599,
|
2019-03-17 18:56:47 -07:00
|
|
|
ServerMailResult = 0x05A2,
|
|
|
|
|
ServerMailAvailable = 0x05A3,
|
|
|
|
|
ServerMailUnavailable = 0x05A7,
|
|
|
|
|
ServerMailTakeAttachment = 0x05A8,
|
2019-01-16 13:51:33 +01:00
|
|
|
Server0635 = 0x0635,
|
2019-01-10 03:24:44 +13:00
|
|
|
ServerMovementControl = 0x0636, // handler sends 0x0635 and 0x063A
|
2018-10-09 12:03:35 +13:00
|
|
|
ClientEntityCommand = 0x0637, // bidirectional? packet has both read and write handlers
|
|
|
|
|
ServerEntityCommand = 0x0638, // bidirectional? packet has both read and write handlers
|
2019-01-16 13:51:33 +01:00
|
|
|
Server0639 = 0x0639, // mount up or something
|
2020-04-02 15:01:49 -07:00
|
|
|
ClientZoneChange = 0x063A,
|
2018-12-12 10:14:35 +13:00
|
|
|
ClientPlayerMovementSpeedUpdate = 0x063B,
|
2019-03-27 17:14:43 +13:00
|
|
|
ServerAuthDenied = 0x063D,
|
2018-12-12 10:14:35 +13:00
|
|
|
ServerOwnedCommodityOrders = 0x064C,
|
|
|
|
|
ServerOwnedItemAuctions = 0x064D,
|
2021-07-13 20:46:00 +12:00
|
|
|
ServerPendingWorldRemovalCancel = 0x0688,
|
|
|
|
|
ServerPendingWorldRemoval = 0x0689,
|
2019-03-24 09:37:28 +01:00
|
|
|
ClientRequestPlayed = 0x0693,
|
|
|
|
|
ServerPlayerPlayed = 0x0694,
|
2019-01-06 05:03:46 -05:00
|
|
|
ClientPathActivate = 0x06B2,
|
|
|
|
|
ServerPathActivateResult = 0x06B3,
|
|
|
|
|
ServerPathRefresh = 0x06B4,
|
|
|
|
|
ServerPathEpisodeProgress = 0x06B5,
|
|
|
|
|
Server06B6 = 0x06B6,
|
|
|
|
|
Server06B7 = 0x06B7,
|
|
|
|
|
Server06B8 = 0x06B8,
|
|
|
|
|
Server06B9 = 0x06B9,
|
|
|
|
|
ServerPathMissionActivate = 0x06BA,
|
2019-01-10 03:24:44 +13:00
|
|
|
ServerPathMissionUpdate = 0x06BB,
|
2018-10-09 12:03:35 +13:00
|
|
|
ServerPathLog = 0x06BC,
|
2019-01-06 05:03:46 -05:00
|
|
|
ClientPathUnlock = 0x06BD,
|
|
|
|
|
ServerPathUnlockResult = 0x06BE,
|
|
|
|
|
ServerPathCurrentEpisode = 0x06BF,
|
2019-03-10 07:20:37 +13:00
|
|
|
Server068B = 0x068B, // pet customization something
|
|
|
|
|
ServerUnlockPetFlair = 0x068D,
|
|
|
|
|
ServerChangePetStance = 0x068F,
|
2019-01-11 21:19:28 -08:00
|
|
|
ServerPublicEventStart = 0x0700,
|
2021-11-24 18:55:36 -08:00
|
|
|
ServerQueueFinish = 0x0715,
|
|
|
|
|
ServerQueueStatus = 0x0717,
|
2019-11-09 01:08:02 -06:00
|
|
|
ClientRandomRollRequest = 0x071B,
|
|
|
|
|
ServerRandomRollResponse = 0x071C,
|
2020-04-10 21:17:48 -07:00
|
|
|
ClientCinematicState = 0x0720,
|
2020-05-17 13:09:46 -07:00
|
|
|
ServerStoryCommunicatorShow = 0x073A,
|
2019-10-28 04:14:47 -04:00
|
|
|
ServerEntityInteractiveUpdate = 0x0755,
|
2020-04-11 13:42:36 -07:00
|
|
|
ServerCommunicatorMessage = 0x0757,
|
2020-05-17 13:09:46 -07:00
|
|
|
ServerStoryPanelHide = 0x0759,
|
|
|
|
|
ServerStoryPanelShow = 0x075A,
|
2019-10-03 19:46:19 +13:00
|
|
|
ServerRealmFirstAchievement = 0x075F,
|
2018-10-09 12:03:35 +13:00
|
|
|
ServerRealmList = 0x0761, // bidirectional? packet has both read and write handlers
|
|
|
|
|
ServerRealmMessages = 0x0763,
|
2021-08-12 00:06:19 +12:00
|
|
|
ClientHousingCommunityRename = 0x0788,
|
2018-12-07 20:18:54 +01:00
|
|
|
ClientTitleSet = 0x078E,
|
2019-03-27 20:35:02 +13:00
|
|
|
ServerNewRealm = 0x07A1,
|
2018-10-09 12:03:35 +13:00
|
|
|
ClientRealmList = 0x07A4,
|
2019-03-13 16:05:46 -07:00
|
|
|
ClientReplayLevelRequest = 0x07A5,
|
2019-03-10 07:20:37 +13:00
|
|
|
ClientCharacterSelect = 0x07DD,
|
2018-10-09 12:03:35 +13:00
|
|
|
ClientCharacterList = 0x07E0,
|
2019-03-17 18:56:47 -07:00
|
|
|
ClientEntityInteract = 0x07EA,
|
2019-03-10 08:14:35 +13:00
|
|
|
ClientPetCustomisation = 0x07ED,
|
2019-03-27 20:35:02 +13:00
|
|
|
ClientSelectRealm = 0x07DF,
|
2019-01-17 01:42:55 +13:00
|
|
|
ServerSpellGo = 0x07F4,
|
2019-01-09 14:39:33 +01:00
|
|
|
Server07F5 = 0x07F5, // spell related
|
|
|
|
|
Server07F6 = 0x07F6, // spell related
|
|
|
|
|
Server07F7 = 0x07F7, // spell related
|
|
|
|
|
Server07F8 = 0x07F8, // spell related
|
|
|
|
|
Server07F9 = 0x07F9, // spell related
|
|
|
|
|
Server07FA = 0x07FA, // spell related
|
2019-03-01 07:06:55 +13:00
|
|
|
Server07FB = 0x07FB, // spell miss info?
|
2019-01-17 01:42:55 +13:00
|
|
|
ServerSpellCastResult = 0x07FC,
|
2019-01-09 14:39:33 +01:00
|
|
|
Server07FD = 0x07FD, // spell related
|
2019-03-10 07:20:37 +13:00
|
|
|
ServerSpellFinish = 0x07FE,
|
2019-01-17 01:42:55 +13:00
|
|
|
ServerSpellStart = 0x07FF,
|
2019-04-08 04:26:20 -07:00
|
|
|
ClientSpellStopCast = 0x0801,
|
2019-03-10 07:20:37 +13:00
|
|
|
ClientCancelEffect = 0x0802,
|
2019-03-01 07:06:55 +13:00
|
|
|
ServerCooldown = 0x0804,
|
2019-01-16 13:51:33 +01:00
|
|
|
Server0811 = 0x0811, // spell related: broadcast parts of 0x07FF?
|
2019-11-29 19:47:27 -05:00
|
|
|
ServerSpellBuffRemove = 0x0813,
|
2019-01-16 13:51:33 +01:00
|
|
|
Server0814 = 0x0814, // spell related
|
|
|
|
|
Server0816 = 0x0816, // spell related: broadcast parts of 0x07FF?
|
|
|
|
|
Server0817 = 0x0817, // spell related
|
2019-11-29 19:47:27 -05:00
|
|
|
Server0818 = 0x0818,
|
2019-01-11 21:19:28 -08:00
|
|
|
ClientStorefrontPurchaseAccount = 0x0828,
|
|
|
|
|
ClientStorefrontPurchaseCharacter = 0x082A,
|
2018-10-09 12:03:35 +13:00
|
|
|
ClientStorefrontRequestCatalog = 0x082D,
|
2019-03-10 07:20:37 +13:00
|
|
|
ClientSummonVanityPet = 0x082F,
|
2019-05-27 10:38:59 -07:00
|
|
|
ServerTimeOfDay = 0x0845,
|
2018-10-09 12:03:35 +13:00
|
|
|
Server0854 = 0x0854, // crafting schematic
|
|
|
|
|
Server0856 = 0x0856, // tradeskills
|
2019-03-10 08:14:35 +13:00
|
|
|
ServerVehiclePassengerAdd = 0x086F,
|
2020-04-10 21:17:48 -07:00
|
|
|
ServerEntityCCStateSet = 0x087F,
|
2019-04-03 02:48:58 -04:00
|
|
|
ServerUnitEnteredCombat = 0x089A,
|
2019-03-10 07:20:37 +13:00
|
|
|
Server089B = 0x089B, // mount related
|
2018-10-09 12:03:35 +13:00
|
|
|
Server08B3 = 0x08B3,
|
2019-01-06 05:03:46 -05:00
|
|
|
ServerSetUnitPathType = 0x08B8,
|
2019-03-10 08:14:35 +13:00
|
|
|
ServerVehiclePassengerRemove = 0x08C7,
|
2019-10-28 04:14:47 -04:00
|
|
|
ServerUnitSetChair = 0x08CF,
|
2019-03-10 08:14:35 +13:00
|
|
|
ServerEntityVisualUpdate = 0x0905,
|
2019-01-16 13:51:33 +01:00
|
|
|
Server0908 = 0x0908,
|
2019-01-07 06:41:03 -06:00
|
|
|
ServerVendorItemsUpdated = 0x090B,
|
2019-02-27 08:24:32 +13:00
|
|
|
ClientCostumeItemUnlock = 0x090F,
|
2019-12-04 10:22:32 -08:00
|
|
|
ServerSpellAbilityCharges = 0x0914,
|
2019-09-23 17:16:59 +12:00
|
|
|
ServerEntitlement = 0x0918,
|
2019-06-07 03:35:25 -04:00
|
|
|
ServerCombatReward = 0x0919,
|
2019-03-01 07:06:55 +13:00
|
|
|
ServerCooldownList = 0x091B,
|
2019-03-21 06:45:41 -07:00
|
|
|
ServerRewardPropertySet = 0x092C,
|
2019-02-21 22:47:43 +01:00
|
|
|
ServerUpdateHealth = 0x092F,
|
2018-10-18 21:58:35 +13:00
|
|
|
ServerItemVisualUpdate = 0x0933,
|
2019-03-10 08:14:35 +13:00
|
|
|
ServerEntityFaction = 0x0934,
|
2019-02-21 22:47:43 +01:00
|
|
|
ServerEntityStatUpdateFloat = 0x0935,
|
2019-04-15 08:30:43 +12:00
|
|
|
ServerEntityStatUpdateInteger = 0x0938,
|
2019-01-16 13:51:33 +01:00
|
|
|
Server093A = 0x093A,
|
2018-10-18 02:34:47 -07:00
|
|
|
ServerEmote = 0x093C,
|
2019-03-28 06:18:08 -07:00
|
|
|
ClientItemUse = 0x0943,
|
2018-11-19 11:03:34 +00:00
|
|
|
ClientWhoRequest = 0x0959,
|
|
|
|
|
ServerWhoResponse = 0x095A,
|
2019-06-04 21:05:44 -07:00
|
|
|
ServerAccountCurrencySet = 0x0966,
|
|
|
|
|
ServerAccountCurrencyGrant = 0x0967,
|
2019-02-27 08:24:32 +13:00
|
|
|
ServerAccountEntitlements = 0x0968,
|
2019-01-11 21:19:28 -08:00
|
|
|
ServerAccountItems = 0x096D,
|
2019-09-23 17:16:59 +12:00
|
|
|
ServerAccountEntitlement = 0x0973,
|
2019-01-11 21:19:28 -08:00
|
|
|
ServerAccountItemCooldownSet = 0x0974,
|
|
|
|
|
ServerAccountItemAdd = 0x0975,
|
|
|
|
|
ServerAccountItemsPending = 0x0979,
|
2020-04-27 10:18:38 -07:00
|
|
|
ServerAccountTier = 0x097F,
|
2019-02-27 08:24:32 +13:00
|
|
|
ServerGenericUnlockList = 0x0981,
|
|
|
|
|
ServerGenericUnlock = 0x0982,
|
2019-01-11 21:19:28 -08:00
|
|
|
ServerGenericUnlockResult = 0x0985,
|
|
|
|
|
ServerStoreFinalise = 0x0987,
|
|
|
|
|
ServerStoreCategories = 0x0988,
|
|
|
|
|
ServerStoreOffers = 0x098B,
|
2018-10-09 12:03:35 +13:00
|
|
|
}
|
|
|
|
|
}
|