TrinityCore
Opcodes.h
Go to the documentation of this file.
1/*
2 * This file is part of the TrinityCore Project. See AUTHORS file for Copyright information
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
21
22#ifndef _OPCODES_H
23#define _OPCODES_H
24
25#include "Define.h"
26#include <string>
27
29{
33
35};
36
38{
39 MAX_OPCODE = 0x3FFF,
42 NULL_OPCODE = 0xBADD
43};
44
46{
61 CMSG_ADD_TOY = 0x32B5,
320 CMSG_DF_JOIN = 0x360A,
333 CMSG_EMOTE = 0x3555,
440 CMSG_INSPECT = 0x353D,
633 CMSG_PING = 0x3768,
791 CMSG_SET_PVP = 0x32CD,
884 CMSG_USE_TOY = 0x32B7,
894 CMSG_WHO = 0x3681,
895 CMSG_WHO_IS = 0x3680,
898};
899
901{
1106 SMSG_CHAT = 0x2BAD,
1223 SMSG_EMOTE = 0x27BE,
1756 SMSG_PONG = 0x304E,
2073 SMSG_WHO = 0x2BAE,
2074 SMSG_WHO_IS = 0x26A2,
2083
2084 // Opcodes that are not generated automatically
2085 SMSG_ACCOUNT_HEIRLOOM_UPDATE = 0x25B0, // no client handler
2088
2089 // Deleted opcodes, here only to allow compile
2091};
2092
2093inline bool IsInstanceOnlyOpcode(uint32 opcode)
2094{
2095 switch (opcode)
2096 {
2097 case SMSG_QUEST_GIVER_STATUS: // ClientQuest
2098 case SMSG_DUEL_REQUESTED: // Client
2099 case SMSG_DUEL_IN_BOUNDS: // Client
2100 case SMSG_QUERY_TIME_RESPONSE: // Client
2101 case SMSG_DUEL_WINNER: // Client
2102 case SMSG_DUEL_COMPLETE: // Client
2103 case SMSG_DUEL_OUT_OF_BOUNDS: // Client
2104 case SMSG_ATTACK_STOP: // Client
2105 case SMSG_ATTACK_START: // Client
2106 case SMSG_MOUNT_RESULT: // Client
2107 return true;
2108 default:
2109 return false;
2110 }
2111}
2112
2115{
2116 STATUS_AUTHED = 0, // Player authenticated (_player == NULL, m_playerRecentlyLogout = false or will be reset before handler call, m_GUID have garbage)
2117 STATUS_LOGGEDIN, // Player in game (_player != NULL, m_GUID == _player->GetGUID(), inWorld())
2118 STATUS_TRANSFER, // Player transferring to another map (_player != NULL, m_GUID == _player->GetGUID(), !inWorld())
2119 STATUS_LOGGEDIN_OR_RECENTLY_LOGGOUT, // _player != NULL or _player == NULL && m_playerRecentlyLogout && m_playerLogout, m_GUID store last _player guid)
2120 STATUS_NEVER, // Opcode not accepted from client (deprecated or server side only)
2121 STATUS_UNHANDLED // Opcode not handled yet
2123
2125{
2126 PROCESS_INPLACE = 0, //process packet whenever we receive it - mostly for non-handled or non-implemented packets
2127 PROCESS_THREADUNSAFE, //packet is not thread-safe - process it in World::UpdateSessions()
2128 PROCESS_THREADSAFE //packet is thread-safe - process it in Map::Update()
2130
2131class WorldPacket;
2132class WorldSession;
2133
2135{
2136public:
2137 OpcodeHandler(char const* name, SessionStatus status) : Name(name), Status(status) { }
2138 virtual ~OpcodeHandler() { }
2139
2140 char const* Name;
2142};
2143
2145{
2146public:
2147 ClientOpcodeHandler(char const* name, SessionStatus status, PacketProcessing processing)
2148 : OpcodeHandler(name, status), ProcessingPlace(processing) { }
2149
2150 virtual void Call(WorldSession* session, WorldPacket& packet) const = 0;
2151
2153};
2154
2156{
2157public:
2158 ServerOpcodeHandler(char const* name, SessionStatus status, ConnectionType conIdx)
2159 : OpcodeHandler(name, status), ConnectionIndex(conIdx) { }
2160
2162};
2163
2165{
2166 public:
2167 OpcodeTable();
2168
2169 OpcodeTable(OpcodeTable const&) = delete;
2171
2172 ~OpcodeTable();
2173
2174 void Initialize();
2175
2177 {
2178 return _internalTableClient[index];
2179 }
2180
2182 {
2183 return _internalTableServer[index];
2184 }
2185
2186 private:
2187 bool ValidateClientOpcode(OpcodeClient opcode, char const* name) const;
2188 template<typename Handler, Handler HandlerFunction>
2189 void ValidateAndSetClientOpcode(OpcodeClient opcode, char const* name, SessionStatus status, PacketProcessing processing);
2190
2191 void ValidateAndSetServerOpcode(OpcodeServer opcode, char const* name, SessionStatus status, ConnectionType conIdx);
2192
2195};
2196
2198
2200std::string GetOpcodeNameForLogging(OpcodeClient opcode);
2201std::string GetOpcodeNameForLogging(OpcodeServer opcode);
2202
2203#endif
int8_t int8
Definition: Define.h:140
uint16_t uint16
Definition: Define.h:143
uint32_t uint32
Definition: Define.h:142
ClientOpcodeHandler(char const *name, SessionStatus status, PacketProcessing processing)
Definition: Opcodes.h:2147
PacketProcessing ProcessingPlace
Definition: Opcodes.h:2152
virtual void Call(WorldSession *session, WorldPacket &packet) const =0
virtual ~OpcodeHandler()
Definition: Opcodes.h:2138
char const * Name
Definition: Opcodes.h:2140
SessionStatus Status
Definition: Opcodes.h:2141
OpcodeHandler(char const *name, SessionStatus status)
Definition: Opcodes.h:2137
OpcodeTable(OpcodeTable const &)=delete
ClientOpcodeHandler const * operator[](OpcodeClient index) const
Definition: Opcodes.h:2176
ServerOpcodeHandler const * operator[](OpcodeServer index) const
Definition: Opcodes.h:2181
OpcodeTable & operator=(OpcodeTable const &)=delete
ServerOpcodeHandler * _internalTableServer[NUM_OPCODE_HANDLERS]
Definition: Opcodes.h:2194
ClientOpcodeHandler * _internalTableClient[NUM_OPCODE_HANDLERS]
Definition: Opcodes.h:2193
void ValidateAndSetClientOpcode(OpcodeClient opcode, char const *name, SessionStatus status, PacketProcessing processing)
Definition: Opcodes.cpp:90
~OpcodeTable()
Definition: Opcodes.cpp:57
void Initialize()
Correspondence between opcodes and their names.
Definition: Opcodes.cpp:134
bool ValidateClientOpcode(OpcodeClient opcode, char const *name) const
Definition: Opcodes.cpp:66
void ValidateAndSetServerOpcode(OpcodeServer opcode, char const *name, SessionStatus status, ConnectionType conIdx)
Definition: Opcodes.cpp:98
ServerOpcodeHandler(char const *name, SessionStatus status, ConnectionType conIdx)
Definition: Opcodes.h:2158
ConnectionType ConnectionIndex
Definition: Opcodes.h:2161
Player session in the World.
Definition: WorldSession.h:963
ConnectionType
Definition: Opcodes.h:29
OpcodeClient
Definition: Opcodes.h:46
std::string GetOpcodeNameForLogging(OpcodeClient opcode)
Lookup opcode name for human understandable logging.
Definition: Opcodes.cpp:2205
SessionStatus
Player state.
Definition: Opcodes.h:2115
OpcodeTable opcodeTable
Definition: Opcodes.cpp:38
bool IsInstanceOnlyOpcode(uint32 opcode)
Definition: Opcodes.h:2093
OpcodeServer
Definition: Opcodes.h:901
OpcodeMisc
Definition: Opcodes.h:38
PacketProcessing
Definition: Opcodes.h:2125
@ MAX_CONNECTION_TYPES
Definition: Opcodes.h:32
@ CONNECTION_TYPE_INSTANCE
Definition: Opcodes.h:31
@ CONNECTION_TYPE_DEFAULT
Definition: Opcodes.h:34
@ CONNECTION_TYPE_REALM
Definition: Opcodes.h:30
@ CMSG_TIME_SYNC_RESPONSE
Definition: Opcodes.h:848
@ CMSG_PET_CAST_SPELL
Definition: Opcodes.h:628
@ CMSG_MERGE_ITEM_WITH_GUILD_BANK_ITEM
Definition: Opcodes.h:494
@ CMSG_GET_UNDELETE_CHARACTER_COOLDOWN_STATUS
Definition: Opcodes.h:383
@ CMSG_REPLACE_TROPHY
Definition: Opcodes.h:697
@ CMSG_LOOT_ITEM
Definition: Opcodes.h:476
@ CMSG_QUERY_PAGE_TEXT
Definition: Opcodes.h:648
@ CMSG_TURN_IN_PETITION
Definition: Opcodes.h:861
@ CMSG_LFG_LIST_INVITE_RESPONSE
Definition: Opcodes.h:459
@ CMSG_CALENDAR_ADD_EVENT
Definition: Opcodes.h:155
@ CMSG_ACCEPT_TRADE
Definition: Opcodes.h:51
@ CMSG_USE_TOY
Definition: Opcodes.h:884
@ CMSG_AUCTION_SELL_ITEM
Definition: Opcodes.h:91
@ CMSG_ADD_BATTLENET_FRIEND
Definition: Opcodes.h:58
@ CMSG_COMMENTATOR_EXIT_INSTANCE
Definition: Opcodes.h:268
@ CMSG_BATTLE_PET_REQUEST_JOURNAL_LOCK
Definition: Opcodes.h:136
@ CMSG_ATTACK_STOP
Definition: Opcodes.h:72
@ CMSG_BATTLE_PAY_START_PURCHASE
Definition: Opcodes.h:129
@ CMSG_MOVE_APPLY_INERTIA_ACK
Definition: Opcodes.h:501
@ CMSG_PERFORM_ITEM_INTERACTION
Definition: Opcodes.h:605
@ CMSG_SEND_CONTACT_LIST
Definition: Opcodes.h:757
@ CMSG_QUEST_SESSION_REQUEST_STOP
Definition: Opcodes.h:678
@ CMSG_SUBSCRIPTION_INTERSTITIAL_RESPONSE
Definition: Opcodes.h:830
@ CMSG_CONNECT_TO_FAILED
Definition: Opcodes.h:282
@ CMSG_GARRISON_LEARN_TALENT
Definition: Opcodes.h:355
@ CMSG_CALENDAR_RSVP
Definition: Opcodes.h:167
@ CMSG_ACTIVATE_SOULBIND
Definition: Opcodes.h:54
@ CMSG_QUERY_REALM_NAME
Definition: Opcodes.h:657
@ CMSG_COMMENTATOR_GET_PLAYER_INFO
Definition: Opcodes.h:271
@ CMSG_CHAT_CHANNEL_PASSWORD
Definition: Opcodes.h:209
@ CMSG_CHAT_REPORT_FILTERED
Definition: Opcodes.h:231
@ CMSG_CHAT_CHANNEL_UNBAN
Definition: Opcodes.h:212
@ CMSG_ENUM_CHARACTERS
Definition: Opcodes.h:338
@ CMSG_MOVE_SET_ADV_FLY
Definition: Opcodes.h:539
@ CMSG_CHAT_MESSAGE_YELL
Definition: Opcodes.h:229
@ CMSG_AZERITE_ESSENCE_ACTIVATE_ESSENCE
Definition: Opcodes.h:106
@ CMSG_FAR_SIGHT
Definition: Opcodes.h:340
@ CMSG_CLUB_FINDER_POST
Definition: Opcodes.h:256
@ CMSG_EJECT_PASSENGER
Definition: Opcodes.h:332
@ CMSG_QUERY_GAME_OBJECT
Definition: Opcodes.h:642
@ CMSG_LOGOUT_REQUEST
Definition: Opcodes.h:473
@ CMSG_CHAT_MESSAGE_WHISPER
Definition: Opcodes.h:228
@ CMSG_SET_WATCHED_FACTION
Definition: Opcodes.h:806
@ CMSG_AUCTIONABLE_TOKEN_SELL_AT_MARKET_PRICE
Definition: Opcodes.h:75
@ CMSG_MAIL_GET_LIST
Definition: Opcodes.h:485
@ CMSG_PET_RENAME
Definition: Opcodes.h:629
@ CMSG_MOUNT_CLEAR_FANFARE
Definition: Opcodes.h:497
@ CMSG_HIDE_QUEST_CHOICE
Definition: Opcodes.h:435
@ CMSG_SWAP_VOID_ITEM
Definition: Opcodes.h:841
@ CMSG_CRAFTING_ORDER_CANCEL
Definition: Opcodes.h:296
@ CMSG_GUILD_OFFICER_REMOVE_MEMBER
Definition: Opcodes.h:418
@ CMSG_GUILD_SET_RANK_PERMISSIONS
Definition: Opcodes.h:430
@ CMSG_REQUEST_GUILD_PARTY_STATE
Definition: Opcodes.h:716
@ CMSG_REQUEST_PARTY_JOIN_UPDATES
Definition: Opcodes.h:722
@ CMSG_QUEST_GIVER_CLOSE_QUEST
Definition: Opcodes.h:665
@ CMSG_REPAIR_ITEM
Definition: Opcodes.h:696
@ CMSG_BATTLENET_REQUEST
Definition: Opcodes.h:119
@ CMSG_GET_MIRROR_IMAGE_DATA
Definition: Opcodes.h:378
@ CMSG_CHAT_CHANNEL_SILENCE_ALL
Definition: Opcodes.h:211
@ CMSG_DF_LEAVE
Definition: Opcodes.h:321
@ CMSG_CHAT_ADDON_MESSAGE_TARGETED
Definition: Opcodes.h:198
@ CMSG_GARRISON_SET_FOLLOWER_FAVORITE
Definition: Opcodes.h:366
@ CMSG_CHAT_MESSAGE_EMOTE
Definition: Opcodes.h:220
@ CMSG_SET_SHEATHED
Definition: Opcodes.h:797
@ CMSG_AZERITE_ESSENCE_UNLOCK_MILESTONE
Definition: Opcodes.h:107
@ CMSG_MYTHIC_PLUS_REQUEST_MAP_STATS
Definition: Opcodes.h:589
@ CMSG_GM_TICKET_GET_SYSTEM_STATUS
Definition: Opcodes.h:388
@ CMSG_CRAFTING_ORDER_FULFILL
Definition: Opcodes.h:299
@ CMSG_CRAFTING_ORDER_CLAIM
Definition: Opcodes.h:297
@ CMSG_REQUEST_VEHICLE_SWITCH_SEAT
Definition: Opcodes.h:735
@ CMSG_TRAITS_COMMIT_CONFIG
Definition: Opcodes.h:858
@ CMSG_GUILD_SHIFT_RANK
Definition: Opcodes.h:431
@ CMSG_SEND_MAIL
Definition: Opcodes.h:758
@ CMSG_PET_STOP_ATTACK
Definition: Opcodes.h:632
@ CMSG_CHANGE_BAG_SLOT_FLAG
Definition: Opcodes.h:185
@ CMSG_BATTLE_PAY_REQUEST_PRICE_INFO
Definition: Opcodes.h:128
@ CMSG_PET_ACTION
Definition: Opcodes.h:616
@ CMSG_QUERY_QUEST_COMPLETION_NPCS
Definition: Opcodes.h:654
@ CMSG_LIVE_REGION_ACCOUNT_RESTORE
Definition: Opcodes.h:465
@ CMSG_CLUB_FINDER_REQUEST_MEMBERSHIP_TO_CLUB
Definition: Opcodes.h:259
@ CMSG_REPOP_REQUEST
Definition: Opcodes.h:698
@ CMSG_AUCTION_LIST_ITEMS_BY_BUCKET_KEY
Definition: Opcodes.h:83
@ CMSG_UNACCEPT_TRADE
Definition: Opcodes.h:864
@ CMSG_TOTEM_DESTROYED
Definition: Opcodes.h:853
@ CMSG_GUILD_PERMISSIONS_QUERY
Definition: Opcodes.h:419
@ CMSG_LOW_LEVEL_RAID2
Definition: Opcodes.h:482
@ CMSG_GARRISON_SET_RECRUITMENT_PREFERENCES
Definition: Opcodes.h:368
@ CMSG_AUTO_GUILD_BANK_ITEM
Definition: Opcodes.h:101
@ CMSG_PET_ABANDON
Definition: Opcodes.h:615
@ CMSG_BUY_ITEM
Definition: Opcodes.h:152
@ CMSG_COMPLETE_MOVIE
Definition: Opcodes.h:279
@ CMSG_LIVE_REGION_CHARACTER_COPY
Definition: Opcodes.h:466
@ CMSG_UPDATE_CRAFTING_NPC_RECIPES
Definition: Opcodes.h:873
@ CMSG_PVP_LOG_DATA
Definition: Opcodes.h:636
@ CMSG_GARRISON_SET_BUILDING_ACTIVE
Definition: Opcodes.h:365
@ CMSG_CONVERSATION_CINEMATIC_READY
Definition: Opcodes.h:292
@ CMSG_CHAT_MESSAGE_CHANNEL
Definition: Opcodes.h:218
@ CMSG_CANCEL_AURA
Definition: Opcodes.h:170
@ CMSG_AUTO_EQUIP_ITEM
Definition: Opcodes.h:99
@ CMSG_SET_FACTION_AT_WAR
Definition: Opcodes.h:779
@ CMSG_MOVE_START_ASCEND
Definition: Opcodes.h:568
@ CMSG_QUERY_GARRISON_PET_NAME
Definition: Opcodes.h:643
@ CMSG_MOVE_GRAVITY_ENABLE_ACK
Definition: Opcodes.h:526
@ CMSG_LFG_LIST_SEARCH
Definition: Opcodes.h:462
@ CMSG_REQUEST_REALM_GUILD_MASTER_INFO
Definition: Opcodes.h:729
@ CMSG_UPDATE_MISSILE_TRAJECTORY
Definition: Opcodes.h:874
@ CMSG_QUEST_CONFIRM_ACCEPT
Definition: Opcodes.h:662
@ CMSG_RPE_RESET_CHARACTER
Definition: Opcodes.h:744
@ CMSG_AUTH_CONTINUED_SESSION
Definition: Opcodes.h:93
@ CMSG_MOUNT_SPECIAL_ANIM
Definition: Opcodes.h:499
@ CMSG_DELETE_EQUIPMENT_SET
Definition: Opcodes.h:311
@ CMSG_MOVE_START_BACKWARD
Definition: Opcodes.h:569
@ CMSG_LOADING_SCREEN_NOTIFY
Definition: Opcodes.h:469
@ CMSG_CHANGE_MONUMENT_APPEARANCE
Definition: Opcodes.h:187
@ CMSG_LOOT_RELEASE
Definition: Opcodes.h:478
@ CMSG_CLASS_TALENTS_SET_USES_SHARED_ACTION_BARS
Definition: Opcodes.h:245
@ CMSG_TOGGLE_PVP
Definition: Opcodes.h:852
@ CMSG_LFG_LIST_CANCEL_APPLICATION
Definition: Opcodes.h:455
@ CMSG_CLASS_TALENTS_NOTIFY_VALIDATION_FAILED
Definition: Opcodes.h:241
@ CMSG_KEYBOUND_OVERRIDE
Definition: Opcodes.h:448
@ CMSG_SET_FACTION_INACTIVE
Definition: Opcodes.h:780
@ CMSG_MOVE_INERTIA_DISABLE_ACK
Definition: Opcodes.h:530
@ CMSG_LIST_INVENTORY
Definition: Opcodes.h:464
@ CMSG_RECLAIM_CORPSE
Definition: Opcodes.h:692
@ CMSG_GUILD_BANK_DEPOSIT_MONEY
Definition: Opcodes.h:397
@ CMSG_SUBMIT_USER_FEEDBACK
Definition: Opcodes.h:829
@ CMSG_GUILD_LEAVE
Definition: Opcodes.h:416
@ CMSG_GUILD_SET_ACHIEVEMENT_TRACKING
Definition: Opcodes.h:426
@ CMSG_TOGGLE_DIFFICULTY
Definition: Opcodes.h:851
@ CMSG_ARTIFACT_SET_APPEARANCE
Definition: Opcodes.h:70
@ CMSG_GARRISON_ASSIGN_FOLLOWER_TO_BUILDING
Definition: Opcodes.h:346
@ CMSG_LFG_LIST_GET_STATUS
Definition: Opcodes.h:457
@ CMSG_CHANGE_SUB_GROUP
Definition: Opcodes.h:189
@ CMSG_MOVE_SET_CAN_FLY_ACK
Definition: Opcodes.h:554
@ CMSG_CLOSE_TRAIT_SYSTEM_INTERACTION
Definition: Opcodes.h:253
@ CMSG_PET_BATTLE_REQUEST_UPDATE
Definition: Opcodes.h:623
@ CMSG_CHAT_MESSAGE_GUILD
Definition: Opcodes.h:221
@ CMSG_CONTRIBUTION_CONTRIBUTE
Definition: Opcodes.h:290
@ CMSG_SET_DIFFICULTY_ID
Definition: Opcodes.h:774
@ CMSG_SET_BACKPACK_AUTOSORT_DISABLED
Definition: Opcodes.h:769
@ CMSG_CALENDAR_GET_EVENT
Definition: Opcodes.h:161
@ CMSG_GUILD_SET_GUILD_MASTER
Definition: Opcodes.h:428
@ CMSG_DF_GET_SYSTEM_INFO
Definition: Opcodes.h:319
@ CMSG_TRANSMOGRIFY_ITEMS
Definition: Opcodes.h:860
@ CMSG_CONVERT_RAID
Definition: Opcodes.h:294
@ CMSG_GUILD_BANK_WITHDRAW_MONEY
Definition: Opcodes.h:404
@ CMSG_REPORT_STUCK_IN_COMBAT
Definition: Opcodes.h:705
@ CMSG_LOW_LEVEL_RAID1
Definition: Opcodes.h:481
@ CMSG_SET_CONTACT_NOTES
Definition: Opcodes.h:772
@ CMSG_MOVE_FORCE_SWIM_SPEED_CHANGE_ACK
Definition: Opcodes.h:521
@ CMSG_REPORT_CLIENT_VARIABLES
Definition: Opcodes.h:699
@ CMSG_BUY_BACK_ITEM
Definition: Opcodes.h:150
@ CMSG_CRAFTING_ORDER_REJECT
Definition: Opcodes.h:302
@ CMSG_SET_TRADE_GOLD
Definition: Opcodes.h:802
@ CMSG_DF_BOOT_PLAYER_VOTE
Definition: Opcodes.h:316
@ CMSG_CALENDAR_REMOVE_INVITE
Definition: Opcodes.h:166
@ CMSG_CHROMIE_TIME_SELECT_EXPANSION
Definition: Opcodes.h:237
@ CMSG_GENERATE_RANDOM_CHARACTER_NAME
Definition: Opcodes.h:372
@ CMSG_REQUEST_CHARACTER_GUILD_FOLLOW_INFO
Definition: Opcodes.h:710
@ CMSG_BATTLEMASTER_JOIN
Definition: Opcodes.h:113
@ CMSG_BLACK_MARKET_REQUEST_ITEMS
Definition: Opcodes.h:146
@ CMSG_SORT_BAGS
Definition: Opcodes.h:812
@ CMSG_GUILD_DELETE_RANK
Definition: Opcodes.h:409
@ CMSG_SET_ACTION_BAR_TOGGLES
Definition: Opcodes.h:764
@ CMSG_CHAT_LEAVE_CHANNEL
Definition: Opcodes.h:216
@ CMSG_CALENDAR_EVENT_SIGN_UP
Definition: Opcodes.h:159
@ CMSG_MOVE_APPLY_MOVEMENT_FORCE_ACK
Definition: Opcodes.h:502
@ CMSG_REPORT_KEYBINDING_EXECUTION_COUNTS
Definition: Opcodes.h:702
@ CMSG_SAVE_EQUIPMENT_SET
Definition: Opcodes.h:747
@ CMSG_MOVE_SET_ADV_FLYING_AIR_FRICTION_ACK
Definition: Opcodes.h:541
@ CMSG_USE_ITEM
Definition: Opcodes.h:883
@ CMSG_UPDATE_SPELL_VISUAL
Definition: Opcodes.h:876
@ CMSG_QUEST_POI_QUERY
Definition: Opcodes.h:674
@ CMSG_QUEST_GIVER_STATUS_TRACKED_QUERY
Definition: Opcodes.h:672
@ CMSG_BATTLE_PAY_CONFIRM_PURCHASE_RESPONSE
Definition: Opcodes.h:122
@ CMSG_READY_CHECK_RESPONSE
Definition: Opcodes.h:690
@ CMSG_BATTLE_PET_REQUEST_JOURNAL
Definition: Opcodes.h:135
@ CMSG_CONVERSATION_LINE_STARTED
Definition: Opcodes.h:293
@ CMSG_MOVE_STOP_SWIM
Definition: Opcodes.h:583
@ CMSG_SIGN_PETITION
Definition: Opcodes.h:808
@ CMSG_QUERY_PLAYER_NAMES_FOR_COMMUNITY
Definition: Opcodes.h:652
@ CMSG_REQUEST_WEEKLY_REWARDS
Definition: Opcodes.h:736
@ CMSG_OPEN_ITEM
Definition: Opcodes.h:596
@ CMSG_QUERY_COUNTDOWN_TIMER
Definition: Opcodes.h:640
@ CMSG_LIVE_REGION_GET_ACCOUNT_CHARACTER_LIST
Definition: Opcodes.h:467
@ CMSG_READ_ITEM
Definition: Opcodes.h:691
@ CMSG_SOCKET_GEMS
Definition: Opcodes.h:811
@ CMSG_QUERY_CREATURE
Definition: Opcodes.h:641
@ CMSG_COMMERCE_TOKEN_GET_COUNT
Definition: Opcodes.h:274
@ CMSG_CANCEL_GROWTH_AURA
Definition: Opcodes.h:174
@ CMSG_SET_TITLE
Definition: Opcodes.h:800
@ CMSG_QUEST_SESSION_BEGIN_RESPONSE
Definition: Opcodes.h:676
@ CMSG_AUCTIONABLE_TOKEN_SELL
Definition: Opcodes.h:74
@ CMSG_MOVE_START_SWIM
Definition: Opcodes.h:576
@ CMSG_MOVE_DISMISS_VEHICLE
Definition: Opcodes.h:507
@ CMSG_CALENDAR_INVITE
Definition: Opcodes.h:163
@ CMSG_DB_QUERY_BULK
Definition: Opcodes.h:308
@ CMSG_OPEN_MISSION_NPC
Definition: Opcodes.h:597
@ CMSG_MOVE_SET_ADV_FLYING_SURFACE_FRICTION_ACK
Definition: Opcodes.h:551
@ CMSG_SUPPORT_TICKET_SUBMIT_COMPLAINT
Definition: Opcodes.h:832
@ CMSG_MOVE_HEARTBEAT
Definition: Opcodes.h:528
@ CMSG_GARRISON_ADD_FOLLOWER_HEALTH
Definition: Opcodes.h:345
@ CMSG_MOVE_REMOVE_MOVEMENT_FORCE_ACK
Definition: Opcodes.h:537
@ CMSG_BATTLEMASTER_JOIN_SKIRMISH
Definition: Opcodes.h:117
@ CMSG_CRAFTING_ORDER_CREATE
Definition: Opcodes.h:298
@ CMSG_QUERY_BATTLE_PET_NAME
Definition: Opcodes.h:637
@ CMSG_SWAP_ITEM_WITH_GUILD_BANK_ITEM
Definition: Opcodes.h:839
@ CMSG_TIME_ADJUSTMENT_RESPONSE
Definition: Opcodes.h:847
@ CMSG_OBJECT_UPDATE_RESCUED
Definition: Opcodes.h:593
@ CMSG_TOY_CLEAR_FANFARE
Definition: Opcodes.h:854
@ CMSG_LOGOUT_INSTANT
Definition: Opcodes.h:472
@ CMSG_SAVE_ACCOUNT_DATA_EXPORT
Definition: Opcodes.h:745
@ CMSG_MOVE_SET_ADV_FLYING_LAUNCH_SPEED_COEFFICIENT_ACK
Definition: Opcodes.h:545
@ CMSG_PET_BATTLE_REPLACE_FRONT_PET
Definition: Opcodes.h:621
@ CMSG_START_CHALLENGE_MODE
Definition: Opcodes.h:825
@ CMSG_CHAT_MESSAGE_INSTANCE_CHAT
Definition: Opcodes.h:222
@ CMSG_COLLECTION_ITEM_SET_FAVORITE
Definition: Opcodes.h:265
@ CMSG_TUTORIAL
Definition: Opcodes.h:862
@ CMSG_DUEL_RESPONSE
Definition: Opcodes.h:331
@ CMSG_SET_FACTION_NOT_AT_WAR
Definition: Opcodes.h:781
@ CMSG_GET_TROPHY_LIST
Definition: Opcodes.h:382
@ CMSG_ENTER_ENCRYPTED_MODE_ACK
Definition: Opcodes.h:337
@ CMSG_GET_PVP_OPTIONS_ENABLED
Definition: Opcodes.h:379
@ CMSG_GARRISON_GET_MISSION_REWARD
Definition: Opcodes.h:354
@ CMSG_REQUEST_BATTLEFIELD_STATUS
Definition: Opcodes.h:708
@ CMSG_QUERY_VOID_STORAGE
Definition: Opcodes.h:661
@ CMSG_QUICK_JOIN_REQUEST_INVITE_WITH_CONFIRMATION
Definition: Opcodes.h:682
@ CMSG_QUICK_JOIN_RESPOND_TO_INVITE
Definition: Opcodes.h:683
@ CMSG_MOVE_TIME_SKIPPED
Definition: Opcodes.h:586
@ CMSG_MOVE_FORCE_TURN_RATE_CHANGE_ACK
Definition: Opcodes.h:522
@ CMSG_MOVE_SET_ADV_FLYING_DOUBLE_JUMP_VEL_MOD_ACK
Definition: Opcodes.h:543
@ CMSG_REPORT_ENABLED_ADDONS
Definition: Opcodes.h:700
@ CMSG_QUEST_GIVER_QUERY_QUEST
Definition: Opcodes.h:668
@ CMSG_DF_READY_CHECK_RESPONSE
Definition: Opcodes.h:323
@ CMSG_QUERY_TREASURE_PICKER
Definition: Opcodes.h:660
@ CMSG_MAIL_TAKE_MONEY
Definition: Opcodes.h:489
@ CMSG_SEND_TEXT_EMOTE
Definition: Opcodes.h:761
@ CMSG_COMPLETE_CINEMATIC
Definition: Opcodes.h:278
@ CMSG_QUEST_GIVER_REQUEST_REWARD
Definition: Opcodes.h:669
@ CMSG_CALENDAR_GET_NUM_PENDING
Definition: Opcodes.h:162
@ CMSG_CLASS_TALENTS_RENAME_CONFIG
Definition: Opcodes.h:242
@ CMSG_CRAFTING_ORDER_LIST_CRAFTER_ORDERS
Definition: Opcodes.h:300
@ CMSG_SELF_RES
Definition: Opcodes.h:753
@ CMSG_CLEAR_NEW_APPEARANCE
Definition: Opcodes.h:246
@ CMSG_ACTIVATE_TAXI
Definition: Opcodes.h:55
@ CMSG_REQUEST_VEHICLE_NEXT_SEAT
Definition: Opcodes.h:733
@ CMSG_CRAFTING_ORDER_REPORT_PLAYER
Definition: Opcodes.h:304
@ CMSG_MOUNT_SET_FAVORITE
Definition: Opcodes.h:498
@ CMSG_GARRISON_GET_CLASS_SPEC_CATEGORY_INFO
Definition: Opcodes.h:352
@ CMSG_PET_BATTLE_FINAL_NOTIFY
Definition: Opcodes.h:617
@ CMSG_CAN_REDEEM_TOKEN_FOR_BALANCE
Definition: Opcodes.h:182
@ CMSG_QUICK_JOIN_AUTO_ACCEPT_REQUESTS
Definition: Opcodes.h:680
@ CMSG_MOVE_START_TURN_RIGHT
Definition: Opcodes.h:578
@ CMSG_CANCEL_CAST
Definition: Opcodes.h:172
@ CMSG_GOSSIP_SELECT_OPTION
Definition: Opcodes.h:390
@ CMSG_CHAT_REPORT_IGNORED
Definition: Opcodes.h:232
@ CMSG_GUILD_ADD_BATTLENET_FRIEND
Definition: Opcodes.h:391
@ CMSG_QUERY_SCENARIO_POI
Definition: Opcodes.h:658
@ CMSG_ADVENTURE_MAP_START_QUEST
Definition: Opcodes.h:64
@ CMSG_REQUEST_STABLED_PETS
Definition: Opcodes.h:731
@ CMSG_REQUEST_VEHICLE_PREV_SEAT
Definition: Opcodes.h:734
@ CMSG_AUCTION_LIST_BIDDED_ITEMS
Definition: Opcodes.h:81
@ CMSG_RANDOM_ROLL
Definition: Opcodes.h:689
@ CMSG_LIVE_REGION_KEY_BINDINGS_COPY
Definition: Opcodes.h:468
@ CMSG_SET_EMPOWER_MIN_HOLD_STAGE_PERCENT
Definition: Opcodes.h:776
@ CMSG_CHAT_CHANNEL_DISPLAY_LIST
Definition: Opcodes.h:203
@ CMSG_SWAP_SUB_GROUPS
Definition: Opcodes.h:840
@ CMSG_DECLINE_PETITION
Definition: Opcodes.h:310
@ CMSG_REQUEST_VEHICLE_EXIT
Definition: Opcodes.h:732
@ CMSG_CHALLENGE_MODE_REQUEST_LEADERS
Definition: Opcodes.h:184
@ CMSG_MOVE_SET_ADV_FLYING_TURN_VELOCITY_THRESHOLD_ACK
Definition: Opcodes.h:552
@ CMSG_AREA_TRIGGER
Definition: Opcodes.h:68
@ CMSG_UNLEARN_SPECIALIZATION
Definition: Opcodes.h:867
@ CMSG_EMOTE
Definition: Opcodes.h:333
@ CMSG_BLACK_MARKET_OPEN
Definition: Opcodes.h:145
@ CMSG_SOCIAL_CONTRACT_REQUEST
Definition: Opcodes.h:810
@ CMSG_BATTLE_PET_SUMMON
Definition: Opcodes.h:139
@ CMSG_AUTO_STORE_BAG_ITEM
Definition: Opcodes.h:102
@ CMSG_AUCTION_BROWSE_QUERY
Definition: Opcodes.h:76
@ CMSG_GUILD_QUERY_RECIPES
Definition: Opcodes.h:424
@ CMSG_MOVE_START_STRAFE_RIGHT
Definition: Opcodes.h:575
@ CMSG_USE_CRITTER_ITEM
Definition: Opcodes.h:881
@ CMSG_DECLINE_GUILD_INVITES
Definition: Opcodes.h:309
@ CMSG_UNLOCK_VOID_STORAGE
Definition: Opcodes.h:868
@ CMSG_MAIL_CREATE_TEXT_ITEM
Definition: Opcodes.h:483
@ CMSG_MOVE_START_PITCH_DOWN
Definition: Opcodes.h:572
@ CMSG_UI_MAP_QUEST_LINES_REQUEST
Definition: Opcodes.h:863
@ CMSG_ENGINE_SURVEY
Definition: Opcodes.h:336
@ CMSG_CLUB_FINDER_REQUEST_SUBSCRIBED_CLUB_POSTING_IDS
Definition: Opcodes.h:261
@ CMSG_BATTLE_PAY_GET_PURCHASE_LIST
Definition: Opcodes.h:126
@ CMSG_LATENCY_REPORT
Definition: Opcodes.h:449
@ CMSG_MOVE_SET_RUN_MODE
Definition: Opcodes.h:563
@ CMSG_ITEM_TEXT_QUERY
Definition: Opcodes.h:444
@ CMSG_LEARN_PVP_TALENTS
Definition: Opcodes.h:450
@ CMSG_MOVE_STOP_TURN
Definition: Opcodes.h:584
@ CMSG_SET_ASSISTANT_LEADER
Definition: Opcodes.h:768
@ CMSG_UPGRADE_RUNEFORGE_LEGENDARY
Definition: Opcodes.h:879
@ CMSG_BATTLENET_CHALLENGE_RESPONSE
Definition: Opcodes.h:118
@ CMSG_UNDELETE_CHARACTER
Definition: Opcodes.h:865
@ CMSG_CHAT_MESSAGE_RAID_WARNING
Definition: Opcodes.h:226
@ CMSG_CANCEL_TRADE
Definition: Opcodes.h:180
@ CMSG_PET_BATTLE_REQUEST_WILD
Definition: Opcodes.h:624
@ CMSG_MOVE_FORCE_WALK_SPEED_CHANGE_ACK
Definition: Opcodes.h:524
@ CMSG_CONSUMABLE_TOKEN_CAN_VETERAN_BUY
Definition: Opcodes.h:285
@ CMSG_ACCEPT_GUILD_INVITE
Definition: Opcodes.h:48
@ CMSG_MOVE_SET_WALK_MODE
Definition: Opcodes.h:566
@ CMSG_CHECK_CHARACTER_NAME_AVAILABILITY
Definition: Opcodes.h:234
@ CMSG_PET_SET_ACTION
Definition: Opcodes.h:630
@ CMSG_GET_VAS_TRANSFER_TARGET_REALM_LIST
Definition: Opcodes.h:385
@ CMSG_COMMENTATOR_ENABLE
Definition: Opcodes.h:266
@ CMSG_SET_SORT_BAGS_RIGHT_TO_LEFT
Definition: Opcodes.h:798
@ CMSG_AUCTION_CANCEL_COMMODITIES_PURCHASE
Definition: Opcodes.h:77
@ CMSG_GARRISON_RESEARCH_TALENT
Definition: Opcodes.h:364
@ CMSG_GARRISON_REMOVE_FOLLOWER
Definition: Opcodes.h:359
@ CMSG_CLAIM_WEEKLY_REWARD
Definition: Opcodes.h:238
@ CMSG_CLEAR_TRADE_ITEM
Definition: Opcodes.h:248
@ CMSG_BATTLE_PET_DELETE_PET
Definition: Opcodes.h:132
@ CMSG_GUILD_BANK_ACTIVATE
Definition: Opcodes.h:395
@ CMSG_PERKS_PROGRAM_REQUEST_PURCHASE
Definition: Opcodes.h:607
@ CMSG_OPT_OUT_OF_LOOT
Definition: Opcodes.h:600
@ CMSG_DEL_IGNORE
Definition: Opcodes.h:313
@ CMSG_SORT_BANK_BAGS
Definition: Opcodes.h:813
@ CMSG_MOVE_FORCE_FLIGHT_SPEED_CHANGE_ACK
Definition: Opcodes.h:515
@ CMSG_AREA_SPIRIT_HEALER_QUEUE
Definition: Opcodes.h:67
@ CMSG_BUY_REAGENT_BANK
Definition: Opcodes.h:153
@ CMSG_BONUS_ROLL
Definition: Opcodes.h:147
@ CMSG_SCENE_PLAYBACK_CANCELED
Definition: Opcodes.h:750
@ CMSG_DF_TELEPORT
Definition: Opcodes.h:325
@ CMSG_DO_READY_CHECK
Definition: Opcodes.h:330
@ CMSG_CALENDAR_COMPLAIN
Definition: Opcodes.h:157
@ CMSG_BATTLE_PAY_DISTRIBUTION_ASSIGN_VAS
Definition: Opcodes.h:124
@ CMSG_ACCEPT_WARGAME_INVITE
Definition: Opcodes.h:52
@ CMSG_MOVE_FEATHER_FALL_ACK
Definition: Opcodes.h:513
@ CMSG_ENABLE_NAGLE
Definition: Opcodes.h:334
@ CMSG_DF_CONFIRM_EXPAND_SEARCH
Definition: Opcodes.h:317
@ CMSG_OFFER_PETITION
Definition: Opcodes.h:594
@ CMSG_CHAT_CHANNEL_SET_OWNER
Definition: Opcodes.h:210
@ CMSG_MOVE_WATER_WALK_ACK
Definition: Opcodes.h:588
@ CMSG_MOVE_SET_ADV_FLYING_BANKING_RATE_ACK
Definition: Opcodes.h:542
@ CMSG_SEND_PING_UNIT
Definition: Opcodes.h:759
@ CMSG_DEPOSIT_REAGENT_BANK
Definition: Opcodes.h:314
@ CMSG_UPGRADE_GARRISON
Definition: Opcodes.h:878
@ CMSG_TRAINER_LIST
Definition: Opcodes.h:857
@ CMSG_COMMENTATOR_SPECTATE
Definition: Opcodes.h:272
@ CMSG_GET_VAS_ACCOUNT_CHARACTER_LIST
Definition: Opcodes.h:384
@ CMSG_CHAT_MESSAGE_SAY
Definition: Opcodes.h:227
@ CMSG_AUTOSTORE_BANK_ITEM
Definition: Opcodes.h:97
@ CMSG_CHAT_MESSAGE_AFK
Definition: Opcodes.h:217
@ CMSG_MOVE_SET_IGNORE_MOVEMENT_FORCES_ACK
Definition: Opcodes.h:560
@ CMSG_SET_INSERT_ITEMS_LEFT_TO_RIGHT
Definition: Opcodes.h:783
@ CMSG_USED_FOLLOW
Definition: Opcodes.h:880
@ CMSG_GUILD_ADD_RANK
Definition: Opcodes.h:392
@ CMSG_CHAT_CHANNEL_MODERATOR
Definition: Opcodes.h:207
@ CMSG_QUEUED_MESSAGES_END
Definition: Opcodes.h:679
@ CMSG_DISMISS_CRITTER
Definition: Opcodes.h:327
@ CMSG_BUG_REPORT
Definition: Opcodes.h:148
@ CMSG_CONTENT_TRACKING_STOP_TRACKING
Definition: Opcodes.h:289
@ CMSG_QUEST_GIVER_COMPLETE_QUEST
Definition: Opcodes.h:666
@ CMSG_RAF_GENERATE_RECRUITMENT_LINK
Definition: Opcodes.h:687
@ CMSG_RAF_CLAIM_ACTIVITY_REWARD
Definition: Opcodes.h:685
@ CMSG_CHARACTER_UPGRADE_START
Definition: Opcodes.h:193
@ CMSG_CLIENT_PORT_GRAVEYARD
Definition: Opcodes.h:249
@ CMSG_GARRISON_RECRUIT_FOLLOWER
Definition: Opcodes.h:358
@ CMSG_SET_WAR_MODE
Definition: Opcodes.h:805
@ CMSG_QUICK_JOIN_REQUEST_INVITE
Definition: Opcodes.h:681
@ CMSG_JOIN_PET_BATTLE_QUEUE
Definition: Opcodes.h:445
@ CMSG_MOVE_STOP_STRAFE
Definition: Opcodes.h:582
@ CMSG_SHOW_TRADE_SKILL
Definition: Opcodes.h:807
@ CMSG_UPDATE_ACCOUNT_DATA
Definition: Opcodes.h:870
@ CMSG_PERKS_PROGRAM_REQUEST_PENDING_REWARDS
Definition: Opcodes.h:606
@ CMSG_GUILD_CHANGE_NAME_REQUEST
Definition: Opcodes.h:406
@ CMSG_CHAR_DELETE
Definition: Opcodes.h:195
@ CMSG_DF_JOIN
Definition: Opcodes.h:320
@ CMSG_MOVE_HOVER_ACK
Definition: Opcodes.h:529
@ CMSG_TIME_SYNC_RESPONSE_FAILED
Definition: Opcodes.h:850
@ CMSG_LOOT_UNIT
Definition: Opcodes.h:480
@ CMSG_MERGE_GUILD_BANK_ITEM_WITH_ITEM
Definition: Opcodes.h:493
@ CMSG_GARRISON_CANCEL_CONSTRUCTION
Definition: Opcodes.h:347
@ CMSG_MOVE_STOP_ASCEND
Definition: Opcodes.h:580
@ CMSG_PUSH_QUEST_TO_PARTY
Definition: Opcodes.h:635
@ CMSG_AUCTION_REMOVE_ITEM
Definition: Opcodes.h:87
@ CMSG_CHAT_UNREGISTER_ALL_ADDON_PREFIXES
Definition: Opcodes.h:233
@ CMSG_BUSY_TRADE
Definition: Opcodes.h:149
@ CMSG_CHAR_RACE_OR_FACTION_CHANGE
Definition: Opcodes.h:196
@ CMSG_MOVE_UPDATE_FALL_SPEED
Definition: Opcodes.h:587
@ CMSG_GARRISON_GENERATE_RECRUITS
Definition: Opcodes.h:351
@ CMSG_SET_PLAYER_DECLINED_NAMES
Definition: Opcodes.h:789
@ CMSG_STORE_GUILD_BANK_ITEM
Definition: Opcodes.h:828
@ CMSG_PET_BATTLE_QUEUE_PROPOSE_MATCH_RESULT
Definition: Opcodes.h:619
@ CMSG_AUCTION_GET_COMMODITY_QUOTE
Definition: Opcodes.h:79
@ CMSG_MOVE_CHANGE_TRANSPORT
Definition: Opcodes.h:503
@ CMSG_STAND_STATE_CHANGE
Definition: Opcodes.h:824
@ CMSG_ENUM_CHARACTERS_DELETED_BY_CLIENT
Definition: Opcodes.h:339
@ CMSG_MAIL_MARK_AS_READ
Definition: Opcodes.h:486
@ CMSG_TAXI_REQUEST_EARLY_LANDING
Definition: Opcodes.h:846
@ CMSG_REQUEST_GUILD_REWARDS_LIST
Definition: Opcodes.h:717
@ CMSG_CONFIRM_RESPEC_WIPE
Definition: Opcodes.h:281
@ CMSG_MINIMAP_PING
Definition: Opcodes.h:495
@ CMSG_CLUB_FINDER_REQUEST_PENDING_CLUBS_LIST
Definition: Opcodes.h:260
@ CMSG_LEAVE_PET_BATTLE_QUEUE
Definition: Opcodes.h:453
@ CMSG_OPEN_TRADESKILL_NPC
Definition: Opcodes.h:599
@ CMSG_SPLIT_ITEM
Definition: Opcodes.h:822
@ CMSG_AUTOBANK_ITEM
Definition: Opcodes.h:95
@ CMSG_MOVE_FALL_RESET
Definition: Opcodes.h:512
@ CMSG_SORT_REAGENT_BANK_BAGS
Definition: Opcodes.h:814
@ CMSG_PET_BATTLE_WILD_LOCATION_FAIL
Definition: Opcodes.h:626
@ CMSG_BINDER_ACTIVATE
Definition: Opcodes.h:143
@ CMSG_GARRISON_START_MISSION
Definition: Opcodes.h:370
@ CMSG_MOVE_SET_ADV_FLYING_GLIDE_START_MIN_HEIGHT_ACK
Definition: Opcodes.h:544
@ CMSG_GARRISON_GET_MAP_DATA
Definition: Opcodes.h:353
@ CMSG_REVERT_MONUMENT_APPEARANCE
Definition: Opcodes.h:742
@ CMSG_VOICE_CHAT_LOGIN
Definition: Opcodes.h:891
@ CMSG_BATTLE_PAY_ACK_FAILED_RESPONSE
Definition: Opcodes.h:120
@ CMSG_AUCTION_PLACE_BID
Definition: Opcodes.h:86
@ CMSG_COMPLAINT
Definition: Opcodes.h:277
@ CMSG_GARRISON_RENAME_FOLLOWER
Definition: Opcodes.h:361
@ CMSG_CLOSE_INTERACTION
Definition: Opcodes.h:250
@ CMSG_CHAR_CUSTOMIZE
Definition: Opcodes.h:194
@ CMSG_SET_LOOT_SPECIALIZATION
Definition: Opcodes.h:785
@ CMSG_CHAT_CHANNEL_BAN
Definition: Opcodes.h:201
@ CMSG_BATTLE_PET_SET_BATTLE_SLOT
Definition: Opcodes.h:137
@ CMSG_SAVE_PERSONAL_EMBLEM
Definition: Opcodes.h:749
@ CMSG_PET_SPELL_AUTOCAST
Definition: Opcodes.h:631
@ CMSG_CANCEL_TEMP_ENCHANTMENT
Definition: Opcodes.h:179
@ CMSG_LOG_STREAMING_ERROR
Definition: Opcodes.h:475
@ CMSG_PET_BATTLE_INPUT
Definition: Opcodes.h:618
@ CMSG_SET_PARTY_LEADER
Definition: Opcodes.h:787
@ CMSG_GUILD_BANK_REMAINING_WITHDRAW_MONEY_QUERY
Definition: Opcodes.h:400
@ CMSG_MOVE_INIT_ACTIVE_MOVER_COMPLETE
Definition: Opcodes.h:532
@ CMSG_RESET_CHALLENGE_MODE_CHEAT
Definition: Opcodes.h:739
@ CMSG_AUCTION_LIST_BUCKETS_BY_BUCKET_KEYS
Definition: Opcodes.h:82
@ CMSG_MASTER_LOOT_ITEM
Definition: Opcodes.h:491
@ CMSG_SET_TAXI_BENCHMARK_MODE
Definition: Opcodes.h:799
@ CMSG_DF_SET_ROLES
Definition: Opcodes.h:324
@ CMSG_AUTO_STORE_GUILD_BANK_ITEM
Definition: Opcodes.h:103
@ CMSG_CHAT_MESSAGE_RAID
Definition: Opcodes.h:225
@ CMSG_BATTLEFIELD_LIST
Definition: Opcodes.h:110
@ CMSG_SCENE_PLAYBACK_COMPLETE
Definition: Opcodes.h:751
@ CMSG_CHARACTER_RENAME_REQUEST
Definition: Opcodes.h:191
@ CMSG_BANKER_ACTIVATE
Definition: Opcodes.h:108
@ CMSG_MOVE_FORCE_RUN_SPEED_CHANGE_ACK
Definition: Opcodes.h:519
@ CMSG_MOVE_DOUBLE_JUMP
Definition: Opcodes.h:508
@ CMSG_CLUB_PRESENCE_SUBSCRIBE
Definition: Opcodes.h:264
@ CMSG_GUILD_GET_ROSTER
Definition: Opcodes.h:414
@ CMSG_TRAITS_TALENT_TEST_UNLEARN_SPELLS
Definition: Opcodes.h:859
@ CMSG_LEAVE_GROUP
Definition: Opcodes.h:452
@ CMSG_REQUEST_PVP_REWARDS
Definition: Opcodes.h:726
@ CMSG_AUCTION_REPLICATE_ITEMS
Definition: Opcodes.h:88
@ CMSG_CALENDAR_COPY_EVENT
Definition: Opcodes.h:158
@ CMSG_GUILD_REPLACE_GUILD_MASTER
Definition: Opcodes.h:425
@ CMSG_GUILD_GET_ACHIEVEMENT_MEMBERS
Definition: Opcodes.h:412
@ CMSG_BATTLE_PET_UPDATE_NOTIFY
Definition: Opcodes.h:141
@ CMSG_LOAD_SELECTED_TROPHY
Definition: Opcodes.h:470
@ CMSG_MOVE_SET_CAN_ADV_FLY_ACK
Definition: Opcodes.h:553
@ CMSG_CHAT_MESSAGE_DND
Definition: Opcodes.h:219
@ CMSG_SUMMON_RESPONSE
Definition: Opcodes.h:831
@ CMSG_AUTOBANK_REAGENT
Definition: Opcodes.h:96
@ CMSG_PET_BATTLE_REQUEST_PVP
Definition: Opcodes.h:622
@ CMSG_MOVE_FORCE_RUN_BACK_SPEED_CHANGE_ACK
Definition: Opcodes.h:518
@ CMSG_REQUEST_PLAYED_TIME
Definition: Opcodes.h:725
@ CMSG_MOVE_TELEPORT_ACK
Definition: Opcodes.h:585
@ CMSG_MOVE_STOP
Definition: Opcodes.h:579
@ CMSG_ADD_IGNORE
Definition: Opcodes.h:60
@ CMSG_OPENING_CINEMATIC
Definition: Opcodes.h:595
@ CMSG_MOVE_COLLISION_DISABLE_ACK
Definition: Opcodes.h:505
@ CMSG_CALENDAR_STATUS
Definition: Opcodes.h:168
@ CMSG_QUERY_INSPECT_ACHIEVEMENTS
Definition: Opcodes.h:645
@ CMSG_CAN_DUEL
Definition: Opcodes.h:181
@ CMSG_MOVE_SET_FACING
Definition: Opcodes.h:557
@ CMSG_VAS_CHECK_TRANSFER_OK
Definition: Opcodes.h:885
@ CMSG_MERGE_GUILD_BANK_ITEM_WITH_GUILD_BANK_ITEM
Definition: Opcodes.h:492
@ CMSG_MOVE_ENABLE_SWIM_TO_FLY_TRANS_ACK
Definition: Opcodes.h:510
@ CMSG_LOOT_MONEY
Definition: Opcodes.h:477
@ CMSG_SET_CURRENCY_FLAGS
Definition: Opcodes.h:773
@ CMSG_MOVE_FORCE_SWIM_BACK_SPEED_CHANGE_ACK
Definition: Opcodes.h:520
@ CMSG_MOVE_COLLISION_ENABLE_ACK
Definition: Opcodes.h:506
@ CMSG_REQUEST_MYTHIC_PLUS_AFFIXES
Definition: Opcodes.h:720
@ CMSG_REQUEST_CONQUEST_FORMULA_CONSTANTS
Definition: Opcodes.h:711
@ CMSG_MOVE_START_DESCEND
Definition: Opcodes.h:570
@ CMSG_SET_USING_PARTY_GARRISON
Definition: Opcodes.h:804
@ CMSG_ACCEPT_RETURNING_PLAYER_PROMPT
Definition: Opcodes.h:49
@ CMSG_CALENDAR_MODERATOR_STATUS
Definition: Opcodes.h:164
@ CMSG_DO_MASTER_LOOT_ROLL
Definition: Opcodes.h:329
@ CMSG_COVENANT_RENOWN_REQUEST_CATCHUP_STATE
Definition: Opcodes.h:295
@ CMSG_ALTER_APPEARANCE
Definition: Opcodes.h:65
@ CMSG_SURRENDER_ARENA
Definition: Opcodes.h:833
@ CMSG_MISSILE_TRAJECTORY_COLLISION
Definition: Opcodes.h:496
@ CMSG_TAXI_NODE_STATUS_QUERY
Definition: Opcodes.h:844
@ CMSG_AUCTION_SET_FAVORITE_ITEM
Definition: Opcodes.h:92
@ CMSG_QUERY_QUEST_INFO
Definition: Opcodes.h:655
@ CMSG_CLOSE_RUNEFORGE_INTERACTION
Definition: Opcodes.h:252
@ CMSG_ASSIGN_EQUIPMENT_SET_SPEC
Definition: Opcodes.h:71
@ CMSG_COMMENTATOR_GET_MAP_INFO
Definition: Opcodes.h:269
@ CMSG_MOVE_SET_ADV_FLYING_PITCHING_RATE_DOWN_ACK
Definition: Opcodes.h:549
@ CMSG_PETITION_SHOW_SIGNATURES
Definition: Opcodes.h:614
@ CMSG_QUEST_GIVER_HELLO
Definition: Opcodes.h:667
@ CMSG_QUEST_GIVER_CHOOSE_REWARD
Definition: Opcodes.h:664
@ CMSG_AUCTION_SELL_COMMODITY
Definition: Opcodes.h:90
@ CMSG_BATTLE_PAY_OPEN_CHECKOUT
Definition: Opcodes.h:127
@ CMSG_GET_REMAINING_GAME_TIME
Definition: Opcodes.h:381
@ CMSG_NEXT_CINEMATIC_CAMERA
Definition: Opcodes.h:591
@ CMSG_MOVE_SPLINE_DONE
Definition: Opcodes.h:567
@ CMSG_CLASS_TALENTS_NOTIFY_EMPTY_CONFIG
Definition: Opcodes.h:240
@ CMSG_GUILD_UPDATE_MOTD_TEXT
Definition: Opcodes.h:433
@ CMSG_MOVE_KNOCK_BACK_ACK
Definition: Opcodes.h:534
@ CMSG_SET_ACTION_BUTTON
Definition: Opcodes.h:765
@ CMSG_WRAP_ITEM
Definition: Opcodes.h:897
@ CMSG_MOVE_FORCE_ROOT_ACK
Definition: Opcodes.h:517
@ CMSG_GARRISON_SET_FOLLOWER_INACTIVE
Definition: Opcodes.h:367
@ CMSG_REQUEST_WORLD_QUEST_UPDATE
Definition: Opcodes.h:737
@ CMSG_LOOT_ROLL
Definition: Opcodes.h:479
@ CMSG_GUILD_DECLINE_INVITATION
Definition: Opcodes.h:407
@ CMSG_CONSUMABLE_TOKEN_REDEEM
Definition: Opcodes.h:286
@ CMSG_RIDE_VEHICLE_INTERACT
Definition: Opcodes.h:743
@ CMSG_SPIRIT_HEALER_ACTIVATE
Definition: Opcodes.h:819
@ CMSG_SET_TRADE_ITEM
Definition: Opcodes.h:803
@ CMSG_CHAT_CHANNEL_DECLINE_INVITE
Definition: Opcodes.h:202
@ CMSG_MOVE_CHANGE_VEHICLE_SEATS
Definition: Opcodes.h:504
@ CMSG_BATTLE_PAY_GET_PRODUCT_LIST
Definition: Opcodes.h:125
@ CMSG_REQUEST_PET_INFO
Definition: Opcodes.h:724
@ CMSG_REQUEST_CROWD_CONTROL_SPELL
Definition: Opcodes.h:713
@ CMSG_CAGE_BATTLE_PET
Definition: Opcodes.h:154
@ CMSG_SUSPEND_COMMS_ACK
Definition: Opcodes.h:834
@ CMSG_GET_ITEM_PURCHASE_DATA
Definition: Opcodes.h:376
@ CMSG_QUEST_GIVER_ACCEPT_QUEST
Definition: Opcodes.h:663
@ CMSG_GAME_OBJ_REPORT_USE
Definition: Opcodes.h:343
@ CMSG_LFG_LIST_APPLY_TO_GROUP
Definition: Opcodes.h:454
@ CMSG_VAS_GET_QUEUE_MINUTES
Definition: Opcodes.h:886
@ CMSG_GUILD_NEWS_UPDATE_STICKY
Definition: Opcodes.h:417
@ CMSG_VAS_GET_SERVICE_STATUS
Definition: Opcodes.h:887
@ CMSG_QUERY_PETITION
Definition: Opcodes.h:649
@ CMSG_ISLAND_QUEUE
Definition: Opcodes.h:442
@ CMSG_SET_TRADE_CURRENCY
Definition: Opcodes.h:801
@ CMSG_SET_EXCLUDED_CHAT_CENSOR_SOURCES
Definition: Opcodes.h:778
@ CMSG_BATTLE_PET_MODIFY_NAME
Definition: Opcodes.h:134
@ CMSG_JOIN_RATED_BATTLEGROUND
Definition: Opcodes.h:446
@ CMSG_SET_DUNGEON_DIFFICULTY
Definition: Opcodes.h:775
@ CMSG_QUEST_PUSH_RESULT
Definition: Opcodes.h:675
@ CMSG_GUILD_BANK_LOG_QUERY
Definition: Opcodes.h:398
@ CMSG_ABANDON_NPE_RESPONSE
Definition: Opcodes.h:47
@ CMSG_BEGIN_TRADE
Definition: Opcodes.h:142
@ CMSG_GUILD_AUTO_DECLINE_INVITATION
Definition: Opcodes.h:394
@ CMSG_GARRISON_REMOVE_FOLLOWER_FROM_BUILDING
Definition: Opcodes.h:360
@ CMSG_REPORT_SERVER_LAG
Definition: Opcodes.h:704
@ CMSG_REPORT_FROZEN_WHILE_LOADING_MAP
Definition: Opcodes.h:701
@ CMSG_MOVE_FORCE_UNROOT_ACK
Definition: Opcodes.h:523
@ CMSG_REQUEST_LFG_LIST_BLACKLIST
Definition: Opcodes.h:719
@ CMSG_INSPECT
Definition: Opcodes.h:440
@ CMSG_REQUEST_AREA_POI_UPDATE
Definition: Opcodes.h:707
@ CMSG_ADVENTURE_JOURNAL_UPDATE_SUGGESTIONS
Definition: Opcodes.h:63
@ CMSG_SET_ADVANCED_COMBAT_LOGGING
Definition: Opcodes.h:767
@ CMSG_PING
Definition: Opcodes.h:633
@ CMSG_GAME_EVENT_DEBUG_DISABLE
Definition: Opcodes.h:341
@ CMSG_GUILD_ASSIGN_MEMBER_RANK
Definition: Opcodes.h:393
@ CMSG_BATTLE_PAY_CANCEL_OPEN_CHECKOUT
Definition: Opcodes.h:121
@ CMSG_MOVE_FORCE_PITCH_RATE_CHANGE_ACK
Definition: Opcodes.h:516
@ CMSG_QUERY_NPC_TEXT
Definition: Opcodes.h:647
@ CMSG_SET_EVERYONE_IS_ASSISTANT
Definition: Opcodes.h:777
@ CMSG_QUEST_GIVER_STATUS_QUERY
Definition: Opcodes.h:671
@ CMSG_AREA_SPIRIT_HEALER_QUERY
Definition: Opcodes.h:66
@ CMSG_REQUEST_MYTHIC_PLUS_SEASON_DATA
Definition: Opcodes.h:721
@ CMSG_SET_PARTY_ASSIGNMENT
Definition: Opcodes.h:786
@ CMSG_MOVE_ADD_IMPULSE_ACK
Definition: Opcodes.h:500
@ CMSG_CLEAR_RAID_MARKER
Definition: Opcodes.h:247
@ CMSG_CREATE_SHIPMENT
Definition: Opcodes.h:307
@ CMSG_GUILD_DEMOTE_MEMBER
Definition: Opcodes.h:410
@ CMSG_TALK_TO_GOSSIP
Definition: Opcodes.h:843
@ CMSG_MOVE_SET_MOD_MOVEMENT_FORCE_MAGNITUDE_ACK
Definition: Opcodes.h:561
@ CMSG_ACCOUNT_NOTIFICATION_ACKNOWLEDGED
Definition: Opcodes.h:53
@ CMSG_CHAT_CAN_LOCAL_WHISPER_TARGET_REQUEST
Definition: Opcodes.h:199
@ CMSG_CHAT_CHANNEL_INVITE
Definition: Opcodes.h:204
@ CMSG_LFG_LIST_INVITE_APPLICANT
Definition: Opcodes.h:458
@ CMSG_SPELL_EMPOWER_RELEASE
Definition: Opcodes.h:817
@ CMSG_DEL_FRIEND
Definition: Opcodes.h:312
@ CMSG_OBJECT_UPDATE_FAILED
Definition: Opcodes.h:592
@ CMSG_BATTLE_PAY_DISTRIBUTION_ASSIGN_TO_TARGET
Definition: Opcodes.h:123
@ CMSG_CLOSE_QUEST_CHOICE
Definition: Opcodes.h:251
@ CMSG_CANCEL_CHANNELLING
Definition: Opcodes.h:173
@ CMSG_CLUB_FINDER_GET_APPLICANTS_LIST
Definition: Opcodes.h:255
@ CMSG_MOVE_SET_COLLISION_HEIGHT_ACK
Definition: Opcodes.h:556
@ CMSG_AUTO_EQUIP_ITEM_SLOT
Definition: Opcodes.h:100
@ CMSG_GUILD_BANK_TEXT_QUERY
Definition: Opcodes.h:402
@ CMSG_MOVE_REMOVE_MOVEMENT_FORCES
Definition: Opcodes.h:536
@ CMSG_TAXI_QUERY_AVAILABLE_NODES
Definition: Opcodes.h:845
@ CMSG_ARTIFACT_ADD_POWER
Definition: Opcodes.h:69
@ CMSG_QUEST_LOG_REMOVE_QUEST
Definition: Opcodes.h:673
@ CMSG_MOVE_SET_PITCH
Definition: Opcodes.h:562
@ CMSG_MOVE_ENABLE_DOUBLE_JUMP_ACK
Definition: Opcodes.h:509
@ CMSG_LOG_DISCONNECT
Definition: Opcodes.h:474
@ CMSG_COMMERCE_TOKEN_GET_MARKET_PRICE
Definition: Opcodes.h:276
@ CMSG_QUERY_NEXT_MAIL_TIME
Definition: Opcodes.h:646
@ CMSG_COMMERCE_TOKEN_GET_LOG
Definition: Opcodes.h:275
@ CMSG_OVERRIDE_SCREEN_FLASH
Definition: Opcodes.h:601
@ CMSG_GET_LANDING_PAGE_SHIPMENTS
Definition: Opcodes.h:377
@ CMSG_QUEST_GIVER_STATUS_MULTIPLE_QUERY
Definition: Opcodes.h:670
@ CMSG_DF_GET_JOIN_STATUS
Definition: Opcodes.h:318
@ CMSG_MAKE_CONTITIONAL_APPEARANCE_PERMANENT
Definition: Opcodes.h:490
@ CMSG_MOVE_FALL_LAND
Definition: Opcodes.h:511
@ CMSG_GUILD_EVENT_LOG_QUERY
Definition: Opcodes.h:411
@ CMSG_SAVE_GUILD_EMBLEM
Definition: Opcodes.h:748
@ CMSG_SPAWN_TRACKING_UPDATE
Definition: Opcodes.h:815
@ CMSG_GARRISON_SOCKET_TALENT
Definition: Opcodes.h:369
@ CMSG_IGNORE_TRADE
Definition: Opcodes.h:437
@ CMSG_GUILD_SET_FOCUSED_ACHIEVEMENT
Definition: Opcodes.h:427
@ CMSG_GARRISON_PURCHASE_BUILDING
Definition: Opcodes.h:357
@ CMSG_ADDON_LIST
Definition: Opcodes.h:56
@ CMSG_CHECK_IS_ADVENTURE_MAP_POI_VALID
Definition: Opcodes.h:235
@ CMSG_SET_ACHIEVEMENTS_HIDDEN
Definition: Opcodes.h:763
@ CMSG_CHAT_ADDON_MESSAGE
Definition: Opcodes.h:197
@ CMSG_MAIL_DELETE
Definition: Opcodes.h:484
@ CMSG_CHANGE_REALM_TICKET
Definition: Opcodes.h:188
@ CMSG_CHAT_MESSAGE_OFFICER
Definition: Opcodes.h:223
@ CMSG_SET_ACTIVE_MOVER
Definition: Opcodes.h:766
@ CMSG_RAF_CLAIM_NEXT_REWARD
Definition: Opcodes.h:686
@ CMSG_CHAT_CHANNEL_UNMODERATOR
Definition: Opcodes.h:213
@ CMSG_PARTY_INVITE_RESPONSE
Definition: Opcodes.h:603
@ CMSG_QUERY_TIME
Definition: Opcodes.h:659
@ CMSG_INITIATE_ROLE_POLL
Definition: Opcodes.h:438
@ CMSG_AUCTION_REQUEST_FAVORITE_LIST
Definition: Opcodes.h:89
@ CMSG_QUEST_SESSION_REQUEST_START
Definition: Opcodes.h:677
@ CMSG_TABARD_VENDOR_ACTIVATE
Definition: Opcodes.h:842
@ CMSG_GUILD_QUERY_MEMBER_RECIPES
Definition: Opcodes.h:422
@ CMSG_BATTLE_PET_CLEAR_FANFARE
Definition: Opcodes.h:131
@ CMSG_SET_ROLE
Definition: Opcodes.h:794
@ CMSG_CHANGE_BANK_BAG_SLOT_FLAG
Definition: Opcodes.h:186
@ CMSG_LFG_LIST_JOIN
Definition: Opcodes.h:460
@ CMSG_SET_GAME_EVENT_DEBUG_VIEW_STATE
Definition: Opcodes.h:782
@ CMSG_ADD_FRIEND
Definition: Opcodes.h:59
@ CMSG_SET_RAID_DIFFICULTY
Definition: Opcodes.h:792
@ CMSG_MOVE_SET_FACING_HEARTBEAT
Definition: Opcodes.h:558
@ CMSG_REQUEST_RAID_INFO
Definition: Opcodes.h:727
@ CMSG_REQUEST_ACCOUNT_DATA
Definition: Opcodes.h:706
@ CMSG_SET_BACKPACK_SELL_JUNK_DISABLED
Definition: Opcodes.h:770
@ CMSG_AZERITE_EMPOWERED_ITEM_SELECT_POWER
Definition: Opcodes.h:104
@ CMSG_CANCEL_MOD_SPEED_NO_CONTROL_AURAS
Definition: Opcodes.h:176
@ CMSG_GUILD_BANK_SET_TAB_TEXT
Definition: Opcodes.h:401
@ CMSG_RESURRECT_RESPONSE
Definition: Opcodes.h:741
@ CMSG_SELL_ALL_JUNK_ITEMS
Definition: Opcodes.h:754
@ CMSG_CONSUMABLE_TOKEN_BUY_AT_MARKET_PRICE
Definition: Opcodes.h:284
@ CMSG_CALENDAR_GET
Definition: Opcodes.h:160
@ CMSG_QUERY_PET_NAME
Definition: Opcodes.h:650
@ CMSG_LOGOUT_CANCEL
Definition: Opcodes.h:471
@ CMSG_SERVER_TIME_OFFSET_REQUEST
Definition: Opcodes.h:762
@ CMSG_UPDATE_VAS_PURCHASE_STATES
Definition: Opcodes.h:877
@ CMSG_VOICE_CHAT_JOIN_CHANNEL
Definition: Opcodes.h:890
@ CMSG_MOVE_SET_ADV_FLYING_ADD_IMPULSE_MAX_SPEED_ACK
Definition: Opcodes.h:540
@ CMSG_CLASS_TALENTS_DELETE_CONFIG
Definition: Opcodes.h:239
@ CMSG_CANCEL_AUTO_REPEAT_SPELL
Definition: Opcodes.h:171
@ CMSG_SET_SELECTION
Definition: Opcodes.h:796
@ CMSG_OPEN_SHIPMENT_NPC
Definition: Opcodes.h:598
@ CMSG_SET_RESTRICT_PINGS_TO_ASSISTANTS
Definition: Opcodes.h:793
@ CMSG_PETITION_RENAME_GUILD
Definition: Opcodes.h:612
@ CMSG_SET_PVP
Definition: Opcodes.h:791
@ CMSG_CHAT_JOIN_CHANNEL
Definition: Opcodes.h:215
@ CMSG_BATTLEMASTER_JOIN_ARENA
Definition: Opcodes.h:114
@ CMSG_WHO
Definition: Opcodes.h:894
@ CMSG_TRADE_SKILL_SET_FAVORITE
Definition: Opcodes.h:855
@ CMSG_GUILD_INVITE_BY_NAME
Definition: Opcodes.h:415
@ CMSG_HEARTH_AND_RESURRECT
Definition: Opcodes.h:434
@ CMSG_RAF_UPDATE_RECRUITMENT_INFO
Definition: Opcodes.h:688
@ CMSG_TIME_SYNC_RESPONSE_DROPPED
Definition: Opcodes.h:849
@ CMSG_CHARACTER_CHECK_UPGRADE
Definition: Opcodes.h:190
@ CMSG_AUCTION_LIST_ITEMS_BY_ITEM_ID
Definition: Opcodes.h:84
@ CMSG_GUILD_UPDATE_INFO_TEXT
Definition: Opcodes.h:432
@ CMSG_REQUEST_RATED_PVP_INFO
Definition: Opcodes.h:728
@ CMSG_PLAYER_LOGIN
Definition: Opcodes.h:634
@ CMSG_CREATE_CHARACTER
Definition: Opcodes.h:306
@ CMSG_CALENDAR_UPDATE_EVENT
Definition: Opcodes.h:169
@ CMSG_DESTROY_ITEM
Definition: Opcodes.h:315
@ CMSG_CLUB_FINDER_APPLICATION_RESPONSE
Definition: Opcodes.h:254
@ CMSG_MAIL_TAKE_ITEM
Definition: Opcodes.h:488
@ CMSG_REMOVE_NEW_ITEM
Definition: Opcodes.h:693
@ CMSG_ADVENTURE_JOURNAL_OPEN_QUEST
Definition: Opcodes.h:62
@ CMSG_GARRISON_CHECK_UPGRADEABLE
Definition: Opcodes.h:348
@ CMSG_SWAP_GUILD_BANK_ITEM_WITH_GUILD_BANK_ITEM
Definition: Opcodes.h:836
@ CMSG_MOVE_INERTIA_ENABLE_ACK
Definition: Opcodes.h:531
@ CMSG_START_WAR_GAME
Definition: Opcodes.h:827
@ CMSG_CHAT_MESSAGE_PARTY
Definition: Opcodes.h:224
@ CMSG_UPDATE_CLIENT_SETTINGS
Definition: Opcodes.h:872
@ CMSG_LFG_LIST_UPDATE_REQUEST
Definition: Opcodes.h:463
@ CMSG_MOVE_SET_ADV_FLYING_OVER_MAX_DECELERATION_ACK
Definition: Opcodes.h:548
@ CMSG_RESET_INSTANCES
Definition: Opcodes.h:740
@ CMSG_GAME_EVENT_DEBUG_ENABLE
Definition: Opcodes.h:342
@ CMSG_GUILD_DELETE
Definition: Opcodes.h:408
@ CMSG_MOVE_START_FORWARD
Definition: Opcodes.h:571
@ CMSG_VOICE_CHANNEL_STT_TOKEN_REQUEST
Definition: Opcodes.h:889
@ CMSG_AUCTION_HELLO_REQUEST
Definition: Opcodes.h:80
@ CMSG_CLUB_FINDER_RESPOND_TO_APPLICANT
Definition: Opcodes.h:262
@ CMSG_CHAT_CHANNEL_KICK
Definition: Opcodes.h:205
@ CMSG_BATTLEFIELD_PORT
Definition: Opcodes.h:111
@ CMSG_MAIL_RETURN_TO_SENDER
Definition: Opcodes.h:487
@ CMSG_HOTFIX_REQUEST
Definition: Opcodes.h:436
@ CMSG_CANCEL_MASTER_LOOT_ROLL
Definition: Opcodes.h:175
@ CMSG_CONSUMABLE_TOKEN_BUY
Definition: Opcodes.h:283
@ CMSG_REMOVE_RAF_RECRUIT
Definition: Opcodes.h:694
@ CMSG_MOVE_STOP_PITCH
Definition: Opcodes.h:581
@ CMSG_CLASS_TALENTS_SET_STARTER_BUILD_ACTIVE
Definition: Opcodes.h:244
@ CMSG_SPELL_EMPOWER_RESTART
Definition: Opcodes.h:818
@ CMSG_DISCARDED_TIME_SYNC_ACKS
Definition: Opcodes.h:326
@ CMSG_CHAT_CHANNEL_LIST
Definition: Opcodes.h:206
@ CMSG_REQUEST_SCHEDULED_PVP_INFO
Definition: Opcodes.h:730
@ CMSG_PARTY_INVITE
Definition: Opcodes.h:602
@ CMSG_REQUEST_CEMETERY_LIST
Definition: Opcodes.h:709
@ CMSG_BATTLEMASTER_JOIN_RATED_SOLO_SHUFFLE
Definition: Opcodes.h:116
@ CMSG_GUILD_SET_MEMBER_NOTE
Definition: Opcodes.h:429
@ CMSG_BATTLEFIELD_LEAVE
Definition: Opcodes.h:109
@ CMSG_SEND_CHARACTER_CLUB_INVITATION
Definition: Opcodes.h:756
@ CMSG_MOVE_START_STRAFE_LEFT
Definition: Opcodes.h:574
@ CMSG_GARRISON_FULLY_HEAL_ALL_FOLLOWERS
Definition: Opcodes.h:350
@ CMSG_PARTY_UNINVITE
Definition: Opcodes.h:604
@ CMSG_AUTOSTORE_BANK_REAGENT
Definition: Opcodes.h:98
@ CMSG_SET_LOOT_METHOD
Definition: Opcodes.h:784
@ CMSG_SWAP_INV_ITEM
Definition: Opcodes.h:837
@ CMSG_DO_COUNTDOWN
Definition: Opcodes.h:328
@ CMSG_PET_CANCEL_AURA
Definition: Opcodes.h:627
@ CMSG_GET_RAF_ACCOUNT_INFO
Definition: Opcodes.h:380
@ CMSG_CLUB_FINDER_REQUEST_CLUBS_DATA
Definition: Opcodes.h:257
@ CMSG_CLUB_FINDER_REQUEST_CLUBS_LIST
Definition: Opcodes.h:258
@ CMSG_SPLIT_GUILD_BANK_ITEM_TO_INVENTORY
Definition: Opcodes.h:821
@ CMSG_ITEM_PURCHASE_REFUND
Definition: Opcodes.h:443
@ CMSG_CRAFTING_ORDER_UPDATE_IGNORE_LIST
Definition: Opcodes.h:305
@ CMSG_BATTLE_PET_SET_FLAGS
Definition: Opcodes.h:138
@ CMSG_QUERY_PLAYER_NAME_BY_COMMUNITY_ID
Definition: Opcodes.h:653
@ CMSG_TRAINER_BUY_SPELL
Definition: Opcodes.h:856
@ CMSG_CONTRIBUTION_LAST_UPDATE_REQUEST
Definition: Opcodes.h:291
@ CMSG_SWAP_ITEM
Definition: Opcodes.h:838
@ CMSG_CANCEL_QUEUED_SPELL
Definition: Opcodes.h:178
@ CMSG_SET_SAVED_INSTANCE_EXTEND
Definition: Opcodes.h:795
@ CMSG_QUERY_QUEST_ITEM_USABILITY
Definition: Opcodes.h:656
@ CMSG_UNLEARN_SKILL
Definition: Opcodes.h:866
@ CMSG_INITIATE_TRADE
Definition: Opcodes.h:439
@ CMSG_PERKS_PROGRAM_SET_FROZEN_VENDOR_ITEM
Definition: Opcodes.h:609
@ CMSG_INSTANCE_LOCK_RESPONSE
Definition: Opcodes.h:441
@ CMSG_CLUB_FINDER_WHISPER_APPLICANT_REQUEST
Definition: Opcodes.h:263
@ CMSG_GUILD_PROMOTE_MEMBER
Definition: Opcodes.h:420
@ CMSG_GUILD_QUERY_NEWS
Definition: Opcodes.h:423
@ CMSG_QUERY_GUILD_INFO
Definition: Opcodes.h:644
@ CMSG_WORLD_PORT_RESPONSE
Definition: Opcodes.h:896
@ CMSG_KEEP_ALIVE
Definition: Opcodes.h:447
@ CMSG_GUILD_QUERY_MEMBERS_FOR_RECIPE
Definition: Opcodes.h:421
@ CMSG_ENABLE_TAXI_NODE
Definition: Opcodes.h:335
@ CMSG_NEUTRAL_PLAYER_SELECT_FACTION
Definition: Opcodes.h:590
@ CMSG_GARRISON_SWAP_BUILDINGS
Definition: Opcodes.h:371
@ CMSG_GM_TICKET_ACKNOWLEDGE_SURVEY
Definition: Opcodes.h:386
@ CMSG_CONFIRM_ARTIFACT_RESPEC
Definition: Opcodes.h:280
@ CMSG_QUERY_CORPSE_LOCATION_FROM_CLIENT
Definition: Opcodes.h:638
@ CMSG_WHO_IS
Definition: Opcodes.h:895
@ CMSG_PETITION_SHOW_LIST
Definition: Opcodes.h:613
@ CMSG_REQUEST_COVENANT_CALLINGS
Definition: Opcodes.h:712
@ CMSG_SPELL_CLICK
Definition: Opcodes.h:816
@ CMSG_GM_TICKET_GET_CASE_STATUS
Definition: Opcodes.h:387
@ CMSG_GET_ACCOUNT_CHARACTER_LIST
Definition: Opcodes.h:373
@ CMSG_LFG_LIST_DECLINE_APPLICANT
Definition: Opcodes.h:456
@ CMSG_MOVE_GUILD_BANK_ITEM
Definition: Opcodes.h:527
@ CMSG_RESET_CHALLENGE_MODE
Definition: Opcodes.h:738
@ CMSG_BATTLE_PAY_START_VAS_PURCHASE
Definition: Opcodes.h:130
@ CMSG_MOVE_SEAMLESS_TRANSFER_COMPLETE
Definition: Opcodes.h:538
@ CMSG_MOVE_START_TURN_LEFT
Definition: Opcodes.h:577
@ CMSG_GARRISON_MISSION_BONUS_ROLL
Definition: Opcodes.h:356
@ CMSG_PERKS_PROGRAM_REQUEST_REFUND
Definition: Opcodes.h:608
@ CMSG_BATTLE_PET_UPDATE_DISPLAY_NOTIFY
Definition: Opcodes.h:140
@ CMSG_CALENDAR_COMMUNITY_INVITE
Definition: Opcodes.h:156
@ CMSG_QUERY_PLAYER_NAMES
Definition: Opcodes.h:651
@ CMSG_CALENDAR_REMOVE_EVENT
Definition: Opcodes.h:165
@ CMSG_AUCTION_CONFIRM_COMMODITIES_PURCHASE
Definition: Opcodes.h:78
@ CMSG_MOVE_JUMP
Definition: Opcodes.h:533
@ CMSG_REQUEST_LATEST_SPLASH_SCREEN
Definition: Opcodes.h:718
@ CMSG_USE_EQUIPMENT_SET
Definition: Opcodes.h:882
@ CMSG_SET_BANK_AUTOSORT_DISABLED
Definition: Opcodes.h:771
@ CMSG_UPDATE_RAID_TARGET
Definition: Opcodes.h:875
@ CMSG_MOVE_GRAVITY_DISABLE_ACK
Definition: Opcodes.h:525
@ CMSG_MOVE_SET_ADV_FLYING_LIFT_COEFFICIENT_ACK
Definition: Opcodes.h:546
@ CMSG_REQUEST_GARRISON_TALENT_WORLD_QUEST_UNLOCKS
Definition: Opcodes.h:715
@ CMSG_COMMENTATOR_START_WARGAME
Definition: Opcodes.h:273
@ CMSG_CAST_SPELL
Definition: Opcodes.h:183
@ CMSG_GET_GARRISON_INFO
Definition: Opcodes.h:375
@ CMSG_CHAT_CHANNEL_OWNER
Definition: Opcodes.h:208
@ CMSG_REPORT_PVP_PLAYER_AFK
Definition: Opcodes.h:703
@ CMSG_SELL_ITEM
Definition: Opcodes.h:755
@ CMSG_GUILD_BANK_BUY_TAB
Definition: Opcodes.h:396
@ CMSG_SPLIT_GUILD_BANK_ITEM
Definition: Opcodes.h:820
@ CMSG_CHAT_CHANNEL_UNSILENCE_ALL
Definition: Opcodes.h:214
@ CMSG_PET_BATTLE_QUIT_NOTIFY
Definition: Opcodes.h:620
@ CMSG_SET_PET_SLOT
Definition: Opcodes.h:788
@ CMSG_GOSSIP_REFRESH_OPTIONS
Definition: Opcodes.h:389
@ CMSG_BATTLE_PET_DELETE_PET_CHEAT
Definition: Opcodes.h:133
@ CMSG_CONSUMABLE_TOKEN_REDEEM_CONFIRMATION
Definition: Opcodes.h:287
@ CMSG_MOVE_SET_VEHICLE_REC_ID_ACK
Definition: Opcodes.h:565
@ CMSG_BATTLEMASTER_JOIN_BRAWL
Definition: Opcodes.h:115
@ CMSG_QUERY_CORPSE_TRANSPORT
Definition: Opcodes.h:639
@ CMSG_SILENCE_PARTY_TALKER
Definition: Opcodes.h:809
@ CMSG_PETITION_BUY
Definition: Opcodes.h:611
@ CMSG_UPDATE_AADC_STATUS
Definition: Opcodes.h:869
@ CMSG_LFG_LIST_LEAVE
Definition: Opcodes.h:461
@ CMSG_CANCEL_MOUNT_AURA
Definition: Opcodes.h:177
@ CMSG_GARRISON_REQUEST_BLUEPRINT_AND_SPECIALIZATION_DATA
Definition: Opcodes.h:362
@ CMSG_MOVE_SET_ADV_FLYING_PITCHING_RATE_UP_ACK
Definition: Opcodes.h:550
@ CMSG_COMMENTATOR_ENTER_INSTANCE
Definition: Opcodes.h:267
@ CMSG_GUILD_GET_RANKS
Definition: Opcodes.h:413
@ CMSG_ADD_ACCOUNT_COSMETIC
Definition: Opcodes.h:57
@ CMSG_ATTACK_SWING
Definition: Opcodes.h:73
@ CMSG_MOVE_SET_CAN_TURN_WHILE_FALLING_ACK
Definition: Opcodes.h:555
@ CMSG_AUTH_SESSION
Definition: Opcodes.h:94
@ CMSG_VIOLENCE_LEVEL
Definition: Opcodes.h:888
@ CMSG_CHARACTER_UPGRADE_MANUAL_UNREVOKE_REQUEST
Definition: Opcodes.h:192
@ CMSG_CONTENT_TRACKING_START_TRACKING
Definition: Opcodes.h:288
@ CMSG_SEND_PING_WORLD_POINT
Definition: Opcodes.h:760
@ CMSG_ACCEPT_SOCIAL_CONTRACT
Definition: Opcodes.h:50
@ CMSG_WARDEN3_DATA
Definition: Opcodes.h:893
@ CMSG_AZERITE_EMPOWERED_ITEM_VIEWED
Definition: Opcodes.h:105
@ CMSG_CRAFTING_ORDER_LIST_MY_ORDERS
Definition: Opcodes.h:301
@ CMSG_GARRISON_COMPLETE_MISSION
Definition: Opcodes.h:349
@ CMSG_COMMENTATOR_GET_PLAYER_COOLDOWNS
Definition: Opcodes.h:270
@ CMSG_GUILD_BANK_QUERY_TAB
Definition: Opcodes.h:399
@ CMSG_GUILD_CHALLENGE_UPDATE_REQUEST
Definition: Opcodes.h:405
@ CMSG_LEARN_TALENTS
Definition: Opcodes.h:451
@ CMSG_CLASS_TALENTS_REQUEST_NEW_CONFIG
Definition: Opcodes.h:243
@ CMSG_PERKS_PROGRAM_STATUS_REQUEST
Definition: Opcodes.h:610
@ CMSG_MOVE_START_PITCH_UP
Definition: Opcodes.h:573
@ CMSG_MOVE_SET_ADV_FLYING_MAX_VEL_ACK
Definition: Opcodes.h:547
@ CMSG_DF_PROPOSAL_RESPONSE
Definition: Opcodes.h:322
@ CMSG_BATTLEMASTER_HELLO
Definition: Opcodes.h:112
@ CMSG_AUCTION_LIST_OWNED_ITEMS
Definition: Opcodes.h:85
@ CMSG_BUY_BANK_SLOT
Definition: Opcodes.h:151
@ CMSG_UPDATE_AREA_TRIGGER_VISUAL
Definition: Opcodes.h:871
@ CMSG_REQUEST_PARTY_MEMBER_STATS
Definition: Opcodes.h:723
@ CMSG_REORDER_CHARACTERS
Definition: Opcodes.h:695
@ CMSG_VOID_STORAGE_TRANSFER
Definition: Opcodes.h:892
@ CMSG_MOVE_SET_TURN_RATE_CHEAT
Definition: Opcodes.h:564
@ CMSG_PET_BATTLE_SCRIPT_ERROR_NOTIFY
Definition: Opcodes.h:625
@ CMSG_CHAT_REGISTER_ADDON_PREFIXES
Definition: Opcodes.h:230
@ CMSG_GET_ACCOUNT_NOTIFICATIONS
Definition: Opcodes.h:374
@ CMSG_START_SPECTATOR_WAR_GAME
Definition: Opcodes.h:826
@ CMSG_CHOICE_RESPONSE
Definition: Opcodes.h:236
@ CMSG_BLACK_MARKET_BID_ON_ITEM
Definition: Opcodes.h:144
@ CMSG_ADD_TOY
Definition: Opcodes.h:61
@ CMSG_SCENE_TRIGGER_EVENT
Definition: Opcodes.h:752
@ CMSG_GUILD_BANK_UPDATE_TAB
Definition: Opcodes.h:403
@ CMSG_GAME_OBJ_USE
Definition: Opcodes.h:344
@ CMSG_SET_PREFERRED_CEMETERY
Definition: Opcodes.h:790
@ CMSG_MOVE_SET_FLY
Definition: Opcodes.h:559
@ CMSG_REQUEST_FORCED_REACTIONS
Definition: Opcodes.h:714
@ CMSG_MOVE_REMOVE_INERTIA_ACK
Definition: Opcodes.h:535
@ CMSG_MOVE_FORCE_FLIGHT_BACK_SPEED_CHANGE_ACK
Definition: Opcodes.h:514
@ CMSG_QUICK_JOIN_SIGNAL_TOAST_DISPLAYED
Definition: Opcodes.h:684
@ CMSG_CHAT_CHANNEL_ANNOUNCEMENTS
Definition: Opcodes.h:200
@ CMSG_SUSPEND_TOKEN_RESPONSE
Definition: Opcodes.h:835
@ CMSG_CRAFTING_ORDER_RELEASE
Definition: Opcodes.h:303
@ CMSG_SPLIT_ITEM_TO_GUILD_BANK
Definition: Opcodes.h:823
@ CMSG_GARRISON_REQUEST_SHIPMENT_INFO
Definition: Opcodes.h:363
@ CMSG_SAVE_CUF_PROFILES
Definition: Opcodes.h:746
@ STATUS_LOGGEDIN
Definition: Opcodes.h:2117
@ STATUS_LOGGEDIN_OR_RECENTLY_LOGGOUT
Definition: Opcodes.h:2119
@ STATUS_TRANSFER
Definition: Opcodes.h:2118
@ STATUS_NEVER
Definition: Opcodes.h:2120
@ STATUS_AUTHED
Definition: Opcodes.h:2116
@ STATUS_UNHANDLED
Definition: Opcodes.h:2121
@ SMSG_CHARACTER_UPGRADE_COMPLETE
Definition: Opcodes.h:1100
@ SMSG_VOID_TRANSFER_RESULT
Definition: Opcodes.h:2060
@ SMSG_SEND_SPELL_HISTORY
Definition: Opcodes.h:1896
@ SMSG_SET_FACTION_VISIBLE
Definition: Opcodes.h:1912
@ SMSG_MOVE_SPLINE_SET_PITCH_RATE
Definition: Opcodes.h:1609
@ SMSG_GARRISON_AUTO_TROOP_MIN_LEVEL_UPDATE_RESULT
Definition: Opcodes.h:1275
@ SMSG_MOVE_SET_ADV_FLYING_LAUNCH_SPEED_COEFFICIENT
Definition: Opcodes.h:1566
@ SMSG_INSTANCE_ENCOUNTER_ENGAGE_UNIT
Definition: Opcodes.h:1433
@ SMSG_GOSSIP_QUEST_UPDATE
Definition: Opcodes.h:1360
@ SMSG_PET_BATTLE_FIRST_ROUND
Definition: Opcodes.h:1701
@ SMSG_RECEIVE_PING_UNIT
Definition: Opcodes.h:1835
@ SMSG_BATTLE_PAY_DISTRIBUTION_UNREVOKED
Definition: Opcodes.h:1013
@ SMSG_PLAYER_SHOW_PARTY_POSE_UI
Definition: Opcodes.h:1741
@ SMSG_MYTHIC_PLUS_SEASON_DATA
Definition: Opcodes.h:1655
@ SMSG_GUILD_EVENT_NEW_LEADER
Definition: Opcodes.h:1387
@ SMSG_PLAYER_CONDITION_RESULT
Definition: Opcodes.h:1733
@ SMSG_GARRISON_SWAP_BUILDINGS_RESPONSE
Definition: Opcodes.h:1325
@ SMSG_ZONE_UNDER_ATTACK
Definition: Opcodes.h:2082
@ SMSG_GAME_OBJECT_CUSTOM_ANIM
Definition: Opcodes.h:1258
@ SMSG_READ_ITEM_RESULT_FAILED
Definition: Opcodes.h:1831
@ SMSG_BATTLEFIELD_STATUS_NEED_CONFIRMATION
Definition: Opcodes.h:991
@ SMSG_REATTACH_RESURRECT
Definition: Opcodes.h:1834
@ SMSG_GUILD_ROSTER
Definition: Opcodes.h:1419
@ SMSG_GOD_MODE
Definition: Opcodes.h:1355
@ SMSG_MOVE_SPLINE_SET_SWIM_SPEED
Definition: Opcodes.h:1614
@ SMSG_MOVE_SET_FLIGHT_SPEED
Definition: Opcodes.h:1581
@ SMSG_GUILD_EVENT_MOTD
Definition: Opcodes.h:1386
@ SMSG_MOVE_SPLINE_SET_FLYING
Definition: Opcodes.h:1605
@ SMSG_USE_EQUIPMENT_SET_RESULT
Definition: Opcodes.h:2045
@ SMSG_LFG_TELEPORT_DENIED
Definition: Opcodes.h:1500
@ SMSG_READY_CHECK_COMPLETED
Definition: Opcodes.h:1828
@ SMSG_GARRISON_TALENT_UPDATE_SOCKET_DATA
Definition: Opcodes.h:1330
@ SMSG_PET_BATTLE_CHAT_RESTRICTED
Definition: Opcodes.h:1696
@ SMSG_MOVE_SET_FLIGHT_BACK_SPEED
Definition: Opcodes.h:1580
@ SMSG_WEEKLY_REWARDS_PROGRESS_RESULT
Definition: Opcodes.h:2070
@ SMSG_VOID_STORAGE_TRANSFER_CHANGES
Definition: Opcodes.h:2059
@ SMSG_MOVE_SET_ADV_FLYING_SURFACE_FRICTION
Definition: Opcodes.h:1572
@ SMSG_CHECK_ABANDON_NPE
Definition: Opcodes.h:1120
@ SMSG_PLAYER_SAVE_PERSONAL_EMBLEM
Definition: Opcodes.h:1738
@ SMSG_CLOSE_ARTIFACT_FORGE
Definition: Opcodes.h:1133
@ SMSG_SPELL_EMPOWER_UPDATE
Definition: Opcodes.h:1951
@ SMSG_PAUSE_MIRROR_TIMER
Definition: Opcodes.h:1682
@ SMSG_QUERY_PLAYER_NAME_BY_COMMUNITY_ID_RESPONSE
Definition: Opcodes.h:1786
@ SMSG_LFG_PARTY_INFO
Definition: Opcodes.h:1491
@ SMSG_PAGE_TEXT
Definition: Opcodes.h:1673
@ SMSG_LOAD_EQUIPMENT_SET
Definition: Opcodes.h:1507
@ SMSG_UPDATE_CHARACTER_FLAGS
Definition: Opcodes.h:2028
@ SMSG_PET_BATTLE_ROUND_RESULT
Definition: Opcodes.h:1709
@ SMSG_QUEST_SESSION_READY_CHECK_RESPONSE
Definition: Opcodes.h:1810
@ SMSG_WARDEN3_ENABLED
Definition: Opcodes.h:2065
@ SMSG_ITEM_EXPIRE_PURCHASE_REFUND
Definition: Opcodes.h:1462
@ SMSG_DEBUG_MENU_MANAGER_FULL_UPDATE
Definition: Opcodes.h:1195
@ SMSG_LOSS_OF_CONTROL_AURA_UPDATE
Definition: Opcodes.h:1527
@ SMSG_GARRISON_UNLEARN_BLUEPRINT_RESULT
Definition: Opcodes.h:1332
@ SMSG_WARDEN3_DATA
Definition: Opcodes.h:2063
@ SMSG_AUCTION_LIST_BIDDED_ITEMS_RESULT
Definition: Opcodes.h:968
@ SMSG_PERKS_PROGRAM_VENDOR_UPDATE
Definition: Opcodes.h:1688
@ SMSG_REQUEST_SCHEDULED_PVP_INFO_RESPONSE
Definition: Opcodes.h:1847
@ SMSG_GARRISON_GET_CLASS_SPEC_CATEGORY_INFO_RESULT
Definition: Opcodes.h:1297
@ SMSG_GUILD_BANK_QUERY_RESULTS
Definition: Opcodes.h:1373
@ SMSG_DUEL_ARRANGED
Definition: Opcodes.h:1215
@ SMSG_ACCOUNT_COSMETIC_ADDED
Definition: Opcodes.h:903
@ SMSG_MOVE_DISABLE_COLLISION
Definition: Opcodes.h:1546
@ SMSG_GARRISON_REQUEST_BLUEPRINT_AND_SPECIALIZATION_DATA_RESULT
Definition: Opcodes.h:1320
@ SMSG_GUILD_BANK_REMAINING_WITHDRAW_MONEY
Definition: Opcodes.h:1374
@ SMSG_GARRISON_ASSIGN_FOLLOWER_TO_BUILDING_RESULT
Definition: Opcodes.h:1274
@ SMSG_PARTY_COMMAND_RESULT
Definition: Opcodes.h:1674
@ SMSG_MULTI_FLOOR_NEW_FLOOR
Definition: Opcodes.h:1651
@ SMSG_PLAYER_SHOW_ARROW_CALLOUT
Definition: Opcodes.h:1739
@ SMSG_LFG_ROLE_CHECK_UPDATE
Definition: Opcodes.h:1498
@ SMSG_CONSOLE_WRITE
Definition: Opcodes.h:1155
@ SMSG_PROC_RESIST
Definition: Opcodes.h:1763
@ SMSG_NEW_WORLD
Definition: Opcodes.h:1659
@ SMSG_MOVE_UPDATE_PITCH_RATE
Definition: Opcodes.h:1640
@ SMSG_INVALIDATE_PLAYER
Definition: Opcodes.h:1451
@ SMSG_PET_STABLE_RESULT
Definition: Opcodes.h:1721
@ SMSG_VIGNETTE_UPDATE
Definition: Opcodes.h:2052
@ SMSG_CANCEL_ORPHAN_SPELL_VISUAL
Definition: Opcodes.h:1073
@ SMSG_GARRISON_GENERATE_FOLLOWERS_RESULT
Definition: Opcodes.h:1296
@ SMSG_BATTLE_PAY_DISTRIBUTION_ASSIGN_VAS_RESPONSE
Definition: Opcodes.h:1012
@ SMSG_GARRISON_REMOVE_FOLLOWER_FROM_BUILDING_RESULT
Definition: Opcodes.h:1317
@ SMSG_NOTIFY_MONEY
Definition: Opcodes.h:1662
@ SMSG_CRAFTING_ORDER_CREATE_RESULT
Definition: Opcodes.h:1177
@ SMSG_PET_BATTLE_PVP_CHALLENGE
Definition: Opcodes.h:1704
@ SMSG_MOVE_SPLINE_SET_WALK_SPEED
Definition: Opcodes.h:1617
@ SMSG_VOICE_CHANNEL_STT_TOKEN_RESPONSE
Definition: Opcodes.h:2054
@ SMSG_XP_GAIN_ABORTED
Definition: Opcodes.h:2080
@ SMSG_SPELL_CHANNEL_UPDATE
Definition: Opcodes.h:1944
@ SMSG_BATTLE_PET_RESTORED
Definition: Opcodes.h:1031
@ SMSG_CALENDAR_SEND_EVENT
Definition: Opcodes.h:1068
@ SMSG_DISPLAY_PLAYER_CHOICE
Definition: Opcodes.h:1206
@ SMSG_BROADCAST_SUMMON_CAST
Definition: Opcodes.h:1044
@ SMSG_PLAY_SCENE
Definition: Opcodes.h:1750
@ SMSG_MOVE_ENABLE_DOUBLE_JUMP
Definition: Opcodes.h:1552
@ SMSG_QUEST_UPDATE_FAILED
Definition: Opcodes.h:1816
@ SMSG_SPELL_EXECUTE_LOG
Definition: Opcodes.h:1953
@ SMSG_GUILD_CHANGE_NAME_RESULT
Definition: Opcodes.h:1378
@ SMSG_BATTLEFIELD_LIST
Definition: Opcodes.h:986
@ SMSG_DISPLAY_QUEST_POPUP
Definition: Opcodes.h:1208
@ SMSG_BATTLE_PET_JOURNAL_LOCK_ACQUIRED
Definition: Opcodes.h:1029
@ SMSG_LOOT_REMOVED
Definition: Opcodes.h:1522
@ SMSG_TOTEM_CREATED
Definition: Opcodes.h:2001
@ SMSG_INSTANCE_RESET
Definition: Opcodes.h:1446
@ SMSG_AUCTION_LIST_OWNED_ITEMS_RESULT
Definition: Opcodes.h:971
@ SMSG_ARTIFACT_ENDGAME_POWERS_REFUNDED
Definition: Opcodes.h:950
@ SMSG_CLUB_FINDER_LOOKUP_CLUB_POSTINGS_LIST
Definition: Opcodes.h:1136
@ SMSG_LFG_EXPAND_SEARCH_PROMPT
Definition: Opcodes.h:1477
@ SMSG_SEND_RAID_TARGET_UPDATE_ALL
Definition: Opcodes.h:1893
@ SMSG_AE_LOOT_TARGETS
Definition: Opcodes.h:928
@ SMSG_BROADCAST_SUMMON_RESPONSE
Definition: Opcodes.h:1045
@ SMSG_GM_TICKET_CASE_STATUS
Definition: Opcodes.h:1353
@ SMSG_CALENDAR_SEND_NUM_PENDING
Definition: Opcodes.h:1069
@ SMSG_CONSUMABLE_TOKEN_CAN_VETERAN_BUY_RESPONSE
Definition: Opcodes.h:1158
@ SMSG_ACHIEVEMENT_EARNED
Definition: Opcodes.h:914
@ SMSG_GUILD_CHALLENGE_COMPLETED
Definition: Opcodes.h:1376
@ SMSG_MOVE_ROOT
Definition: Opcodes.h:1559
@ SMSG_CONFIRM_PARTY_INVITE
Definition: Opcodes.h:1152
@ SMSG_GUILD_MOVE_STARTING
Definition: Opcodes.h:1409
@ SMSG_RETURNING_PLAYER_PROMPT
Definition: Opcodes.h:1866
@ SMSG_SET_VEHICLE_REC_ID
Definition: Opcodes.h:1929
@ SMSG_ACCOUNT_DATA_TIMES
Definition: Opcodes.h:905
@ SMSG_GAIN_MAW_POWER
Definition: Opcodes.h:1254
@ SMSG_TREASURE_PICKER_RESPONSE
Definition: Opcodes.h:2012
@ SMSG_AUCTIONABLE_TOKEN_SELL_CONFIRM_REQUIRED
Definition: Opcodes.h:961
@ SMSG_OPEN_CONTAINER
Definition: Opcodes.h:1669
@ SMSG_CLUB_FINDER_RESPONSE_CHARACTER_APPLICATION_LIST
Definition: Opcodes.h:1137
@ SMSG_QUERY_REALM_GUILD_MASTER_INFO_RESPONSE
Definition: Opcodes.h:1788
@ SMSG_BLACK_MARKET_BID_ON_ITEM_RESULT
Definition: Opcodes.h:1036
@ SMSG_BATTLE_PET_TRAP_LEVEL
Definition: Opcodes.h:1033
@ SMSG_MOVE_SPLINE_SET_RUN_MODE
Definition: Opcodes.h:1611
@ SMSG_MOVE_DISABLE_GRAVITY
Definition: Opcodes.h:1548
@ SMSG_AURA_POINTS_DEPLETED
Definition: Opcodes.h:976
@ SMSG_UPDATE_CAPTURE_POINT
Definition: Opcodes.h:2026
@ SMSG_VOID_STORAGE_CONTENTS
Definition: Opcodes.h:2057
@ SMSG_RESET_QUEST_POI
Definition: Opcodes.h:1851
@ SMSG_BATTLEFIELD_STATUS_ACTIVE
Definition: Opcodes.h:988
@ SMSG_AUCTION_LIST_ITEMS_RESULT
Definition: Opcodes.h:970
@ SMSG_BATTLENET_RESPONSE
Definition: Opcodes.h:1004
@ SMSG_SPELL_CHANNEL_START
Definition: Opcodes.h:1943
@ SMSG_ATTACK_SWING_LANDED_LOG
Definition: Opcodes.h:958
@ SMSG_GUILD_EVENT_TAB_TEXT_CHANGED
Definition: Opcodes.h:1397
@ SMSG_GUILD_EVENT_TAB_DELETED
Definition: Opcodes.h:1395
@ SMSG_MOVE_SPLINE_SET_SWIM_BACK_SPEED
Definition: Opcodes.h:1613
@ SMSG_AREA_SPIRIT_HEALER_TIME
Definition: Opcodes.h:938
@ SMSG_INSTANCE_ENCOUNTER_TIMER_START
Definition: Opcodes.h:1441
@ SMSG_MOVE_SPLINE_DISABLE_COLLISION
Definition: Opcodes.h:1597
@ SMSG_GUILD_KNOWN_RECIPES
Definition: Opcodes.h:1403
@ SMSG_SHIPMENT_FACTION_UPDATE_RESULT
Definition: Opcodes.h:1931
@ SMSG_GARRISON_BUILDING_ACTIVATED
Definition: Opcodes.h:1276
@ SMSG_PLAY_SPELL_VISUAL
Definition: Opcodes.h:1753
@ SMSG_GARRISON_RESEARCH_TALENT_RESULT
Definition: Opcodes.h:1321
@ SMSG_PLAYER_BONUS_ROLL_FAILED
Definition: Opcodes.h:1729
@ SMSG_MULTI_FLOOR_LEAVE_FLOOR
Definition: Opcodes.h:1650
@ SMSG_MOVE_SET_VEHICLE_REC_ID
Definition: Opcodes.h:1593
@ SMSG_QUEST_UPDATE_ADD_CREDIT
Definition: Opcodes.h:1812
@ SMSG_QUERY_GUILD_INFO_RESPONSE
Definition: Opcodes.h:1779
@ SMSG_CRAFTING_ORDER_REJECT_RESULT
Definition: Opcodes.h:1180
@ SMSG_CHANNEL_LIST
Definition: Opcodes.h:1091
@ SMSG_MOVE_ENABLE_TRANSITION_BETWEEN_SWIM_AND_FLY
Definition: Opcodes.h:1555
@ SMSG_ADD_LOSS_OF_CONTROL
Definition: Opcodes.h:923
@ SMSG_CHAT_NOT_IN_PARTY
Definition: Opcodes.h:1112
@ SMSG_CRAFTING_ORDER_UPDATE_STATE
Definition: Opcodes.h:1182
@ SMSG_MOVE_UNROOT
Definition: Opcodes.h:1625
@ SMSG_REMOVE_ITEM_PASSIVE
Definition: Opcodes.h:1841
@ SMSG_ENCHANTMENT_LOG
Definition: Opcodes.h:1225
@ SMSG_RESTRICTED_ACCOUNT_WARNING
Definition: Opcodes.h:1859
@ SMSG_CHALLENGE_MODE_COMPLETE
Definition: Opcodes.h:1084
@ SMSG_TOTEM_DURATION_CHANGED
Definition: Opcodes.h:2002
@ SMSG_MOVE_SPLINE_UNROOT
Definition: Opcodes.h:1621
@ SMSG_AREA_TRIGGER_RE_PATH
Definition: Opcodes.h:943
@ SMSG_GUILD_EVENT_PRESENCE_CHANGE
Definition: Opcodes.h:1390
@ SMSG_LFG_LIST_APPLICATION_STATUS_UPDATE
Definition: Opcodes.h:1481
@ SMSG_MOVE_SET_RUN_BACK_SPEED
Definition: Opcodes.h:1588
@ SMSG_DEFENSE_MESSAGE
Definition: Opcodes.h:1196
@ SMSG_GARRISON_MAP_DATA_RESPONSE
Definition: Opcodes.h:1304
@ SMSG_VAS_GET_SERVICE_STATUS_RESPONSE
Definition: Opcodes.h:2048
@ SMSG_RESPEC_WIPE_CONFIRM
Definition: Opcodes.h:1854
@ SMSG_GM_TICKET_SYSTEM_STATUS
Definition: Opcodes.h:1354
@ SMSG_INSTANCE_ENCOUNTER_UPDATE_ALLOW_RELEASE_IN_PROGRESS
Definition: Opcodes.h:1442
@ SMSG_BATTLENET_CHALLENGE_ABORT
Definition: Opcodes.h:1001
@ SMSG_RAID_DIFFICULTY_SET
Definition: Opcodes.h:1822
@ SMSG_CALENDAR_CLEAR_PENDING_ACTION
Definition: Opcodes.h:1050
@ SMSG_CALENDAR_COMMAND_RESULT
Definition: Opcodes.h:1051
@ SMSG_RESPONSE_PERK_PENDING_REWARDS
Definition: Opcodes.h:1856
@ SMSG_MOVE_REMOVE_INERTIA
Definition: Opcodes.h:1557
@ SMSG_MOVE_SPLINE_SET_HOVER
Definition: Opcodes.h:1606
@ SMSG_PET_TAME_FAILURE
Definition: Opcodes.h:1722
@ SMSG_PET_ACTION_FEEDBACK
Definition: Opcodes.h:1694
@ SMSG_SPELL_FAILURE
Definition: Opcodes.h:1955
@ SMSG_SET_FACTION_STANDING
Definition: Opcodes.h:1911
@ SMSG_PET_SPELLS_MESSAGE
Definition: Opcodes.h:1720
@ SMSG_PET_BATTLE_INITIAL_UPDATE
Definition: Opcodes.h:1702
@ SMSG_RAID_INSTANCE_MESSAGE
Definition: Opcodes.h:1824
@ SMSG_GARRISON_PLOT_REMOVED
Definition: Opcodes.h:1312
@ SMSG_COOLDOWN_EVENT
Definition: Opcodes.h:1166
@ SMSG_QUERY_GAME_OBJECT_RESPONSE
Definition: Opcodes.h:1776
@ SMSG_DUEL_OUT_OF_BOUNDS
Definition: Opcodes.h:1219
@ SMSG_CRAFTING_ORDER_FULFILL_RESULT
Definition: Opcodes.h:1178
@ SMSG_GARRISON_FOLLOWER_CHANGED_ITEM_LEVEL
Definition: Opcodes.h:1292
@ SMSG_QUEST_GIVER_INVALID_QUEST
Definition: Opcodes.h:1793
@ SMSG_GARRISON_USE_RECALL_PORTAL_RESULT
Definition: Opcodes.h:1337
@ SMSG_SCENARIO_SHOW_CRITERIA
Definition: Opcodes.h:1877
@ SMSG_UPDATE_GAME_TIME_STATE
Definition: Opcodes.h:2034
@ SMSG_CLEAR_BOSS_EMOTES
Definition: Opcodes.h:1126
@ SMSG_PLAYER_CHOICE_DISPLAY_ERROR
Definition: Opcodes.h:1732
@ SMSG_ACCOUNT_HEIRLOOM_UPDATE
Definition: Opcodes.h:2085
@ SMSG_PET_BATTLE_QUEUE_PROPOSE_MATCH
Definition: Opcodes.h:1705
@ SMSG_ACCOUNT_MOUNT_REMOVED
Definition: Opcodes.h:907
@ SMSG_CACHE_INFO
Definition: Opcodes.h:1048
@ SMSG_BATTLE_PET_REVOKED
Definition: Opcodes.h:1032
@ SMSG_SPELL_INTERRUPT_LOG
Definition: Opcodes.h:1961
@ SMSG_RETURN_APPLICANT_LIST
Definition: Opcodes.h:1867
@ SMSG_TRAIT_CONFIG_COMMIT_FAILED
Definition: Opcodes.h:2009
@ SMSG_USERLIST_REMOVE
Definition: Opcodes.h:2043
@ SMSG_BATTLENET_CHALLENGE_START
Definition: Opcodes.h:1002
@ SMSG_GUILD_PARTY_STATE
Definition: Opcodes.h:1413
@ SMSG_GET_TROPHY_LIST_RESPONSE
Definition: Opcodes.h:1348
@ SMSG_GARRISON_CHANGE_MISSION_START_TIME_RESULT
Definition: Opcodes.h:1279
@ SMSG_ITEM_CHANGED
Definition: Opcodes.h:1459
@ SMSG_SPELL_EMPOWER_START
Definition: Opcodes.h:1950
@ SMSG_LFG_LIST_UPDATE_EXPIRATION
Definition: Opcodes.h:1488
@ SMSG_SCENE_OBJECT_PET_BATTLE_ROUND_RESULT
Definition: Opcodes.h:1887
@ SMSG_COMPLETE_SHIPMENT_RESPONSE
Definition: Opcodes.h:1151
@ SMSG_MOVE_SPLINE_SET_WATER_WALK
Definition: Opcodes.h:1618
@ SMSG_TITLE_LOST
Definition: Opcodes.h:2000
@ SMSG_SPELL_FAILURE_MESSAGE
Definition: Opcodes.h:1956
@ SMSG_CHARACTER_CHECK_UPGRADE_RESULT
Definition: Opcodes.h:1095
@ SMSG_INSTANCE_ENCOUNTER_IN_COMBAT_RESURRECTION
Definition: Opcodes.h:1435
@ SMSG_GOSSIP_MESSAGE
Definition: Opcodes.h:1357
@ SMSG_LFG_UPDATE_STATUS
Definition: Opcodes.h:1501
@ SMSG_LEVEL_LINKING_RESULT
Definition: Opcodes.h:1473
@ SMSG_ROLE_CHOSEN
Definition: Opcodes.h:1870
@ SMSG_TIME_SYNC_REQUEST
Definition: Opcodes.h:1998
@ SMSG_SET_PROFICIENCY
Definition: Opcodes.h:1924
@ SMSG_CLUB_FINDER_WHISPER_APPLICANT_RESPONSE
Definition: Opcodes.h:1140
@ SMSG_DELETE_EXPIRED_MISSIONS_RESULT
Definition: Opcodes.h:1198
@ SMSG_LFG_LIST_JOIN_RESULT
Definition: Opcodes.h:1483
@ SMSG_BATTLE_PAY_START_CHECKOUT
Definition: Opcodes.h:1020
@ SMSG_MOVE_UPDATE_REMOVE_MOVEMENT_FORCE
Definition: Opcodes.h:1642
@ SMSG_BATTLENET_NOTIFICATION
Definition: Opcodes.h:1003
@ SMSG_GARRISON_RENAME_FOLLOWER_RESULT
Definition: Opcodes.h:1319
@ SMSG_CHAIN_MISSILE_BOUNCE
Definition: Opcodes.h:1083
@ SMSG_QUEST_GIVER_QUEST_COMPLETE
Definition: Opcodes.h:1795
@ SMSG_MOVE_UPDATE_TELEPORT
Definition: Opcodes.h:1647
@ SMSG_CHAT_DOWN
Definition: Opcodes.h:1109
@ SMSG_DISPLAY_PROMOTION
Definition: Opcodes.h:1207
@ SMSG_INSTANCE_ENCOUNTER_START
Definition: Opcodes.h:1440
@ SMSG_LOBBY_MATCHMAKER_PARTY_INFO
Definition: Opcodes.h:1508
@ SMSG_BATTLE_PET_CAGE_DATE_ERROR
Definition: Opcodes.h:1025
@ SMSG_COVENANT_PREVIEW_OPEN_NPC
Definition: Opcodes.h:1171
@ SMSG_GAME_OBJECT_PLAY_SPELL_VISUAL_KIT
Definition: Opcodes.h:1262
@ SMSG_REPORT_PVP_PLAYER_AFK_RESULT
Definition: Opcodes.h:1844
@ SMSG_GUILD_EVENT_BANK_MONEY_CHANGED
Definition: Opcodes.h:1383
@ SMSG_CALENDAR_INVITE_REMOVED
Definition: Opcodes.h:1059
@ SMSG_SUSPEND_COMMS
Definition: Opcodes.h:1988
@ SMSG_MISSILE_CANCEL
Definition: Opcodes.h:1539
@ SMSG_QUEST_COMPLETION_NPC_RESPONSE
Definition: Opcodes.h:1790
@ SMSG_MOVE_UPDATE_ADD_IMPULSE
Definition: Opcodes.h:1632
@ SMSG_SUSPEND_TOKEN
Definition: Opcodes.h:1989
@ SMSG_INITIALIZE_FACTIONS
Definition: Opcodes.h:1426
@ SMSG_ITEM_PUSH_RESULT
Definition: Opcodes.h:1465
@ SMSG_MOVE_KNOCK_BACK
Definition: Opcodes.h:1556
@ SMSG_MOVE_UPDATE_APPLY_MOVEMENT_FORCE
Definition: Opcodes.h:1634
@ SMSG_GUILD_ACHIEVEMENT_EARNED
Definition: Opcodes.h:1370
@ SMSG_ADVENTURE_JOURNAL_DATA_RESPONSE
Definition: Opcodes.h:927
@ SMSG_RAF_DEBUG_FRIEND_MONTHS
Definition: Opcodes.h:1821
@ SMSG_RECEIVE_PING_WORLD_POINT
Definition: Opcodes.h:1836
@ SMSG_INVENTORY_FULL_OVERFLOW
Definition: Opcodes.h:1455
@ SMSG_UI_MAP_QUEST_LINES_RESPONSE
Definition: Opcodes.h:2017
@ SMSG_GUILD_INVITE_EXPIRED
Definition: Opcodes.h:1401
@ SMSG_GUILD_EVENT_TAB_MODIFIED
Definition: Opcodes.h:1396
@ SMSG_PLAY_SPELL_VISUAL_KIT
Definition: Opcodes.h:1754
@ SMSG_INVALID_PROMOTION_CODE
Definition: Opcodes.h:1452
@ SMSG_PET_BATTLE_REPLACEMENTS_MADE
Definition: Opcodes.h:1707
@ SMSG_ACCOUNT_CRITERIA_UPDATE
Definition: Opcodes.h:904
@ SMSG_MOVE_SPLINE_SET_NORMAL_FALL
Definition: Opcodes.h:1608
@ SMSG_TRIGGER_CINEMATIC
Definition: Opcodes.h:2013
@ SMSG_PET_CLEAR_SPELLS
Definition: Opcodes.h:1712
@ SMSG_GARRISON_DELETE_RESULT
Definition: Opcodes.h:1289
@ SMSG_GAME_OBJECT_INTERACTION
Definition: Opcodes.h:1260
@ SMSG_ENCOUNTER_START
Definition: Opcodes.h:1227
@ SMSG_MOVE_ENABLE_INERTIA
Definition: Opcodes.h:1554
@ SMSG_PLAYER_ACKOWLEDGE_ARROW_CALLOUT
Definition: Opcodes.h:1726
@ SMSG_BATTLE_NET_CONNECTION_STATUS
Definition: Opcodes.h:1005
@ SMSG_INSPECT_RESULT
Definition: Opcodes.h:1429
@ SMSG_LFG_LIST_APPLY_TO_GROUP_RESULT
Definition: Opcodes.h:1482
@ SMSG_BUY_FAILED
Definition: Opcodes.h:1046
@ SMSG_BATTLEFIELD_PORT_DENIED
Definition: Opcodes.h:987
@ SMSG_SET_CHR_UPGRADE_TIER
Definition: Opcodes.h:1905
@ SMSG_MOVE_SET_ADV_FLYING_PITCHING_RATE_DOWN
Definition: Opcodes.h:1570
@ SMSG_AURA_UPDATE
Definition: Opcodes.h:977
@ SMSG_AUCTION_REPLICATE_RESPONSE
Definition: Opcodes.h:974
@ SMSG_QUERY_QUEST_INFO_RESPONSE
Definition: Opcodes.h:1787
@ SMSG_ARENA_TEAM_STATS
Definition: Opcodes.h:2090
@ SMSG_GET_LANDING_PAGE_SHIPMENTS_RESPONSE
Definition: Opcodes.h:1342
@ SMSG_SET_DUNGEON_DIFFICULTY
Definition: Opcodes.h:1908
@ SMSG_OPEN_SHIPMENT_NPC_RESULT
Definition: Opcodes.h:1671
@ SMSG_GARRISON_REMOVE_EVENT
Definition: Opcodes.h:1315
@ SMSG_PET_BATTLE_FINALIZE_LOCATION
Definition: Opcodes.h:1698
@ SMSG_BACKPACK_DEFAULT_SIZE_CHANGED
Definition: Opcodes.h:982
@ SMSG_BATTLE_PAY_VALIDATE_PURCHASE_RESPONSE
Definition: Opcodes.h:1023
@ SMSG_GARRISON_UPDATE_MISSION_CHEAT_RESULT
Definition: Opcodes.h:1335
@ SMSG_TIME_ADJUSTMENT
Definition: Opcodes.h:1997
@ SMSG_UNLEARNED_SPELLS
Definition: Opcodes.h:2020
@ SMSG_QUERY_BATTLE_PET_NAME_RESPONSE
Definition: Opcodes.h:1774
@ SMSG_BAG_CLEANUP_FINISHED
Definition: Opcodes.h:983
@ SMSG_CLUB_FINDER_ERROR_MESSAGE
Definition: Opcodes.h:1134
@ SMSG_SOCKET_GEMS_SUCCESS
Definition: Opcodes.h:1938
@ SMSG_GARRISON_BUILDING_SET_ACTIVE_SPECIALIZATION_RESULT
Definition: Opcodes.h:1278
@ SMSG_TRAINER_BUY_FAILED
Definition: Opcodes.h:2007
@ SMSG_WHO
Definition: Opcodes.h:2073
@ SMSG_MOVE_UPDATE_APPLY_INERTIA
Definition: Opcodes.h:1633
@ SMSG_QUERY_PAGE_TEXT_RESPONSE
Definition: Opcodes.h:1782
@ SMSG_SET_PLAYER_DECLINED_NAMES_RESULT
Definition: Opcodes.h:1922
@ SMSG_QUEST_GIVER_STATUS
Definition: Opcodes.h:1800
@ SMSG_CHANNEL_NOTIFY
Definition: Opcodes.h:1092
@ SMSG_CHALLENGE_MODE_START
Definition: Opcodes.h:1087
@ SMSG_SELL_RESPONSE
Definition: Opcodes.h:1890
@ SMSG_CALENDAR_INVITE_ADDED
Definition: Opcodes.h:1055
@ SMSG_COVENANT_RENOWN_SEND_CATCHUP_STATE
Definition: Opcodes.h:1172
@ SMSG_WARDEN3_DISABLED
Definition: Opcodes.h:2064
@ SMSG_GARRISON_UPDATE_FOLLOWER
Definition: Opcodes.h:1333
@ SMSG_CALENDAR_EVENT_UPDATED_ALERT
Definition: Opcodes.h:1054
@ SMSG_MOVE_SPLINE_SET_TURN_RATE
Definition: Opcodes.h:1615
@ SMSG_MOVE_SET_NORMAL_FALL
Definition: Opcodes.h:1586
@ SMSG_SET_PET_SPECIALIZATION
Definition: Opcodes.h:1921
@ SMSG_LOOT_RESPONSE
Definition: Opcodes.h:1523
@ SMSG_PAST_TIME_EVENTS
Definition: Opcodes.h:1681
@ SMSG_PETITION_SHOW_LIST
Definition: Opcodes.h:1691
@ SMSG_PLAYER_SKINNED
Definition: Opcodes.h:1743
@ SMSG_QUEST_POI_UPDATE_RESPONSE
Definition: Opcodes.h:1806
@ SMSG_DUEL_WINNER
Definition: Opcodes.h:1221
@ SMSG_CLEAR_RESURRECT
Definition: Opcodes.h:1129
@ SMSG_CALENDAR_SEND_CALENDAR
Definition: Opcodes.h:1067
@ SMSG_CROSSED_INEBRIATION_THRESHOLD
Definition: Opcodes.h:1189
@ SMSG_GARRISON_COLLECTION_REMOVE_ENTRY
Definition: Opcodes.h:1283
@ SMSG_MOVE_SET_ADV_FLYING_BANKING_RATE
Definition: Opcodes.h:1563
@ SMSG_READ_ITEM_RESULT_OK
Definition: Opcodes.h:1832
@ SMSG_PETITION_SHOW_SIGNATURES
Definition: Opcodes.h:1692
@ SMSG_TRIGGER_MOVIE
Definition: Opcodes.h:2014
@ SMSG_DISPLAY_GAME_ERROR
Definition: Opcodes.h:1205
@ SMSG_RESPOND_INSPECT_ACHIEVEMENTS
Definition: Opcodes.h:1855
@ SMSG_AREA_TRIGGER_UPDATE_DECAL_PROPERTIES
Definition: Opcodes.h:946
@ SMSG_PARTY_MEMBER_PARTIAL_STATE
Definition: Opcodes.h:1678
@ SMSG_AREA_TRIGGER_UNATTACH
Definition: Opcodes.h:945
@ SMSG_GAME_OBJECT_SET_STATE_LOCAL
Definition: Opcodes.h:1264
@ SMSG_SET_SPELL_CHARGES
Definition: Opcodes.h:1927
@ SMSG_CONSUMABLE_TOKEN_REDEEM_RESPONSE
Definition: Opcodes.h:1160
@ SMSG_CAN_DUEL_RESULT
Definition: Opcodes.h:1079
@ SMSG_BATTLE_PAY_DISTRIBUTION_UPDATE
Definition: Opcodes.h:1014
@ SMSG_QUERY_GUILD_FOLLOW_INFO_RESPONSE
Definition: Opcodes.h:1778
@ SMSG_CANCEL_COMBAT
Definition: Opcodes.h:1072
@ SMSG_GARRISON_PLOT_PLACED
Definition: Opcodes.h:1311
@ SMSG_WHO_IS
Definition: Opcodes.h:2074
@ SMSG_SPEC_INVOLUNTARILY_CHANGED
Definition: Opcodes.h:1940
@ SMSG_MYTHIC_PLUS_ALL_MAP_STATS
Definition: Opcodes.h:1652
@ SMSG_CRAFTING_ORDER_CLAIM_RESULT
Definition: Opcodes.h:1175
@ SMSG_PET_NAME_INVALID
Definition: Opcodes.h:1718
@ SMSG_SET_FORCED_REACTIONS
Definition: Opcodes.h:1914
@ SMSG_SPELL_NON_MELEE_DAMAGE_LOG
Definition: Opcodes.h:1963
@ SMSG_BREAK_TARGET
Definition: Opcodes.h:1042
@ SMSG_CLEAR_TARGET
Definition: Opcodes.h:1131
@ SMSG_INSTANCE_ENCOUNTER_OBJECTIVE_START
Definition: Opcodes.h:1437
@ SMSG_BLACK_MARKET_REQUEST_ITEMS_RESULT
Definition: Opcodes.h:1038
@ SMSG_MOVE_SET_ADV_FLYING_LIFT_COEFFICIENT
Definition: Opcodes.h:1567
@ SMSG_RETURN_RECRUITING_CLUBS
Definition: Opcodes.h:1868
@ SMSG_QUERY_PET_NAME_RESPONSE
Definition: Opcodes.h:1784
@ SMSG_GOSSIP_POI
Definition: Opcodes.h:1359
@ SMSG_DISMOUNT_RESULT
Definition: Opcodes.h:1203
@ SMSG_PVP_CREDIT
Definition: Opcodes.h:1766
@ SMSG_RANDOM_ROLL
Definition: Opcodes.h:1826
@ SMSG_GARRISON_UPDATE_GARRISON_MONUMENT_SELECTIONS
Definition: Opcodes.h:1334
@ SMSG_GROUP_UNINVITE
Definition: Opcodes.h:1368
@ SMSG_GUILD_BANK_TEXT_QUERY_RESULT
Definition: Opcodes.h:1375
@ SMSG_TRADE_STATUS
Definition: Opcodes.h:2005
@ SMSG_RUNEFORGE_LEGENDARY_CRAFTING_OPEN_NPC
Definition: Opcodes.h:1872
@ SMSG_SETUP_CURRENCY
Definition: Opcodes.h:1902
@ SMSG_BATTLEGROUND_PLAYER_POSITIONS
Definition: Opcodes.h:999
@ SMSG_QUEST_UPDATE_COMPLETE
Definition: Opcodes.h:1815
@ SMSG_PVP_MATCH_SET_STATE
Definition: Opcodes.h:1769
@ SMSG_CORPSE_TRANSPORT_QUERY
Definition: Opcodes.h:1169
@ SMSG_RAF_ACTIVITY_STATE_CHANGED
Definition: Opcodes.h:1820
@ SMSG_MOVE_SPLINE_UNSET_HOVER
Definition: Opcodes.h:1623
@ SMSG_UPDATE_EXPANSION_LEVEL
Definition: Opcodes.h:2033
@ SMSG_LEVEL_UP_INFO
Definition: Opcodes.h:1474
@ SMSG_PVP_MATCH_COMPLETE
Definition: Opcodes.h:1767
@ SMSG_CALENDAR_EVENT_REMOVED_ALERT
Definition: Opcodes.h:1053
@ SMSG_WORLD_SERVER_INFO
Definition: Opcodes.h:2077
@ SMSG_SET_LOOT_METHOD_FAILED
Definition: Opcodes.h:1916
@ SMSG_RESET_LAST_LOADED_CONFIG_CVARS
Definition: Opcodes.h:1850
@ SMSG_GET_SHIPMENT_INFO_RESPONSE
Definition: Opcodes.h:1347
@ SMSG_GARRISON_MISSION_REQUEST_REWARD_INFO_RESPONSE
Definition: Opcodes.h:1306
@ SMSG_LOOT_ALL_PASSED
Definition: Opcodes.h:1517
@ SMSG_FORCE_OBJECT_RELINK
Definition: Opcodes.h:1251
@ SMSG_GARRISON_FOLLOWER_CHANGED_FLAGS
Definition: Opcodes.h:1291
@ SMSG_GUILD_EVENT_TAB_ADDED
Definition: Opcodes.h:1394
@ SMSG_REMOVE_SPELL_FROM_ACTION_BAR
Definition: Opcodes.h:1842
@ SMSG_UPDATE_CRAFTING_NPC_RECIPES
Definition: Opcodes.h:2031
@ SMSG_PLAYER_BOUND
Definition: Opcodes.h:1730
@ SMSG_DUEL_IN_BOUNDS
Definition: Opcodes.h:1218
@ SMSG_SUMMON_CANCEL
Definition: Opcodes.h:1984
@ SMSG_UPDATE_ACCOUNT_DATA
Definition: Opcodes.h:2023
@ SMSG_INTERRUPT_POWER_REGEN
Definition: Opcodes.h:1449
@ SMSG_PET_GOD_MODE
Definition: Opcodes.h:1714
@ SMSG_SPELL_MISS_LOG
Definition: Opcodes.h:1962
@ SMSG_CLUB_FINDER_GET_CLUB_POSTING_IDS_RESPONSE
Definition: Opcodes.h:1135
@ SMSG_SEND_SPELL_CHARGES
Definition: Opcodes.h:1895
@ SMSG_COMMERCE_TOKEN_UPDATE
Definition: Opcodes.h:1149
@ SMSG_CHALLENGE_MODE_REQUEST_LEADERS_RESULT
Definition: Opcodes.h:1085
@ SMSG_AREA_TRIGGER_NO_CORPSE
Definition: Opcodes.h:941
@ SMSG_MOVE_UPDATE_FLIGHT_SPEED
Definition: Opcodes.h:1637
@ SMSG_BUY_SUCCEEDED
Definition: Opcodes.h:1047
@ SMSG_UNDELETE_COOLDOWN_STATUS_RESPONSE
Definition: Opcodes.h:2019
@ SMSG_SEASON_INFO
Definition: Opcodes.h:1889
@ SMSG_UPDATE_CHARGE_CATEGORY_COOLDOWN
Definition: Opcodes.h:2029
@ SMSG_MOVE_SET_PITCH_RATE
Definition: Opcodes.h:1587
@ SMSG_ROLE_POLL_INFORM
Definition: Opcodes.h:1871
@ SMSG_QUERY_ITEM_TEXT_RESPONSE
Definition: Opcodes.h:1780
@ SMSG_SPELL_PERIODIC_AURA_LOG
Definition: Opcodes.h:1965
@ SMSG_MOVE_SET_COLLISION_HEIGHT
Definition: Opcodes.h:1577
@ SMSG_GET_SHIPMENTS_OF_TYPE_RESPONSE
Definition: Opcodes.h:1346
@ SMSG_ENCOUNTER_END
Definition: Opcodes.h:1226
@ SMSG_LFG_DISABLED
Definition: Opcodes.h:1476
@ SMSG_ACCOUNT_NOTIFICATIONS_RESPONSE
Definition: Opcodes.h:909
@ SMSG_CALENDAR_INVITE_NOTES_ALERT
Definition: Opcodes.h:1058
@ SMSG_CHANGE_PLAYER_DIFFICULTY_RESULT
Definition: Opcodes.h:1089
@ SMSG_END_LIGHTNING_STORM
Definition: Opcodes.h:1228
@ SMSG_PLAY_OBJECT_SOUND
Definition: Opcodes.h:1747
@ SMSG_GARRISON_FOLLOWER_ACTIVATIONS_SET
Definition: Opcodes.h:1290
@ SMSG_GENERATE_SSO_TOKEN_RESPONSE
Definition: Opcodes.h:1339
@ SMSG_GARRISON_LEARN_SPECIALIZATION_RESULT
Definition: Opcodes.h:1301
@ SMSG_GARRISON_SWITCH_TALENT_TREE_BRANCH
Definition: Opcodes.h:1326
@ SMSG_LIVE_REGION_CHARACTER_COPY_RESULT
Definition: Opcodes.h:1503
@ SMSG_ATTACKER_STATE_UPDATE
Definition: Opcodes.h:954
@ SMSG_ALL_GUILD_ACHIEVEMENTS
Definition: Opcodes.h:934
@ SMSG_NOTIFY_RECEIVED_MAIL
Definition: Opcodes.h:1663
@ SMSG_INSTANCE_ENCOUNTER_DISENGAGE_UNIT
Definition: Opcodes.h:1431
@ SMSG_MOVE_SPLINE_SET_LAND_WALK
Definition: Opcodes.h:1607
@ SMSG_PROFESSION_GOSSIP
Definition: Opcodes.h:1764
@ SMSG_LOGOUT_RESPONSE
Definition: Opcodes.h:1515
@ SMSG_BATTLEFIELD_STATUS_GROUP_PROPOSAL_FAILED
Definition: Opcodes.h:990
@ SMSG_CRITERIA_DELETED
Definition: Opcodes.h:1187
@ SMSG_PENDING_RAID_LOCK
Definition: Opcodes.h:1683
@ SMSG_CONSUMABLE_TOKEN_REDEEM_CONFIRM_REQUIRED
Definition: Opcodes.h:1159
@ SMSG_START_LIGHTNING_STORM
Definition: Opcodes.h:1974
@ SMSG_ACCOUNT_TOY_UPDATE
Definition: Opcodes.h:910
@ SMSG_DISPEL_FAILED
Definition: Opcodes.h:1204
@ SMSG_MOVE_UPDATE_FLIGHT_BACK_SPEED
Definition: Opcodes.h:1636
@ SMSG_LOOT_LIST
Definition: Opcodes.h:1518
@ SMSG_PARTY_MEMBER_FULL_STATE
Definition: Opcodes.h:1677
@ SMSG_CHAT_SERVER_MESSAGE
Definition: Opcodes.h:1118
@ SMSG_PARTY_NOTIFY_LFG_LEADER_CHANGE
Definition: Opcodes.h:1679
@ SMSG_MODIFY_COOLDOWN
Definition: Opcodes.h:1540
@ SMSG_LFG_PLAYER_INFO
Definition: Opcodes.h:1492
@ SMSG_BATTLE_PET_JOURNAL
Definition: Opcodes.h:1028
@ SMSG_MOVE_UPDATE_WALK_SPEED
Definition: Opcodes.h:1649
@ SMSG_EXPECTED_SPAM_RECORDS
Definition: Opcodes.h:1235
@ SMSG_PERKS_PROGRAM_DISABLED
Definition: Opcodes.h:1686
@ SMSG_GARRISON_REMOVE_FOLLOWER_RESULT
Definition: Opcodes.h:1318
@ SMSG_MOVE_SET_CAN_TURN_WHILE_FALLING
Definition: Opcodes.h:1576
@ SMSG_MOVE_SPLINE_DISABLE_GRAVITY
Definition: Opcodes.h:1598
@ SMSG_GUILD_RANKS
Definition: Opcodes.h:1415
@ SMSG_CLUB_FINDER_RESPONSE_POST_RECRUITMENT_MESSAGE
Definition: Opcodes.h:1138
@ SMSG_LFG_INSTANCE_SHUTDOWN_COUNTDOWN
Definition: Opcodes.h:1478
@ SMSG_GET_GARRISON_INFO_RESULT
Definition: Opcodes.h:1341
@ SMSG_PARTY_INVITE
Definition: Opcodes.h:1675
@ SMSG_GM_REQUEST_PLAYER_INFO
Definition: Opcodes.h:1352
@ SMSG_QUEST_GIVER_REQUEST_ITEMS
Definition: Opcodes.h:1799
@ SMSG_SCENARIO_COMPLETED
Definition: Opcodes.h:1874
@ SMSG_GROUP_DESTROYED
Definition: Opcodes.h:1365
@ SMSG_CALENDAR_RAID_LOCKOUT_ADDED
Definition: Opcodes.h:1064
@ SMSG_GAME_TIME_UPDATE
Definition: Opcodes.h:1267
@ SMSG_GUILD_INVITE_DECLINED
Definition: Opcodes.h:1400
@ SMSG_LOBBY_MATCHMAKER_PARTY_INVITE_REJECTED
Definition: Opcodes.h:1509
@ SMSG_NEUTRAL_PLAYER_FACTION_SELECT_RESULT
Definition: Opcodes.h:1656
@ SMSG_WARGAME_REQUEST_SUCCESSFULLY_SENT_TO_OPPONENT
Definition: Opcodes.h:2068
@ SMSG_MOVE_ENABLE_COLLISION
Definition: Opcodes.h:1551
@ SMSG_AUCTION_CLOSED_NOTIFICATION
Definition: Opcodes.h:962
@ SMSG_REPLACE_TROPHY_RESPONSE
Definition: Opcodes.h:1843
@ SMSG_GARRISON_CLEAR_EVENT_LIST
Definition: Opcodes.h:1281
@ SMSG_SEND_ITEM_PASSIVES
Definition: Opcodes.h:1891
@ SMSG_MOVE_SET_IGNORE_MOVEMENT_FORCES
Definition: Opcodes.h:1583
@ SMSG_REQUEST_CEMETERY_LIST_RESPONSE
Definition: Opcodes.h:1845
@ SMSG_LFG_READY_CHECK_UPDATE
Definition: Opcodes.h:1497
@ SMSG_SEND_RAID_TARGET_UPDATE_SINGLE
Definition: Opcodes.h:1894
@ SMSG_CRAFT_ENCHANT_RESULT
Definition: Opcodes.h:1183
@ SMSG_GOSSIP_OPTION_NPC_INTERACTION
Definition: Opcodes.h:1358
@ SMSG_SET_FACTION_NOT_VISIBLE
Definition: Opcodes.h:1910
@ SMSG_GROUP_NEW_LEADER
Definition: Opcodes.h:1366
@ SMSG_LFG_SLOT_INVALID
Definition: Opcodes.h:1499
@ SMSG_SPELL_DISPELL_LOG
Definition: Opcodes.h:1948
@ SMSG_GARRISON_FOLLOWER_FATIGUE_CLEARED
Definition: Opcodes.h:1295
@ SMSG_PET_BATTLE_MAX_GAME_LENGTH_WARNING
Definition: Opcodes.h:1703
@ SMSG_XP_AWARDED_FROM_CURRENCY
Definition: Opcodes.h:2079
@ SMSG_QUEST_GIVER_STATUS_MULTIPLE
Definition: Opcodes.h:1801
@ SMSG_NEW_DATA_BUILD
Definition: Opcodes.h:1657
@ SMSG_INITIAL_SETUP
Definition: Opcodes.h:1427
@ SMSG_SPELL_PREPARE
Definition: Opcodes.h:1966
@ SMSG_GUILD_CRITERIA_DELETED
Definition: Opcodes.h:1380
@ SMSG_ITEM_COOLDOWN
Definition: Opcodes.h:1460
@ SMSG_TRANSFER_PENDING
Definition: Opcodes.h:2011
@ SMSG_UPDATE_AADC_STATUS_RESPONSE
Definition: Opcodes.h:2022
@ SMSG_CHAR_FACTION_CHANGE_RESULT
Definition: Opcodes.h:1105
@ SMSG_GUILD_CRITERIA_UPDATE
Definition: Opcodes.h:1381
@ SMSG_BLACK_MARKET_WON
Definition: Opcodes.h:1039
@ SMSG_GUILD_FLAGGED_FOR_RENAME
Definition: Opcodes.h:1398
@ SMSG_INVALIDATE_PAGE_TEXT
Definition: Opcodes.h:1450
@ SMSG_MOVE_UNSET_IGNORE_MOVEMENT_FORCES
Definition: Opcodes.h:1630
@ SMSG_ENSURE_WORLD_LOADED
Definition: Opcodes.h:1229
@ SMSG_MOVE_UPDATE_SWIM_SPEED
Definition: Opcodes.h:1646
@ SMSG_GAME_OBJECT_PLAY_SPELL_VISUAL
Definition: Opcodes.h:1261
@ SMSG_LOOT_RELEASE
Definition: Opcodes.h:1520
@ SMSG_PLAYER_TUTORIAL_UNHIGHLIGHT_SPELL
Definition: Opcodes.h:1745
@ SMSG_GARRISON_BUILDING_REMOVED
Definition: Opcodes.h:1277
@ SMSG_SET_MAX_WEEKLY_QUANTITY
Definition: Opcodes.h:1917
@ SMSG_QUEST_NON_LOG_UPDATE_COMPLETE
Definition: Opcodes.h:1804
@ SMSG_SPELL_ENERGIZE_LOG
Definition: Opcodes.h:1952
@ SMSG_ATTACK_STOP
Definition: Opcodes.h:956
@ SMSG_VAS_GET_QUEUE_MINUTES_RESPONSE
Definition: Opcodes.h:2047
@ SMSG_MOVE_ENABLE_GRAVITY
Definition: Opcodes.h:1553
@ SMSG_GUILD_EVENT_DISBANDED
Definition: Opcodes.h:1384
@ SMSG_QUERY_NPC_TEXT_RESPONSE
Definition: Opcodes.h:1781
@ SMSG_SUMMON_REQUEST
Definition: Opcodes.h:1986
@ SMSG_THREAT_UPDATE
Definition: Opcodes.h:1996
@ SMSG_MAP_OBJ_EVENTS
Definition: Opcodes.h:1532
@ SMSG_SET_ANIM_TIER
Definition: Opcodes.h:1904
@ SMSG_GAME_OBJECT_CLOSE_INTERACTION
Definition: Opcodes.h:1257
@ SMSG_BATTLE_PAY_DELIVERY_ENDED
Definition: Opcodes.h:1010
@ SMSG_DISPLAY_WORLD_TEXT
Definition: Opcodes.h:1211
@ SMSG_GARRISON_ADD_EVENT
Definition: Opcodes.h:1269
@ SMSG_CHAR_CUSTOMIZE_SUCCESS
Definition: Opcodes.h:1104
@ SMSG_SUGGEST_INVITE_INFORM
Definition: Opcodes.h:1983
@ SMSG_PARTY_KILL_LOG
Definition: Opcodes.h:1676
@ SMSG_CHARACTER_UPGRADE_MANUAL_UNREVOKE_RESULT
Definition: Opcodes.h:1101
@ SMSG_INSTANCE_ENCOUNTER_PHASE_SHIFT_CHANGED
Definition: Opcodes.h:1439
@ SMSG_SET_MOVEMENT_ANIM_KIT
Definition: Opcodes.h:1919
@ SMSG_FEIGN_DEATH_RESISTED
Definition: Opcodes.h:1243
@ SMSG_SOCIAL_CONTRACT_REQUEST_RESPONSE
Definition: Opcodes.h:1936
@ SMSG_SPELL_COOLDOWN
Definition: Opcodes.h:1945
@ SMSG_PERKS_PROGRAM_ACTIVITY_COMPLETE
Definition: Opcodes.h:1684
@ SMSG_MYTHIC_PLUS_NEW_WEEK_RECORD
Definition: Opcodes.h:1654
@ SMSG_ISLAND_COMPLETE
Definition: Opcodes.h:1457
@ SMSG_LOOT_RELEASE_ALL
Definition: Opcodes.h:1521
@ SMSG_CHAR_CUSTOMIZE_FAILURE
Definition: Opcodes.h:1103
@ SMSG_ACCOUNT_EXPORT_RESPONSE
Definition: Opcodes.h:906
@ SMSG_SPELL_DELAYED
Definition: Opcodes.h:1947
@ SMSG_SCENE_OBJECT_PET_BATTLE_INITIAL_UPDATE
Definition: Opcodes.h:1885
@ SMSG_HIGHEST_THREAT_UPDATE
Definition: Opcodes.h:1423
@ SMSG_VOID_ITEM_SWAP_RESPONSE
Definition: Opcodes.h:2056
@ SMSG_MOVE_UPDATE_MOD_MOVEMENT_FORCE_MAGNITUDE
Definition: Opcodes.h:1639
@ SMSG_MOVE_SET_ADV_FLYING_PITCHING_RATE_UP
Definition: Opcodes.h:1571
@ SMSG_BATTLE_PAY_DELIVERY_STARTED
Definition: Opcodes.h:1011
@ SMSG_REFRESH_SPELL_HISTORY
Definition: Opcodes.h:1840
@ SMSG_LOGIN_SET_TIME_SPEED
Definition: Opcodes.h:1511
@ SMSG_GARRISON_IS_UPGRADEABLE_RESPONSE
Definition: Opcodes.h:1299
@ SMSG_CHAT
Definition: Opcodes.h:1106
@ SMSG_USERLIST_UPDATE
Definition: Opcodes.h:2044
@ SMSG_RECRUIT_A_FRIEND_FAILURE
Definition: Opcodes.h:1838
@ SMSG_UPDATE_INSTANCE_OWNERSHIP
Definition: Opcodes.h:2035
@ SMSG_SPLASH_SCREEN_SHOW_LATEST
Definition: Opcodes.h:1969
@ SMSG_BATCH_PRESENCE_SUBSCRIPTION
Definition: Opcodes.h:985
@ SMSG_ITEM_PURCHASE_REFUND_RESULT
Definition: Opcodes.h:1464
@ SMSG_GUILD_ITEM_LOOTED_NOTIFY
Definition: Opcodes.h:1402
@ SMSG_QUEST_UPDATE_FAILED_TIMER
Definition: Opcodes.h:1817
@ SMSG_MEETING_STONE_FAILED
Definition: Opcodes.h:1534
@ SMSG_LFG_LIST_SEARCH_RESULTS
Definition: Opcodes.h:1484
@ SMSG_LFG_QUEUE_STATUS
Definition: Opcodes.h:1495
@ SMSG_VENDOR_INVENTORY
Definition: Opcodes.h:2051
@ SMSG_QUERY_PETITION_RESPONSE
Definition: Opcodes.h:1783
@ SMSG_DONT_AUTO_PUSH_SPELLS_TO_ACTION_BAR
Definition: Opcodes.h:1213
@ SMSG_GARRISON_OPEN_CRAFTER
Definition: Opcodes.h:1308
@ SMSG_ADJUST_SPLINE_DURATION
Definition: Opcodes.h:925
@ SMSG_GET_VAS_ACCOUNT_CHARACTER_LIST_RESULT
Definition: Opcodes.h:1349
@ SMSG_MOVE_SET_ADV_FLYING_OVER_MAX_DECELERATION
Definition: Opcodes.h:1569
@ SMSG_GET_ACCOUNT_CHARACTER_LIST_RESULT
Definition: Opcodes.h:1340
@ SMSG_CREATE_CHAR
Definition: Opcodes.h:1184
@ SMSG_SCENE_OBJECT_PET_BATTLE_REPLACEMENTS_MADE
Definition: Opcodes.h:1886
@ SMSG_CRAFTING_HOUSE_HELLO_RESPONSE
Definition: Opcodes.h:1173
@ SMSG_CLAIM_RAF_REWARD_RESPONSE
Definition: Opcodes.h:1124
@ SMSG_VOID_STORAGE_FAILED
Definition: Opcodes.h:2058
@ SMSG_THREAT_CLEAR
Definition: Opcodes.h:1994
@ SMSG_VOICE_LOGIN_RESPONSE
Definition: Opcodes.h:2055
@ SMSG_MOVE_SET_ADV_FLYING_MAX_VEL
Definition: Opcodes.h:1568
@ SMSG_MOVE_REMOVE_MOVEMENT_FORCE
Definition: Opcodes.h:1558
@ SMSG_STARTER_BUILD_ACTIVATE_FAILED
Definition: Opcodes.h:1971
@ SMSG_BOSS_KILL
Definition: Opcodes.h:1041
@ SMSG_KICK_REASON
Definition: Opcodes.h:1467
@ SMSG_MOVE_SET_COMPOUND_STATE
Definition: Opcodes.h:1578
@ SMSG_PHASE_SHIFT_CHANGE
Definition: Opcodes.h:1724
@ SMSG_CANCEL_SPELL_VISUAL
Definition: Opcodes.h:1077
@ SMSG_RESET_RANGED_COMBAT_TIMER
Definition: Opcodes.h:1852
@ SMSG_TUTORIAL_FLAGS
Definition: Opcodes.h:2016
@ SMSG_COMPRESSED_PACKET
Definition: Opcodes.h:2086
@ SMSG_COMPLAINT_RESULT
Definition: Opcodes.h:1150
@ SMSG_GOSSIP_REFRESH_OPTIONS
Definition: Opcodes.h:1361
@ SMSG_START_ELAPSED_TIMER
Definition: Opcodes.h:1972
@ SMSG_CANCEL_SCENE
Definition: Opcodes.h:1076
@ SMSG_QUEST_FORCE_REMOVED
Definition: Opcodes.h:1792
@ SMSG_GUILD_ACHIEVEMENT_MEMBERS
Definition: Opcodes.h:1371
@ SMSG_PLAYER_TUTORIAL_HIGHLIGHT_SPELL
Definition: Opcodes.h:1744
@ SMSG_SETUP_COMBAT_LOG_FILE_FLUSH
Definition: Opcodes.h:1901
@ SMSG_SCENARIO_VACATE
Definition: Opcodes.h:1880
@ SMSG_UPDATE_WORLD_STATE
Definition: Opcodes.h:2041
@ SMSG_MOVE_UNSET_HOVERING
Definition: Opcodes.h:1629
@ SMSG_LOBBY_MATCHMAKER_RECEIVE_INVITE
Definition: Opcodes.h:1510
@ SMSG_PREPOPULATE_NAME_CACHE
Definition: Opcodes.h:1760
@ SMSG_AUCTION_OUTBID_NOTIFICATION
Definition: Opcodes.h:972
@ SMSG_SCENARIO_PROGRESS_UPDATE
Definition: Opcodes.h:1876
@ SMSG_GARRISON_ADD_MISSION_RESULT
Definition: Opcodes.h:1271
@ SMSG_CHAT_IS_DOWN
Definition: Opcodes.h:1111
@ SMSG_PET_UNLEARNED_SPELLS
Definition: Opcodes.h:1723
@ SMSG_AUCTIONABLE_TOKEN_AUCTION_SOLD
Definition: Opcodes.h:959
@ SMSG_SHOW_TAXI_NODES
Definition: Opcodes.h:1934
@ SMSG_SCENARIO_STATE
Definition: Opcodes.h:1878
@ SMSG_RECRAFT_ITEM_RESULT
Definition: Opcodes.h:1837
@ SMSG_START_ELAPSED_TIMERS
Definition: Opcodes.h:1973
@ SMSG_GUILD_SEND_RANK_CHANGE
Definition: Opcodes.h:1421
@ SMSG_NOTIFY_DEST_LOC_SPELL_CAST
Definition: Opcodes.h:1660
@ SMSG_EMOTE
Definition: Opcodes.h:1223
@ SMSG_PET_ACTION_SOUND
Definition: Opcodes.h:1695
@ SMSG_ARTIFACT_FORGE_ERROR
Definition: Opcodes.h:951
@ SMSG_DROP_NEW_CONNECTION
Definition: Opcodes.h:1214
@ SMSG_TOTEM_REMOVED
Definition: Opcodes.h:2004
@ SMSG_BIND_POINT_UPDATE
Definition: Opcodes.h:1035
@ SMSG_CAST_FAILED
Definition: Opcodes.h:1082
@ SMSG_CORPSE_RECLAIM_DELAY
Definition: Opcodes.h:1168
@ SMSG_ARTIFACT_XP_GAIN
Definition: Opcodes.h:953
@ SMSG_GARRISON_FOLLOWER_CHANGED_XP
Definition: Opcodes.h:1294
@ SMSG_INSTANCE_RESET_FAILED
Definition: Opcodes.h:1447
@ SMSG_LFG_LIST_UPDATE_STATUS
Definition: Opcodes.h:1489
@ SMSG_ACTIVE_SCHEDULED_WORLD_STATE_INFO
Definition: Opcodes.h:919
@ SMSG_CORPSE_LOCATION
Definition: Opcodes.h:1167
@ SMSG_APPLY_MOUNT_EQUIPMENT_RESULT
Definition: Opcodes.h:935
@ SMSG_VAS_PURCHASE_STATE_UPDATE
Definition: Opcodes.h:2050
@ SMSG_ADD_RUNE_POWER
Definition: Opcodes.h:924
@ SMSG_PLAYER_IS_ADVENTURE_MAP_POI_VALID
Definition: Opcodes.h:1735
@ SMSG_PET_BATTLE_REQUEST_FAILED
Definition: Opcodes.h:1708
@ SMSG_QUEST_SESSION_READY_CHECK
Definition: Opcodes.h:1809
@ SMSG_DESTROY_ARENA_UNIT
Definition: Opcodes.h:1199
@ SMSG_FAILED_QUEST_TURN_IN
Definition: Opcodes.h:1240
@ SMSG_MOVE_UNSET_CAN_ADV_FLY
Definition: Opcodes.h:1626
@ SMSG_ADD_BATTLENET_FRIEND_RESPONSE
Definition: Opcodes.h:921
@ SMSG_ABORT_NEW_WORLD
Definition: Opcodes.h:902
@ SMSG_INSTANCE_ENCOUNTER_OBJECTIVE_UPDATE
Definition: Opcodes.h:1438
@ SMSG_MULTIPLE_PACKETS
Definition: Opcodes.h:2087
@ SMSG_QUEST_UPDATE_ADD_CREDIT_SIMPLE
Definition: Opcodes.h:1813
@ SMSG_OFFER_PETITION_ERROR
Definition: Opcodes.h:1665
@ SMSG_WEATHER
Definition: Opcodes.h:2069
@ SMSG_ADD_ITEM_PASSIVE
Definition: Opcodes.h:922
@ SMSG_GARRISON_LEARN_BLUEPRINT_RESULT
Definition: Opcodes.h:1300
@ SMSG_SET_DF_FAST_LAUNCH_RESULT
Definition: Opcodes.h:1907
@ SMSG_ROLE_CHANGED_INFORM
Definition: Opcodes.h:1869
@ SMSG_AUCTION_COMMAND_RESULT
Definition: Opcodes.h:963
@ SMSG_MASTER_LOOT_CANDIDATE_LIST
Definition: Opcodes.h:1533
@ SMSG_MOVE_UPDATE_TURN_RATE
Definition: Opcodes.h:1648
@ SMSG_GARRISON_ADD_FOLLOWER_RESULT
Definition: Opcodes.h:1270
@ SMSG_UPDATE_CELESTIAL_BODY
Definition: Opcodes.h:2027
@ SMSG_GARRISON_REMOVE_FOLLOWER_ABILITY_RESULT
Definition: Opcodes.h:1316
@ SMSG_SPELL_GO
Definition: Opcodes.h:1957
@ SMSG_NOTIFY_MISSILE_TRAJECTORY_COLLISION
Definition: Opcodes.h:1661
@ SMSG_SPELL_INSTAKILL_LOG
Definition: Opcodes.h:1960
@ SMSG_SPELL_HEAL_ABSORB_LOG
Definition: Opcodes.h:1958
@ SMSG_ACCOUNT_TRANSMOG_UPDATE
Definition: Opcodes.h:912
@ SMSG_CLEAR_COOLDOWN
Definition: Opcodes.h:1127
@ SMSG_GET_REMAINING_GAME_TIME_RESPONSE
Definition: Opcodes.h:1344
@ SMSG_SHOW_QUEST_COMPLETION_TEXT
Definition: Opcodes.h:1933
@ SMSG_GARRISON_COLLECTION_UPDATE_ENTRY
Definition: Opcodes.h:1284
@ SMSG_AREA_TRIGGER_FORCE_SET_POSITION_AND_FACING
Definition: Opcodes.h:940
@ SMSG_BATTLE_PAY_CONFIRM_PURCHASE
Definition: Opcodes.h:1009
@ SMSG_LFG_PROPOSAL_UPDATE
Definition: Opcodes.h:1494
@ SMSG_CANCEL_PRELOAD_WORLD
Definition: Opcodes.h:1075
@ SMSG_BATTLE_PETS_HEALED
Definition: Opcodes.h:1024
@ SMSG_SERVER_TIME
Definition: Opcodes.h:1899
@ SMSG_SERVER_FIRST_ACHIEVEMENTS
Definition: Opcodes.h:1898
@ SMSG_MAIL_COMMAND_RESULT
Definition: Opcodes.h:1528
@ SMSG_MAP_OBJECTIVES_INIT
Definition: Opcodes.h:1531
@ SMSG_GARRISON_DELETE_MISSION_RESULT
Definition: Opcodes.h:1288
@ SMSG_RAID_MARKERS_CHANGED
Definition: Opcodes.h:1825
@ SMSG_MOVEMENT_ENFORCEMENT_ALERT
Definition: Opcodes.h:1542
@ SMSG_PLAY_MUSIC
Definition: Opcodes.h:1746
@ SMSG_MOVE_SPLINE_SET_RUN_BACK_SPEED
Definition: Opcodes.h:1610
@ SMSG_AREA_TRIGGER_DENIED
Definition: Opcodes.h:939
@ SMSG_CONTROL_UPDATE
Definition: Opcodes.h:1163
@ SMSG_SCENARIO_POIS
Definition: Opcodes.h:1875
@ SMSG_FACTION_BONUS_INFO
Definition: Opcodes.h:1238
@ SMSG_PVP_MATCH_START
Definition: Opcodes.h:1770
@ SMSG_MESSAGE_BOX
Definition: Opcodes.h:1535
@ SMSG_ALL_ACCOUNT_CRITERIA
Definition: Opcodes.h:932
@ SMSG_CHARACTER_UPGRADE_ABORTED
Definition: Opcodes.h:1099
@ SMSG_SHADOWLANDS_CAPACITANCE_UPDATE
Definition: Opcodes.h:1930
@ SMSG_BATTLEFIELD_STATUS_NONE
Definition: Opcodes.h:992
@ SMSG_GUILD_EVENT_RANK_CHANGED
Definition: Opcodes.h:1392
@ SMSG_GARRISON_LIST_COMPLETED_MISSIONS_CHEAT_RESULT
Definition: Opcodes.h:1302
@ SMSG_ARENA_CLEAR_OPPONENTS
Definition: Opcodes.h:947
@ SMSG_RESPONSE_PERK_RECENT_PURCHASES
Definition: Opcodes.h:1857
@ SMSG_CAMERA_EFFECT
Definition: Opcodes.h:1070
@ SMSG_COIN_REMOVED
Definition: Opcodes.h:1141
@ SMSG_PARTY_UPDATE
Definition: Opcodes.h:1680
@ SMSG_SET_ITEM_PURCHASE_DATA
Definition: Opcodes.h:1915
@ SMSG_GUILD_MEMBERS_WITH_RECIPE
Definition: Opcodes.h:1404
@ SMSG_BATTLE_PAY_ACK_FAILED
Definition: Opcodes.h:1006
@ SMSG_RESET_WEEKLY_CURRENCY
Definition: Opcodes.h:1853
@ SMSG_MOVE_SET_TURN_RATE
Definition: Opcodes.h:1592
@ SMSG_CREATE_SHIPMENT_RESPONSE
Definition: Opcodes.h:1185
@ SMSG_MOVE_SET_WATER_WALK
Definition: Opcodes.h:1595
@ SMSG_MOVE_SPLINE_ROOT
Definition: Opcodes.h:1601
@ SMSG_AUTH_FAILED
Definition: Opcodes.h:979
@ SMSG_OPEN_LFG_DUNGEON_FINDER
Definition: Opcodes.h:1670
@ SMSG_GET_REALM_HIDDEN_RESULT
Definition: Opcodes.h:1343
@ SMSG_CUSTOM_LOAD_SCREEN
Definition: Opcodes.h:1190
@ SMSG_INSTANCE_ENCOUNTER_UPDATE_SUPPRESS_RELEASE
Definition: Opcodes.h:1443
@ SMSG_INVENTORY_CHANGE_FAILURE
Definition: Opcodes.h:1453
@ SMSG_PLAY_ORPHAN_SPELL_VISUAL
Definition: Opcodes.h:1749
@ SMSG_WORLD_QUEST_UPDATE_RESPONSE
Definition: Opcodes.h:2076
@ SMSG_SPELL_VISUAL_LOAD_SCREEN
Definition: Opcodes.h:1968
@ SMSG_FORCE_ANIM
Definition: Opcodes.h:1249
@ SMSG_GUILD_ACHIEVEMENT_DELETED
Definition: Opcodes.h:1369
@ SMSG_FISH_ESCAPED
Definition: Opcodes.h:1244
@ SMSG_STOP_TIMER
Definition: Opcodes.h:1981
@ SMSG_PVP_TIER_RECORD
Definition: Opcodes.h:1773
@ SMSG_SET_QUEST_REPLAY_COOLDOWN_OVERRIDE
Definition: Opcodes.h:1925
@ SMSG_ARENA_CROWD_CONTROL_SPELL_RESULT
Definition: Opcodes.h:948
@ SMSG_VAS_CHECK_TRANSFER_OK_RESPONSE
Definition: Opcodes.h:2046
@ SMSG_DAILY_QUESTS_RESET
Definition: Opcodes.h:1191
@ SMSG_ALL_ACHIEVEMENT_DATA
Definition: Opcodes.h:933
@ SMSG_PLAYER_AZERITE_ITEM_GAINS
Definition: Opcodes.h:1728
@ SMSG_GAME_OBJECT_RESET_STATE
Definition: Opcodes.h:1263
@ SMSG_VAS_PURCHASE_COMPLETE
Definition: Opcodes.h:2049
@ SMSG_PET_DISMISS_SOUND
Definition: Opcodes.h:1713
@ SMSG_SERVER_TIME_OFFSET
Definition: Opcodes.h:1900
@ SMSG_PLAY_SOUND
Definition: Opcodes.h:1751
@ SMSG_PETITION_SIGN_RESULTS
Definition: Opcodes.h:1693
@ SMSG_LOGOUT_COMPLETE
Definition: Opcodes.h:1514
@ SMSG_LEARN_PVP_TALENT_FAILED
Definition: Opcodes.h:1470
@ SMSG_RESUME_COMMS
Definition: Opcodes.h:1862
@ SMSG_GROUP_AUTO_KICK
Definition: Opcodes.h:1363
@ SMSG_SCENE_OBJECT_PET_BATTLE_FINAL_ROUND
Definition: Opcodes.h:1882
@ SMSG_MOVE_SET_SWIM_SPEED
Definition: Opcodes.h:1591
@ SMSG_PERKS_PROGRAM_RESULT
Definition: Opcodes.h:1687
@ SMSG_THREAT_REMOVE
Definition: Opcodes.h:1995
@ SMSG_PLAYER_CHOICE_CLEAR
Definition: Opcodes.h:1731
@ SMSG_GENERATE_RANDOM_CHARACTER_NAME_RESULT
Definition: Opcodes.h:1338
@ SMSG_UPDATE_OBJECT
Definition: Opcodes.h:2037
@ SMSG_STREAMING_MOVIES
Definition: Opcodes.h:1982
@ SMSG_SYNC_WOW_ENTITLEMENTS
Definition: Opcodes.h:1990
@ SMSG_WAIT_QUEUE_FINISH
Definition: Opcodes.h:2061
@ SMSG_START_MIRROR_TIMER
Definition: Opcodes.h:1976
@ SMSG_SOCKET_GEMS_FAILURE
Definition: Opcodes.h:1937
@ SMSG_GARRISON_CLEAR_SPEC_GROUPS
Definition: Opcodes.h:1282
@ SMSG_PET_BATTLE_SLOT_UPDATES
Definition: Opcodes.h:1710
@ SMSG_LFG_LIST_APPLICANT_LIST_UPDATE
Definition: Opcodes.h:1480
@ SMSG_GARRISON_GET_RECALL_PORTAL_LAST_USED_TIME_RESULT
Definition: Opcodes.h:1298
@ SMSG_HEALTH_UPDATE
Definition: Opcodes.h:1422
@ SMSG_SET_FLAT_SPELL_MODIFIER
Definition: Opcodes.h:1913
@ SMSG_CRAFTING_ORDER_RELEASE_RESULT
Definition: Opcodes.h:1181
@ SMSG_MOVE_UPDATE_RUN_SPEED
Definition: Opcodes.h:1644
@ SMSG_CALENDAR_INVITE_STATUS
Definition: Opcodes.h:1061
@ SMSG_QUEST_GIVER_OFFER_REWARD_MESSAGE
Definition: Opcodes.h:1794
@ SMSG_CLUB_FINDER_UPDATE_APPLICATIONS
Definition: Opcodes.h:1139
@ SMSG_CHANNEL_NOTIFY_JOINED
Definition: Opcodes.h:1093
@ SMSG_GAME_OBJECT_DESPAWN
Definition: Opcodes.h:1259
@ SMSG_CHARACTER_LOGIN_FAILED
Definition: Opcodes.h:1096
@ SMSG_TOTEM_MOVED
Definition: Opcodes.h:2003
@ SMSG_BATTLE_PAY_BATTLE_PET_DELIVERED
Definition: Opcodes.h:1007
@ SMSG_EXPLORATION_EXPERIENCE
Definition: Opcodes.h:1236
@ SMSG_RUNE_REGEN_DEBUG
Definition: Opcodes.h:1873
@ SMSG_QUEST_ITEM_USABILITY_RESPONSE
Definition: Opcodes.h:1802
@ SMSG_GUILD_EVENT_PLAYER_JOINED
Definition: Opcodes.h:1388
@ SMSG_DISENCHANT_CREDIT
Definition: Opcodes.h:1202
@ SMSG_ENVIRONMENTAL_DAMAGE_LOG
Definition: Opcodes.h:1233
@ SMSG_IS_QUEST_COMPLETE_RESPONSE
Definition: Opcodes.h:1458
@ SMSG_AUCTION_GET_COMMODITY_QUOTE_RESULT
Definition: Opcodes.h:966
@ SMSG_RESYNC_RUNES
Definition: Opcodes.h:1865
@ SMSG_BATTLEGROUND_INFO_THROTTLED
Definition: Opcodes.h:995
@ SMSG_PLAYER_SHOW_UI_EVENT_TOAST
Definition: Opcodes.h:1742
@ SMSG_SET_PCT_SPELL_MODIFIER
Definition: Opcodes.h:1920
@ SMSG_UPDATE_ACTION_BUTTONS
Definition: Opcodes.h:2024
@ SMSG_CHAT_AUTO_RESPONDED
Definition: Opcodes.h:1107
@ SMSG_MOVE_SET_WALK_SPEED
Definition: Opcodes.h:1594
@ SMSG_CHECK_WARGAME_ENTRY
Definition: Opcodes.h:1122
@ SMSG_CREATOR_VISUALS_OVERRIDE
Definition: Opcodes.h:1186
@ SMSG_GUILD_REWARD_LIST
Definition: Opcodes.h:1418
@ SMSG_USERLIST_ADD
Definition: Opcodes.h:2042
@ SMSG_LOOT_MONEY_NOTIFY
Definition: Opcodes.h:1519
@ SMSG_HOTFIX_CONNECT
Definition: Opcodes.h:1424
@ SMSG_SPELL_CATEGORY_COOLDOWN
Definition: Opcodes.h:1942
@ SMSG_QUEST_GIVER_QUEST_LIST_MESSAGE
Definition: Opcodes.h:1798
@ SMSG_LFG_JOIN_RESULT
Definition: Opcodes.h:1479
@ SMSG_TEXT_EMOTE
Definition: Opcodes.h:1993
@ SMSG_BATTLE_PET_ERROR
Definition: Opcodes.h:1027
@ SMSG_GARRISON_TALENT_WORLD_QUEST_UNLOCKS_RESPONSE
Definition: Opcodes.h:1331
@ SMSG_MOVE_SET_HOVERING
Definition: Opcodes.h:1582
@ SMSG_START_LOOT_ROLL
Definition: Opcodes.h:1975
@ SMSG_GAME_OBJECT_BASE
Definition: Opcodes.h:1256
@ SMSG_TITLE_EARNED
Definition: Opcodes.h:1999
@ SMSG_BATTLEFIELD_STATUS_QUEUED
Definition: Opcodes.h:993
@ SMSG_READY_CHECK_STARTED
Definition: Opcodes.h:1830
@ SMSG_DUEL_COUNTDOWN
Definition: Opcodes.h:1217
@ SMSG_CANCEL_AUTO_REPEAT
Definition: Opcodes.h:1071
@ SMSG_MOVE_SET_ADV_FLYING_ADD_IMPULSE_MAX_SPEED
Definition: Opcodes.h:1561
@ SMSG_RAID_GROUP_ONLY
Definition: Opcodes.h:1823
@ SMSG_LOGIN_VERIFY_WORLD
Definition: Opcodes.h:1512
@ SMSG_UNDELETE_CHARACTER_RESPONSE
Definition: Opcodes.h:2018
@ SMSG_LIVE_REGION_ACCOUNT_RESTORE_RESULT
Definition: Opcodes.h:1502
@ SMSG_COMMERCE_TOKEN_GET_LOG_RESPONSE
Definition: Opcodes.h:1147
@ SMSG_MOVE_SET_MOD_MOVEMENT_FORCE_MAGNITUDE
Definition: Opcodes.h:1585
@ SMSG_LIVE_REGION_KEY_BINDINGS_COPY_RESULT
Definition: Opcodes.h:1505
@ SMSG_SHOW_NEUTRAL_PLAYER_FACTION_SELECT_UI
Definition: Opcodes.h:1932
@ SMSG_PET_BATTLE_QUEUE_STATUS
Definition: Opcodes.h:1706
@ SMSG_UPDATE_COOLDOWN
Definition: Opcodes.h:2030
@ SMSG_GARRISON_PLACE_BUILDING_RESULT
Definition: Opcodes.h:1310
@ SMSG_MOVE_SET_ADV_FLYING_GLIDE_START_MIN_HEIGHT
Definition: Opcodes.h:1565
@ SMSG_SPELL_FAILED_OTHER
Definition: Opcodes.h:1954
@ SMSG_FORCE_RANDOM_TRANSMOG_TOAST
Definition: Opcodes.h:1252
@ SMSG_LOOT_ROLLS_COMPLETE
Definition: Opcodes.h:1525
@ SMSG_BONUS_ROLL_EMPTY
Definition: Opcodes.h:1040
@ SMSG_PLAYER_AZERITE_ITEM_EQUIPPED_STATUS_CHANGED
Definition: Opcodes.h:1727
@ SMSG_FEATURE_SYSTEM_STATUS_GLUE_SCREEN
Definition: Opcodes.h:1242
@ SMSG_GM_PLAYER_INFO
Definition: Opcodes.h:1351
@ SMSG_PUSH_SPELL_TO_ACTION_BAR
Definition: Opcodes.h:1765
@ SMSG_LFG_READY_CHECK_RESULT
Definition: Opcodes.h:1496
@ SMSG_GARRISON_ADD_SPEC_GROUPS
Definition: Opcodes.h:1272
@ SMSG_COMMENTATOR_STATE_CHANGED
Definition: Opcodes.h:1145
@ SMSG_BLACK_MARKET_OUTBID
Definition: Opcodes.h:1037
@ SMSG_BATTLE_PAY_PURCHASE_UPDATE
Definition: Opcodes.h:1019
@ SMSG_MOVE_SPLINE_ENABLE_GRAVITY
Definition: Opcodes.h:1600
@ SMSG_PETITION_ALREADY_SIGNED
Definition: Opcodes.h:1689
@ SMSG_BATTLE_PAY_COLLECTION_ITEM_DELIVERED
Definition: Opcodes.h:1008
@ SMSG_AUCTION_WON_NOTIFICATION
Definition: Opcodes.h:975
@ SMSG_SPELL_ABSORB_LOG
Definition: Opcodes.h:1941
@ SMSG_BATTLEGROUND_INIT
Definition: Opcodes.h:996
@ SMSG_XP_GAIN_ENABLED
Definition: Opcodes.h:2081
@ SMSG_SET_TIME_ZONE_INFORMATION
Definition: Opcodes.h:1928
@ SMSG_UPDATE_BNET_SESSION_KEY
Definition: Opcodes.h:2025
@ SMSG_WILL_BE_KICKED_FOR_ADDED_SUBSCRIPTION_TIME
Definition: Opcodes.h:2075
@ SMSG_FORCED_DEATH_UPDATE
Definition: Opcodes.h:1248
@ SMSG_PONG
Definition: Opcodes.h:1756
@ SMSG_GOSSIP_COMPLETE
Definition: Opcodes.h:1356
@ SMSG_ACTIVE_GLYPHS
Definition: Opcodes.h:918
@ SMSG_MOVE_APPLY_MOVEMENT_FORCE
Definition: Opcodes.h:1545
@ SMSG_REQUEST_PVP_REWARDS_RESPONSE
Definition: Opcodes.h:1846
@ SMSG_SCENE_OBJECT_PET_BATTLE_FIRST_ROUND
Definition: Opcodes.h:1884
@ SMSG_INIT_WORLD_STATES
Definition: Opcodes.h:1428
@ SMSG_DURABILITY_DAMAGE_DEATH
Definition: Opcodes.h:1222
@ SMSG_STOP_SPEAKERBOT_SOUND
Definition: Opcodes.h:1980
@ SMSG_RESURRECT_REQUEST
Definition: Opcodes.h:1864
@ SMSG_UPDATE_PRIMARY_SPEC
Definition: Opcodes.h:2038
@ SMSG_GROUP_DECLINE
Definition: Opcodes.h:1364
@ SMSG_AUTH_CHALLENGE
Definition: Opcodes.h:978
@ SMSG_WOW_ENTITLEMENT_NOTIFICATION
Definition: Opcodes.h:2078
@ SMSG_MOVE_SET_CAN_FLY
Definition: Opcodes.h:1575
@ SMSG_REALM_QUERY_RESPONSE
Definition: Opcodes.h:1833
@ SMSG_QUERY_TIME_RESPONSE
Definition: Opcodes.h:1789
@ SMSG_GUILD_NAME_CHANGED
Definition: Opcodes.h:1410
@ SMSG_PET_NEWLY_TAMED
Definition: Opcodes.h:1719
@ SMSG_DAMAGE_CALC_LOG
Definition: Opcodes.h:1192
@ SMSG_BARBER_SHOP_RESULT
Definition: Opcodes.h:984
@ SMSG_ISLAND_AZERITE_GAIN
Definition: Opcodes.h:1456
@ SMSG_MAIL_LIST_RESULT
Definition: Opcodes.h:1529
@ SMSG_LFG_LIST_SEARCH_STATUS
Definition: Opcodes.h:1486
@ SMSG_ATTACK_START
Definition: Opcodes.h:955
@ SMSG_CRAFTING_ORDER_LIST_ORDERS_RESPONSE
Definition: Opcodes.h:1179
@ SMSG_GROUP_REQUEST_DECLINE
Definition: Opcodes.h:1367
@ SMSG_SPELL_DAMAGE_SHIELD
Definition: Opcodes.h:1946
@ SMSG_ENABLE_BARBER_SHOP
Definition: Opcodes.h:1224
@ SMSG_COVENANT_CALLINGS_AVAILABILITY_RESPONSE
Definition: Opcodes.h:1170
@ SMSG_INVENTORY_FIXUP_COMPLETE
Definition: Opcodes.h:1454
@ SMSG_WEEKLY_REWARDS_RESULT
Definition: Opcodes.h:2071
@ SMSG_MOVE_SKIP_TIME
Definition: Opcodes.h:1596
@ SMSG_ENTER_ENCRYPTED_MODE
Definition: Opcodes.h:1230
@ SMSG_SPELL_HEAL_LOG
Definition: Opcodes.h:1959
@ SMSG_MOVE_SPLINE_SET_RUN_SPEED
Definition: Opcodes.h:1612
@ SMSG_PRE_RESSURECT
Definition: Opcodes.h:1761
@ SMSG_CACHE_VERSION
Definition: Opcodes.h:1049
@ SMSG_COMMENTATOR_PLAYER_INFO
Definition: Opcodes.h:1144
@ SMSG_CHANNEL_NOTIFY_LEFT
Definition: Opcodes.h:1094
@ SMSG_CHEAT_IGNORE_DIMISHING_RETURNS
Definition: Opcodes.h:1119
@ SMSG_COMMENTATOR_MAP_INFO
Definition: Opcodes.h:1143
@ SMSG_AREA_TRIGGER_PLAY_SPELL_VISUAL
Definition: Opcodes.h:942
@ SMSG_MOVE_DISABLE_INERTIA
Definition: Opcodes.h:1549
@ SMSG_UPDATE_DAILY_MISSION_COUNTER
Definition: Opcodes.h:2032
@ SMSG_FLUSH_COMBAT_LOG_FILE
Definition: Opcodes.h:1247
@ SMSG_MINIMAP_PING
Definition: Opcodes.h:1536
@ SMSG_QUEST_GIVER_QUEST_FAILED
Definition: Opcodes.h:1797
@ SMSG_GARRISON_TALENT_COMPLETED
Definition: Opcodes.h:1327
@ SMSG_INSTANCE_INFO
Definition: Opcodes.h:1445
@ SMSG_AUCTION_DISABLE_NEW_POSTINGS
Definition: Opcodes.h:964
@ SMSG_ITEM_TIME_UPDATE
Definition: Opcodes.h:1466
@ SMSG_CHECK_CHARACTER_NAME_AVAILABILITY_RESULT
Definition: Opcodes.h:1121
@ SMSG_ACTIVATE_SOULBIND_FAILED
Definition: Opcodes.h:916
@ SMSG_AUCTION_HELLO_RESPONSE
Definition: Opcodes.h:967
@ SMSG_PLAYER_SAVE_GUILD_EMBLEM
Definition: Opcodes.h:1737
@ SMSG_AREA_POI_UPDATE_RESPONSE
Definition: Opcodes.h:937
@ SMSG_PRELOAD_WORLD
Definition: Opcodes.h:1759
@ SMSG_MOVE_SET_CAN_ADV_FLY
Definition: Opcodes.h:1574
@ SMSG_DB_REPLY
Definition: Opcodes.h:1193
@ SMSG_SPELL_OR_DAMAGE_IMMUNE
Definition: Opcodes.h:1964
@ SMSG_SEND_KNOWN_SPELLS
Definition: Opcodes.h:1892
@ SMSG_GUILD_MEMBER_UPDATE_NOTE
Definition: Opcodes.h:1407
@ SMSG_CRAFTING_ORDER_CANCEL_RESULT
Definition: Opcodes.h:1174
@ SMSG_MOVE_SPLINE_SET_FLIGHT_BACK_SPEED
Definition: Opcodes.h:1603
@ SMSG_CALENDAR_RAID_LOCKOUT_UPDATED
Definition: Opcodes.h:1066
@ SMSG_GARRISON_REMOTE_INFO
Definition: Opcodes.h:1314
@ SMSG_MOVE_UPDATE_REMOVE_INERTIA
Definition: Opcodes.h:1641
@ SMSG_EXTERNAL_TRANSACTION_ID_GENERATED
Definition: Opcodes.h:1237
@ SMSG_MOVE_SET_ACTIVE_MOVER
Definition: Opcodes.h:1560
@ SMSG_COMMERCE_TOKEN_GET_COUNT_RESPONSE
Definition: Opcodes.h:1146
@ SMSG_AE_LOOT_TARGET_ACK
Definition: Opcodes.h:929
@ SMSG_GUILD_MOVED
Definition: Opcodes.h:1408
@ SMSG_RESUME_CAST
Definition: Opcodes.h:1860
@ SMSG_QUEST_GIVER_QUEST_DETAILS
Definition: Opcodes.h:1796
@ SMSG_GUILD_ROSTER_UPDATE
Definition: Opcodes.h:1420
@ SMSG_LFG_PLAYER_REWARD
Definition: Opcodes.h:1493
@ SMSG_BATTLE_PET_DELETED
Definition: Opcodes.h:1026
@ SMSG_RESET_FAILED_NOTIFY
Definition: Opcodes.h:1849
@ SMSG_BATTLE_PAY_GET_PURCHASE_LIST_RESPONSE
Definition: Opcodes.h:1017
@ SMSG_CHAT_RESTRICTED
Definition: Opcodes.h:1117
@ SMSG_COOLDOWN_CHEAT
Definition: Opcodes.h:1165
@ SMSG_MOVE_UPDATE_SWIM_BACK_SPEED
Definition: Opcodes.h:1645
@ SMSG_BATTLEGROUND_PLAYER_LEFT
Definition: Opcodes.h:998
@ SMSG_ACCOUNT_MOUNT_UPDATE
Definition: Opcodes.h:908
@ SMSG_GARRISON_LIST_FOLLOWERS_CHEAT_RESULT
Definition: Opcodes.h:1303
@ SMSG_CHAT_PLAYER_AMBIGUOUS
Definition: Opcodes.h:1113
@ SMSG_PET_BATTLE_FINAL_ROUND
Definition: Opcodes.h:1699
@ SMSG_GARRISON_APPLY_TALENT_SOCKET_DATA_CHANGES
Definition: Opcodes.h:1273
@ SMSG_CHAT_RECONNECT
Definition: Opcodes.h:1115
@ SMSG_CHAT_IGNORED_ACCOUNT_MUTED
Definition: Opcodes.h:1110
@ SMSG_MOVE_DISABLE_DOUBLE_JUMP
Definition: Opcodes.h:1547
@ SMSG_GARRISON_UPGRADE_RESULT
Definition: Opcodes.h:1336
@ SMSG_GAME_OBJECT_ACTIVATE_ANIM_KIT
Definition: Opcodes.h:1255
@ SMSG_CONNECT_TO
Definition: Opcodes.h:1153
@ SMSG_GUILD_EVENT_BANK_CONTENTS_CHANGED
Definition: Opcodes.h:1382
@ SMSG_BATTLE_PET_JOURNAL_LOCK_DENIED
Definition: Opcodes.h:1030
@ SMSG_ATTACK_SWING_ERROR
Definition: Opcodes.h:957
@ SMSG_GARRISON_COMPLETE_BUILDING_CONSTRUCTION_RESULT
Definition: Opcodes.h:1285
@ SMSG_LOG_XP_GAIN
Definition: Opcodes.h:1516
@ SMSG_QUEUE_SUMMARY_UPDATE
Definition: Opcodes.h:1818
@ SMSG_PVP_MATCH_INITIALIZE
Definition: Opcodes.h:1768
@ SMSG_CRITERIA_UPDATE
Definition: Opcodes.h:1188
@ SMSG_INSTANCE_ENCOUNTER_CHANGE_PRIORITY
Definition: Opcodes.h:1430
@ SMSG_ACHIEVEMENT_DELETED
Definition: Opcodes.h:913
@ SMSG_GARRISON_OPEN_RECRUITMENT_NPC
Definition: Opcodes.h:1309
@ SMSG_LFG_LIST_SEARCH_RESULTS_UPDATE
Definition: Opcodes.h:1485
@ SMSG_PVP_OPTIONS_ENABLED
Definition: Opcodes.h:1772
@ SMSG_MAIL_QUERY_NEXT_TIME_RESULT
Definition: Opcodes.h:1530
@ SMSG_GUILD_EVENT_LOG_QUERY_RESULTS
Definition: Opcodes.h:1385
@ SMSG_PRINT_NOTIFICATION
Definition: Opcodes.h:1762
@ SMSG_GUILD_COMMAND_RESULT
Definition: Opcodes.h:1379
@ SMSG_RAF_ACCOUNT_INFO
Definition: Opcodes.h:1819
@ SMSG_GUILD_CHALLENGE_UPDATE
Definition: Opcodes.h:1377
@ SMSG_MOVE_SET_ADV_FLYING_TURN_VELOCITY_THRESHOLD
Definition: Opcodes.h:1573
@ SMSG_ENUM_CHARACTERS_RESULT
Definition: Opcodes.h:1231
@ SMSG_SET_MELEE_ANIM_KIT
Definition: Opcodes.h:1918
@ SMSG_PLAYER_SHOW_GENERIC_WIDGET_DISPLAY
Definition: Opcodes.h:1740
@ SMSG_GAME_TIME_SET
Definition: Opcodes.h:1266
@ SMSG_DIFFERENT_INSTANCE_FROM_PARTY
Definition: Opcodes.h:1201
@ SMSG_DISPLAY_SOULBIND_UPDATE_MESSAGE
Definition: Opcodes.h:1209
@ SMSG_AUCTION_OWNER_BID_NOTIFICATION
Definition: Opcodes.h:973
@ SMSG_ACTIVATE_TAXI_REPLY
Definition: Opcodes.h:917
@ SMSG_AI_REACTION
Definition: Opcodes.h:930
@ SMSG_INSTANCE_GROUP_SIZE_CHANGED
Definition: Opcodes.h:1444
@ SMSG_FORCE_ANIMATIONS
Definition: Opcodes.h:1250
@ SMSG_ITEM_INTERACTION_COMPLETE
Definition: Opcodes.h:1463
@ SMSG_MOVE_UNSET_CAN_FLY
Definition: Opcodes.h:1627
@ SMSG_INSTANCE_ENCOUNTER_GAIN_COMBAT_RESURRECTION_CHARGE
Definition: Opcodes.h:1434
@ SMSG_AUCTIONABLE_TOKEN_SELL_AT_MARKET_PRICE_RESPONSE
Definition: Opcodes.h:960
@ SMSG_ADVANCED_COMBAT_LOG
Definition: Opcodes.h:926
@ SMSG_CHARACTER_UPGRADE_STARTED
Definition: Opcodes.h:1102
@ SMSG_PLAY_TIME_WARNING
Definition: Opcodes.h:1755
@ SMSG_CHARACTER_RENAME_RESULT
Definition: Opcodes.h:1098
@ SMSG_SEND_UNLEARN_SPELLS
Definition: Opcodes.h:1897
@ SMSG_CLEAR_SPELL_CHARGES
Definition: Opcodes.h:1130
@ SMSG_LOOT_ROLL
Definition: Opcodes.h:1524
@ SMSG_GARRISON_FOLLOWER_CHANGED_QUALITY
Definition: Opcodes.h:1293
@ SMSG_ARENA_PREP_OPPONENT_SPECIALIZATIONS
Definition: Opcodes.h:949
@ SMSG_UPDATE_RECENT_PLAYER_GUIDS
Definition: Opcodes.h:2039
@ SMSG_MOVE_SET_ADV_FLYING_DOUBLE_JUMP_VEL_MOD
Definition: Opcodes.h:1564
@ SMSG_MOVE_SPLINE_UNSET_FLYING
Definition: Opcodes.h:1622
@ SMSG_MOVE_SPLINE_SET_FLIGHT_SPEED
Definition: Opcodes.h:1604
@ SMSG_QUERY_CREATURE_RESPONSE
Definition: Opcodes.h:1775
@ SMSG_BROADCAST_ACHIEVEMENT
Definition: Opcodes.h:1043
@ SMSG_LEARNED_SPELLS
Definition: Opcodes.h:1469
@ SMSG_SUMMON_RAID_MEMBER_VALIDATE_FAILED
Definition: Opcodes.h:1985
@ SMSG_STAND_STATE_UPDATE
Definition: Opcodes.h:1970
@ SMSG_GUILD_PERMISSIONS_QUERY_RESULTS
Definition: Opcodes.h:1414
@ SMSG_CONSUMABLE_TOKEN_BUY_CHOICE_REQUIRED
Definition: Opcodes.h:1157
@ SMSG_CANCEL_PING_PIN
Definition: Opcodes.h:1074
@ SMSG_ALLIED_RACE_DETAILS
Definition: Opcodes.h:931
@ SMSG_CLEAR_ALL_SPELL_CHARGES
Definition: Opcodes.h:1125
@ SMSG_LOGOUT_CANCEL_ACK
Definition: Opcodes.h:1513
@ SMSG_GUILD_EVENT_RANKS_UPDATED
Definition: Opcodes.h:1391
@ SMSG_MOVE_SPLINE_STOP_SWIM
Definition: Opcodes.h:1620
@ SMSG_SHOW_TRADE_SKILL_RESPONSE
Definition: Opcodes.h:1935
@ SMSG_GARRISON_ACTIVATE_MISSION_BONUS_ABILITY
Definition: Opcodes.h:1268
@ SMSG_SCENE_OBJECT_EVENT
Definition: Opcodes.h:1881
@ SMSG_STOP_ELAPSED_TIMER
Definition: Opcodes.h:1978
@ SMSG_PLAYER_HIDE_ARROW_CALLOUT
Definition: Opcodes.h:1734
@ SMSG_COMMERCE_TOKEN_GET_MARKET_PRICE_RESPONSE
Definition: Opcodes.h:1148
@ SMSG_PET_CAST_FAILED
Definition: Opcodes.h:1711
@ SMSG_REFRESH_COMPONENT
Definition: Opcodes.h:1839
@ SMSG_MOVE_SPLINE_START_SWIM
Definition: Opcodes.h:1619
@ SMSG_MOVE_UPDATE_RUN_BACK_SPEED
Definition: Opcodes.h:1643
@ SMSG_LEGACY_LOOT_RULES
Definition: Opcodes.h:1472
@ SMSG_CANCEL_SPELL_VISUAL_KIT
Definition: Opcodes.h:1078
@ SMSG_GAME_SPEED_SET
Definition: Opcodes.h:1265
@ SMSG_FLIGHT_SPLINE_SYNC
Definition: Opcodes.h:1246
@ SMSG_GET_SELECTED_TROPHY_ID_RESPONSE
Definition: Opcodes.h:1345
@ SMSG_DELETE_CHAR
Definition: Opcodes.h:1197
@ SMSG_CHAT_REGIONAL_SERVICE_STATUS
Definition: Opcodes.h:1116
@ SMSG_GUILD_INVITE
Definition: Opcodes.h:1399
@ SMSG_PERKS_PROGRAM_ACTIVITY_UPDATE
Definition: Opcodes.h:1685
@ SMSG_LATENCY_REPORT_PING
Definition: Opcodes.h:1468
@ SMSG_INSTANCE_ENCOUNTER_OBJECTIVE_COMPLETE
Definition: Opcodes.h:1436
@ SMSG_GET_VAS_TRANSFER_TARGET_REALM_LIST_RESULT
Definition: Opcodes.h:1350
@ SMSG_GUILD_EVENT_STATUS_CHANGE
Definition: Opcodes.h:1393
@ SMSG_MOVE_SET_SWIM_BACK_SPEED
Definition: Opcodes.h:1590
@ SMSG_SPELL_START
Definition: Opcodes.h:1967
@ SMSG_GARRISON_TALENT_REMOVED
Definition: Opcodes.h:1328
@ SMSG_LFG_OFFER_CONTINUE
Definition: Opcodes.h:1490
@ SMSG_PVP_MATCH_STATISTICS
Definition: Opcodes.h:1771
@ SMSG_AUCTION_LIST_BUCKETS_RESULT
Definition: Opcodes.h:969
@ SMSG_LFG_BOOT_PLAYER
Definition: Opcodes.h:1475
@ SMSG_LOOT_ROLL_WON
Definition: Opcodes.h:1526
@ SMSG_LFG_LIST_UPDATE_BLACKLIST
Definition: Opcodes.h:1487
@ SMSG_MOVE_UNSET_CAN_TURN_WHILE_FALLING
Definition: Opcodes.h:1628
@ SMSG_UPDATE_LAST_INSTANCE
Definition: Opcodes.h:2036
@ SMSG_BATTLE_PAY_GET_PRODUCT_LIST_RESPONSE
Definition: Opcodes.h:1016
@ SMSG_CALENDAR_RAID_LOCKOUT_REMOVED
Definition: Opcodes.h:1065
@ SMSG_AREA_TRIGGER_RE_SHAPE
Definition: Opcodes.h:944
@ SMSG_GUILD_REPUTATION_REACTION_CHANGED
Definition: Opcodes.h:1416
@ SMSG_MOVE_SET_RUN_SPEED
Definition: Opcodes.h:1589
@ SMSG_ARCHAEOLOGY_SURVERY_CAST
Definition: Opcodes.h:936
@ SMSG_BATTLEFIELD_STATUS_WAIT_FOR_GROUPS
Definition: Opcodes.h:994
@ SMSG_TRAINER_LIST
Definition: Opcodes.h:2008
@ SMSG_GUILD_MEMBER_DAILY_RESET
Definition: Opcodes.h:1405
@ SMSG_MOVE_UPDATE
Definition: Opcodes.h:1631
@ SMSG_QUEST_POI_QUERY_RESPONSE
Definition: Opcodes.h:1805
@ SMSG_SUPERCEDED_SPELLS
Definition: Opcodes.h:1987
@ SMSG_GARRISON_MISSION_START_CONDITION_UPDATE
Definition: Opcodes.h:1307
@ SMSG_GARRISON_TALENT_REMOVE_SOCKET_DATA
Definition: Opcodes.h:1329
@ SMSG_CALENDAR_INVITE_ALERT
Definition: Opcodes.h:1056
@ SMSG_GUILD_NEWS
Definition: Opcodes.h:1411
@ SMSG_MOVE_DISABLE_TRANSITION_BETWEEN_SWIM_AND_FLY
Definition: Opcodes.h:1550
@ SMSG_MOVE_UPDATE_KNOCK_BACK
Definition: Opcodes.h:1638
@ SMSG_GUILD_NEWS_DELETED
Definition: Opcodes.h:1412
@ SMSG_CRAFTING_ORDER_CRAFT_RESULT
Definition: Opcodes.h:1176
@ SMSG_CONSUMABLE_TOKEN_BUY_AT_MARKET_PRICE_RESPONSE
Definition: Opcodes.h:1156
@ SMSG_SET_AI_ANIM_KIT
Definition: Opcodes.h:1903
@ SMSG_BATTLE_PAY_START_DISTRIBUTION_ASSIGN_TO_TARGET_RESPONSE
Definition: Opcodes.h:1021
@ SMSG_GARRISON_RESET_TALENT_TREE
Definition: Opcodes.h:1322
@ SMSG_MOVE_SPLINE_ENABLE_COLLISION
Definition: Opcodes.h:1599
@ SMSG_BATTLE_PET_UPDATES
Definition: Opcodes.h:1034
@ SMSG_PETITION_RENAME_GUILD_RESPONSE
Definition: Opcodes.h:1690
@ SMSG_COMBAT_EVENT_FAILED
Definition: Opcodes.h:1142
@ SMSG_PLAYER_OPEN_SUBSCRIPTION_INTERSTITIAL
Definition: Opcodes.h:1736
@ SMSG_BATTLEFIELD_STATUS_FAILED
Definition: Opcodes.h:989
@ SMSG_MOVE_UPDATE_COLLISION_HEIGHT
Definition: Opcodes.h:1635
@ SMSG_AUTH_RESPONSE
Definition: Opcodes.h:980
@ SMSG_PRELOAD_CHILD_MAP
Definition: Opcodes.h:1758
@ SMSG_PET_BATTLE_DEBUG_QUEUE_DUMP_RESPONSE
Definition: Opcodes.h:1697
@ SMSG_ACCOUNT_TRANSMOG_SET_FAVORITES_UPDATE
Definition: Opcodes.h:911
@ SMSG_SET_CURRENCY
Definition: Opcodes.h:1906
@ SMSG_PET_BATTLE_FINISHED
Definition: Opcodes.h:1700
@ SMSG_CLEAR_COOLDOWNS
Definition: Opcodes.h:1128
@ SMSG_SET_PLAY_HOVER_ANIM
Definition: Opcodes.h:1923
@ SMSG_DEATH_RELEASE_LOC
Definition: Opcodes.h:1194
@ SMSG_FAILED_PLAYER_CONDITION
Definition: Opcodes.h:1239
@ SMSG_DUEL_COMPLETE
Definition: Opcodes.h:1216
@ SMSG_BATTLEGROUND_PLAYER_JOINED
Definition: Opcodes.h:997
@ SMSG_ON_MONSTER_MOVE
Definition: Opcodes.h:1667
@ SMSG_CALENDAR_MODERATOR_STATUS
Definition: Opcodes.h:1063
@ SMSG_OPEN_ARTIFACT_FORGE
Definition: Opcodes.h:1668
@ SMSG_GARRISON_COMPLETE_MISSION_RESULT
Definition: Opcodes.h:1286
@ SMSG_WARFRONT_COMPLETE
Definition: Opcodes.h:2066
@ SMSG_BATTLE_PAY_START_PURCHASE_RESPONSE
Definition: Opcodes.h:1022
@ SMSG_CONTACT_LIST
Definition: Opcodes.h:1161
@ SMSG_QUERY_GARRISON_PET_NAME_RESPONSE
Definition: Opcodes.h:1777
@ SMSG_CALENDAR_INVITE_STATUS_ALERT
Definition: Opcodes.h:1062
@ SMSG_CHROMIE_TIME_SELECT_EXPANSION_SUCCESS
Definition: Opcodes.h:1123
@ SMSG_BATTLE_PAY_GET_DISTRIBUTION_LIST_RESPONSE
Definition: Opcodes.h:1015
@ SMSG_RESET_COMPRESSION_CONTEXT
Definition: Opcodes.h:1848
@ SMSG_ARTIFACT_RESPEC_PROMPT
Definition: Opcodes.h:952
@ SMSG_START_TIMER
Definition: Opcodes.h:1977
@ SMSG_UPDATE_TALENT_DATA
Definition: Opcodes.h:2040
@ SMSG_FRIEND_STATUS
Definition: Opcodes.h:1253
@ SMSG_CALENDAR_INVITE_REMOVED_ALERT
Definition: Opcodes.h:1060
@ SMSG_GUILD_MEMBER_RECIPES
Definition: Opcodes.h:1406
@ SMSG_QUEST_UPDATE_ADD_PVP_CREDIT
Definition: Opcodes.h:1814
@ SMSG_WAIT_QUEUE_UPDATE
Definition: Opcodes.h:2062
@ SMSG_DISPLAY_WORLD_TEXT_ON_TARGET
Definition: Opcodes.h:1212
@ SMSG_READY_CHECK_RESPONSE
Definition: Opcodes.h:1829
@ SMSG_DESTRUCTIBLE_BUILDING_DAMAGE
Definition: Opcodes.h:1200
@ SMSG_SPECIAL_MOUNT_ANIM
Definition: Opcodes.h:1939
@ SMSG_CALENDAR_COMMUNITY_INVITE
Definition: Opcodes.h:1052
@ SMSG_GARRISON_RECRUIT_FOLLOWER_RESULT
Definition: Opcodes.h:1313
@ SMSG_RESUME_CAST_BAR
Definition: Opcodes.h:1861
@ SMSG_SET_FACTION_AT_WAR
Definition: Opcodes.h:1909
@ SMSG_BATTLE_PAY_MOUNT_DELIVERED
Definition: Opcodes.h:1018
@ SMSG_SET_SHIPMENT_READY_RESPONSE
Definition: Opcodes.h:1926
@ SMSG_MOVE_SET_ADV_FLYING_AIR_FRICTION
Definition: Opcodes.h:1562
@ SMSG_TURN_IN_PETITION_RESULT
Definition: Opcodes.h:2015
@ SMSG_WARGAME_REQUEST_OPPONENT_RESPONSE
Definition: Opcodes.h:2067
@ SMSG_CHALLENGE_MODE_RESET
Definition: Opcodes.h:1086
@ SMSG_MOVE_SET_LAND_WALK
Definition: Opcodes.h:1584
@ SMSG_ITEM_ENCHANT_TIME_UPDATE
Definition: Opcodes.h:1461
@ SMSG_CHANGE_REALM_TICKET_RESPONSE
Definition: Opcodes.h:1090
@ SMSG_INSTANCE_ENCOUNTER_END
Definition: Opcodes.h:1432
@ SMSG_CHAT_PLAYER_NOTFOUND
Definition: Opcodes.h:1114
@ SMSG_NEW_TAXI_PATH
Definition: Opcodes.h:1658
@ SMSG_TRADE_UPDATED
Definition: Opcodes.h:2006
@ SMSG_GARRISON_START_MISSION_RESULT
Definition: Opcodes.h:1324
@ SMSG_MOVE_ADD_IMPULSE
Definition: Opcodes.h:1543
@ SMSG_TRANSFER_ABORTED
Definition: Opcodes.h:2010
@ SMSG_SCENE_OBJECT_PET_BATTLE_FINISHED
Definition: Opcodes.h:1883
@ SMSG_CONTRIBUTION_LAST_UPDATE_RESPONSE
Definition: Opcodes.h:1162
@ SMSG_PET_MODE
Definition: Opcodes.h:1717
@ SMSG_CAN_REDEEM_TOKEN_FOR_BALANCE_RESPONSE
Definition: Opcodes.h:1080
@ SMSG_GARRISON_CREATE_RESULT
Definition: Opcodes.h:1287
@ SMSG_INSTANCE_SAVE_CREATED
Definition: Opcodes.h:1448
@ SMSG_OVERRIDE_LIGHT
Definition: Opcodes.h:1672
@ SMSG_LOAD_CUF_PROFILES
Definition: Opcodes.h:1506
@ SMSG_RATED_PVP_INFO
Definition: Opcodes.h:1827
@ SMSG_RESTART_GLOBAL_COOLDOWN
Definition: Opcodes.h:1858
@ SMSG_PLAY_ONE_SHOT_ANIM_KIT
Definition: Opcodes.h:1748
@ SMSG_PET_LEARNED_SPELLS
Definition: Opcodes.h:1716
@ SMSG_GARRISON_MISSION_BONUS_ROLL_RESULT
Definition: Opcodes.h:1305
@ SMSG_SCENARIO_UI_UPDATE
Definition: Opcodes.h:1879
@ SMSG_CHAT_CAN_LOCAL_WHISPER_TARGET_RESPONSE
Definition: Opcodes.h:1108
@ SMSG_TALENTS_INVOLUNTARILY_RESET
Definition: Opcodes.h:1991
@ SMSG_LEARN_TALENT_FAILED
Definition: Opcodes.h:1471
@ SMSG_MOVE_SPLINE_SET_FEATHER_FALL
Definition: Opcodes.h:1602
@ SMSG_POWER_UPDATE
Definition: Opcodes.h:1757
@ SMSG_CHARACTER_OBJECT_TEST_RESPONSE
Definition: Opcodes.h:1097
@ SMSG_MYTHIC_PLUS_CURRENT_AFFIXES
Definition: Opcodes.h:1653
@ SMSG_ADDON_LIST_REQUEST
Definition: Opcodes.h:920
@ SMSG_ON_CANCEL_EXPECTED_RIDE_VEHICLE_AURA
Definition: Opcodes.h:1666
@ SMSG_CONQUEST_FORMULA_CONSTANTS
Definition: Opcodes.h:1154
@ SMSG_BATTLEGROUND_POINTS
Definition: Opcodes.h:1000
@ SMSG_CHALLENGE_MODE_UPDATE_DEATH_COUNT
Definition: Opcodes.h:1088
@ SMSG_QUEST_CONFIRM_ACCEPT
Definition: Opcodes.h:1791
@ SMSG_SCRIPT_CAST
Definition: Opcodes.h:1888
@ SMSG_PLAYED_TIME
Definition: Opcodes.h:1725
@ SMSG_MOVE_TELEPORT
Definition: Opcodes.h:1624
@ SMSG_VOICE_CHANNEL_INFO_RESPONSE
Definition: Opcodes.h:2053
@ SMSG_QUEST_LOG_FULL
Definition: Opcodes.h:1803
@ SMSG_AVAILABLE_HOTFIXES
Definition: Opcodes.h:981
@ SMSG_PET_GUIDS
Definition: Opcodes.h:1715
@ SMSG_PLAY_SPEAKERBOT_SOUND
Definition: Opcodes.h:1752
@ SMSG_AUCTION_FAVORITE_LIST
Definition: Opcodes.h:965
@ SMSG_UNLOAD_CHILD_MAP
Definition: Opcodes.h:2021
@ SMSG_ENUM_VAS_PURCHASE_STATES_RESPONSE
Definition: Opcodes.h:1232
@ SMSG_HOTFIX_MESSAGE
Definition: Opcodes.h:1425
@ SMSG_MIRROR_IMAGE_CREATURE_DATA
Definition: Opcodes.h:1538
@ SMSG_MOVE_SPLINE_SET_WALK_MODE
Definition: Opcodes.h:1616
@ SMSG_QUEST_SESSION_RESULT
Definition: Opcodes.h:1811
@ SMSG_EQUIPMENT_SET_ID
Definition: Opcodes.h:1234
@ SMSG_QUERY_PLAYER_NAMES_RESPONSE
Definition: Opcodes.h:1785
@ SMSG_DUEL_REQUESTED
Definition: Opcodes.h:1220
@ SMSG_GARRISON_CLEAR_COLLECTION
Definition: Opcodes.h:1280
@ SMSG_RESUME_TOKEN
Definition: Opcodes.h:1863
@ SMSG_STOP_MIRROR_TIMER
Definition: Opcodes.h:1979
@ SMSG_GROUP_ACTION_THROTTLED
Definition: Opcodes.h:1362
@ SMSG_MOUNT_RESULT
Definition: Opcodes.h:1541
@ SMSG_CONVERT_ITEMS_TO_CURRENCY_VALUE
Definition: Opcodes.h:1164
@ SMSG_CAPTURE_POINT_REMOVED
Definition: Opcodes.h:1081
@ SMSG_MOVE_SET_FEATHER_FALL
Definition: Opcodes.h:1579
@ SMSG_FISH_NOT_HOOKED
Definition: Opcodes.h:1245
@ SMSG_MIRROR_IMAGE_COMPONENTED_DATA
Definition: Opcodes.h:1537
@ SMSG_NPC_INTERACTION_OPEN_RESULT
Definition: Opcodes.h:1664
@ SMSG_LIVE_REGION_GET_ACCOUNT_CHARACTER_LIST_RESULT
Definition: Opcodes.h:1504
@ SMSG_CALENDAR_INVITE_NOTES
Definition: Opcodes.h:1057
@ SMSG_GUILD_EVENT_PLAYER_LEFT
Definition: Opcodes.h:1389
@ SMSG_WEEKLY_REWARD_CLAIM_RESULT
Definition: Opcodes.h:2072
@ SMSG_TAXI_NODE_STATUS
Definition: Opcodes.h:1992
@ SMSG_QUEST_PUSH_RESULT
Definition: Opcodes.h:1807
@ SMSG_GUILD_RESET
Definition: Opcodes.h:1417
@ SMSG_DISPLAY_TOAST
Definition: Opcodes.h:1210
@ SMSG_ACTIVATE_ESSENCE_FAILED
Definition: Opcodes.h:915
@ SMSG_QUEST_SESSION_INFO_RESPONSE
Definition: Opcodes.h:1808
@ SMSG_GARRISON_RESET_TALENT_TREE_SOCKET_DATA
Definition: Opcodes.h:1323
@ SMSG_GUILD_BANK_LOG_QUERY_RESULTS
Definition: Opcodes.h:1372
@ SMSG_CLEAR_TREASURE_PICKER_CACHE
Definition: Opcodes.h:1132
@ SMSG_MOVE_APPLY_INERTIA
Definition: Opcodes.h:1544
@ SMSG_SPELL_EMPOWER_SET_STAGE
Definition: Opcodes.h:1949
@ SMSG_FEATURE_SYSTEM_STATUS
Definition: Opcodes.h:1241
@ NUM_OPCODE_HANDLERS
Definition: Opcodes.h:40
@ UNKNOWN_OPCODE
Definition: Opcodes.h:41
@ MAX_OPCODE
Definition: Opcodes.h:39
@ NULL_OPCODE
Definition: Opcodes.h:42
@ PROCESS_INPLACE
Definition: Opcodes.h:2126
@ PROCESS_THREADSAFE
Definition: Opcodes.h:2128
@ PROCESS_THREADUNSAFE
Definition: Opcodes.h:2127