TrinityCore
Loading...
Searching...
No Matches
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
18#ifndef TRINITYCORE_OPCODES_H
19#define TRINITYCORE_OPCODES_H
20
21#include "Define.h"
22#include "StringFormatFwd.h"
23#include <array>
24#include <memory>
25
34
35constexpr uint32 UNKNOWN_OPCODE = 0xBADD; // special marker value for uninitialized WorldPackets
36
38{
50 CMSG_ADDON_LIST = 0x400004,
53 CMSG_ADD_FRIEND = 0x400100,
54 CMSG_ADD_IGNORE = 0x400104,
55 CMSG_ADD_TOY = 0x3A0178,
66 CMSG_ATTACK_STOP = 0x3A0125,
140 CMSG_BONUS_ROLL = 0x3A0265,
141 CMSG_BUG_REPORT = 0x4000B1,
144 CMSG_BUSY_TRADE = 0x3A0002,
147 CMSG_BUY_ITEM = 0x3B0037,
175 CMSG_CAN_DUEL = 0x40008E,
177 CMSG_CAST_SPELL = 0x3A017C,
278 CMSG_COMPLAINT = 0x400098,
319 CMSG_DEL_FRIEND = 0x400101,
320 CMSG_DEL_IGNORE = 0x400105,
326 CMSG_DF_JOIN = 0x400037,
327 CMSG_DF_LEAVE = 0x400040,
339 CMSG_EMOTE = 0x3B00E1,
347 CMSG_FAR_SIGHT = 0x3B0081,
509 CMSG_INSPECT = 0x3B00C9,
518 CMSG_KEEP_ALIVE = 0x4000AB,
561 CMSG_LOOT_ITEM = 0x3A00D1,
562 CMSG_LOOT_MONEY = 0x3A00D0,
564 CMSG_LOOT_ROLL = 0x3A00D6,
565 CMSG_LOOT_UNIT = 0x3A00CF,
625 CMSG_MOVE_JUMP = 0x3E0006,
674 CMSG_MOVE_STOP = 0x3E0002,
714 CMSG_OPEN_ITEM = 0x3A0219,
738 CMSG_PET_ACTION = 0x3B001D,
750 CMSG_PET_RENAME = 0x4000B0,
754 CMSG_PING = 0x410006,
782 CMSG_QUERY_TIME = 0x3B006F,
815 CMSG_READ_ITEM = 0x3A021A,
885 CMSG_SELF_RES = 0x3B00D1,
887 CMSG_SELL_ITEM = 0x3B0035,
890 CMSG_SEND_MAIL = 0x400026,
927 CMSG_SET_PVP = 0x3A0191,
930 CMSG_SET_ROLE = 0x400005,
937 CMSG_SET_TITLE = 0x3A015A,
950 CMSG_SORT_BAGS = 0x3A0222,
962 CMSG_SPLIT_ITEM = 0x3D0008,
979 CMSG_SWAP_ITEM = 0x3D0006,
993 CMSG_TOGGLE_PVP = 0x3A0190,
1008 CMSG_TUTORIAL = 0x40010C,
1029 CMSG_USE_ITEM = 0x3A0177,
1030 CMSG_USE_TOY = 0x3A017A,
1039 CMSG_WHO = 0x4000AD,
1040 CMSG_WHO_IS = 0x4000AC,
1043 CMSG_WRAP_ITEM = 0x3D0000,
1044
1047
1048 // Deleted opcodes, here only to allow compile
1050};
1051
1052inline constexpr std::size_t NUM_CMSG_OPCODES = 1948;
1053
1054inline constexpr std::ptrdiff_t GetOpcodeArrayIndex(OpcodeClient opcode)
1055{
1056 uint32 idInGroup = opcode & 0xFFFF;
1057 switch (opcode >> 16)
1058 {
1059 case 0x29: return idInGroup < 55 ? idInGroup + 0 : -1;
1060 case 0x2B: return idInGroup < 51 ? idInGroup + 55 : -1;
1061 case 0x2C: return idInGroup < 3 ? idInGroup + 106 : -1;
1062 case 0x2D: return idInGroup < 39 ? idInGroup + 109 : -1;
1063 case 0x2E: return idInGroup < 2 ? idInGroup + 148 : -1;
1064 case 0x2F: return idInGroup < 2 ? idInGroup + 150 : -1;
1065 case 0x30: return idInGroup < 17 ? idInGroup + 152 : -1;
1066 case 0x31: return idInGroup < 8 ? idInGroup + 169 : -1;
1067 case 0x32: return idInGroup < 9 ? idInGroup + 177 : -1;
1068 case 0x33: return idInGroup < 38 ? idInGroup + 186 : -1;
1069 case 0x35: return idInGroup < 9 ? idInGroup + 224 : -1;
1070 case 0x37: return idInGroup < 8 ? idInGroup + 233 : -1;
1071 case 0x38: return idInGroup < 16 ? idInGroup + 241 : -1;
1072 case 0x39: return idInGroup < 16 ? idInGroup + 257 : -1;
1073 case 0x3A: return idInGroup < 783 ? idInGroup + 273 : -1;
1074 case 0x3B: return idInGroup < 309 ? idInGroup + 1056 : -1;
1075 case 0x3C: return idInGroup < 1 ? idInGroup + 1365 : -1;
1076 case 0x3D: return idInGroup < 10 ? idInGroup + 1366 : -1;
1077 case 0x3E: return idInGroup < 137 ? idInGroup + 1376 : -1;
1078 case 0x40: return idInGroup < 417 ? idInGroup + 1513 : -1;
1079 case 0x41: return idInGroup < 18 ? idInGroup + 1930 : -1;
1080 default: return -1;
1081 }
1082}
1083
1085{
1235 SMSG_BOSS_KILL = 0x48002B,
1313 SMSG_CHAT = 0x470001,
1316 SMSG_CHAT_DOWN = 0x470014,
1405 SMSG_DB_REPLY = 0x460000,
1435 SMSG_EMOTE = 0x420271,
1572 SMSG_GOD_MODE = 0x4201A5,
1828 SMSG_LOOT_LIST = 0x4201E9,
1834 SMSG_LOOT_ROLL = 0x4200C6,
1852 SMSG_MOTD = 0x470003,
1881 SMSG_MOVE_ROOT = 0x5A0029,
2015 SMSG_NEW_WORLD = 0x42002B,
2029 SMSG_PAGE_TEXT = 0x4201C3,
2073 SMSG_PET_GUIDS = 0x4201AD,
2075 SMSG_PET_MODE = 0x42001F,
2117 SMSG_PONG = 0x490009,
2335 SMSG_SPELL_GO = 0x62002C,
2403 SMSG_UI_ACTION = 0x420212,
2460 SMSG_WEATHER = 0x420150,
2464 SMSG_WHO = 0x470002,
2465 SMSG_WHO_IS = 0x42014F,
2480
2481 // Deleted opcodes, here only to allow compile
2483};
2484
2485inline constexpr std::size_t NUM_SMSG_OPCODES = 1650;
2486
2487inline constexpr std::ptrdiff_t GetOpcodeArrayIndex(OpcodeServer opcode)
2488{
2489 uint32 idInGroup = opcode & 0xFFFF;
2490 switch (opcode >> 16)
2491 {
2492 case 0x42: return idInGroup < 899 ? idInGroup + 0 : -1;
2493 case 0x43: return idInGroup < 5 ? idInGroup + 899 : -1;
2494 case 0x46: return idInGroup < 20 ? idInGroup + 904 : -1;
2495 case 0x47: return idInGroup < 36 ? idInGroup + 924 : -1;
2496 case 0x48: return idInGroup < 49 ? idInGroup + 960 : -1;
2497 case 0x49: return idInGroup < 14 ? idInGroup + 1009 : -1;
2498 case 0x4A: return idInGroup < 12 ? idInGroup + 1023 : -1;
2499 case 0x4C: return idInGroup < 82 ? idInGroup + 1035 : -1;
2500 case 0x4E: return idInGroup < 72 ? idInGroup + 1117 : -1;
2501 case 0x50: return idInGroup < 2 ? idInGroup + 1189 : -1;
2502 case 0x51: return idInGroup < 11 ? idInGroup + 1191 : -1;
2503 case 0x52: return idInGroup < 8 ? idInGroup + 1202 : -1;
2504 case 0x53: return idInGroup < 8 ? idInGroup + 1210 : -1;
2505 case 0x54: return idInGroup < 36 ? idInGroup + 1218 : -1;
2506 case 0x55: return idInGroup < 8 ? idInGroup + 1254 : -1;
2507 case 0x56: return idInGroup < 34 ? idInGroup + 1262 : -1;
2508 case 0x58: return idInGroup < 1 ? idInGroup + 1296 : -1;
2509 case 0x5A: return idInGroup < 130 ? idInGroup + 1297 : -1;
2510 case 0x5B: return idInGroup < 6 ? idInGroup + 1427 : -1;
2511 case 0x5C: return idInGroup < 20 ? idInGroup + 1433 : -1;
2512 case 0x5E: return idInGroup < 8 ? idInGroup + 1453 : -1;
2513 case 0x5F: return idInGroup < 52 ? idInGroup + 1461 : -1;
2514 case 0x60: return idInGroup < 41 ? idInGroup + 1513 : -1;
2515 case 0x62: return idInGroup < 87 ? idInGroup + 1554 : -1;
2516 case 0x63: return idInGroup < 8 ? idInGroup + 1641 : -1;
2517 case 0x65: return idInGroup < 1 ? idInGroup + 1649 : -1;
2518 default: return -1;
2519 }
2520}
2521
2522constexpr bool IsInstanceOnlyOpcode(uint32 opcode)
2523{
2524 switch (opcode)
2525 {
2526 case SMSG_QUERY_TIME_RESPONSE: // Client
2527 case SMSG_MOUNT_RESULT: // Client
2528 case SMSG_ATTACK_START: // ClientCombat
2529 case SMSG_ATTACK_STOP: // ClientCombat
2530 case SMSG_DUEL_REQUESTED: // ClientCombat
2531 case SMSG_DUEL_ARRANGED: // ClientCombat
2532 case SMSG_DUEL_OUT_OF_BOUNDS: // ClientCombat
2533 case SMSG_DUEL_IN_BOUNDS: // ClientCombat
2534 case SMSG_DUEL_COMPLETE: // ClientCombat
2535 case SMSG_DUEL_WINNER: // ClientCombat
2536 case SMSG_QUEST_GIVER_STATUS: // ClientQuest
2537 return true;
2538 default:
2539 return false;
2540 }
2541}
2542
2545{
2546 STATUS_AUTHED = 0, // Player authenticated (_player == NULL, m_playerRecentlyLogout = false or will be reset before handler call, m_GUID have garbage)
2547 STATUS_LOGGEDIN, // Player in game (_player != NULL, m_GUID == _player->GetGUID(), inWorld())
2548 STATUS_TRANSFER, // Player transferring to another map (_player != NULL, m_GUID == _player->GetGUID(), !inWorld())
2549 STATUS_LOGGEDIN_OR_RECENTLY_LOGGOUT, // _player != NULL or _player == NULL && m_playerRecentlyLogout && m_playerLogout, m_GUID store last _player guid)
2550 STATUS_NEVER, // Opcode not accepted from client (deprecated or server side only)
2551 STATUS_UNHANDLED, // Opcode not handled yet
2552 STATUS_IGNORED // Opcode not handled - and no plans to handle it
2554
2556{
2557 PROCESS_INPLACE = 0, //process packet whenever we receive it - mostly for non-handled or non-implemented packets
2558 PROCESS_THREADUNSAFE, //packet is not thread-safe - process it in World::UpdateSessions()
2559 PROCESS_THREADSAFE //packet is thread-safe - process it in Map::Update()
2561
2562class WorldPacket;
2563class WorldSession;
2564
2574
2581
2582template <typename OpcodeEnum>
2584{
2585 OpcodeEnum Opcode;
2586};
2587
2588template <>
2590{
2591 template <typename FormatContext>
2592 typename FormatContext::iterator format(FormattedOpcodeName<OpcodeClient> const& opcode, FormatContext& ctx) const;
2593};
2594
2595template <>
2597{
2598 template <typename FormatContext>
2599 typename FormatContext::iterator format(FormattedOpcodeName<OpcodeServer> const& opcode, FormatContext& ctx) const;
2600};
2601
2603inline constexpr FormattedOpcodeName<OpcodeClient> GetOpcodeNameForLogging(OpcodeClient opcode) { return { .Opcode = opcode }; }
2604inline constexpr FormattedOpcodeName<OpcodeServer> GetOpcodeNameForLogging(OpcodeServer opcode) { return { .Opcode = opcode }; }
2605
2607{
2608public:
2611
2612 void Initialize();
2613
2614 bool IsValid(OpcodeClient index) const
2615 {
2616 std::ptrdiff_t opcodeArrayIndex = GetOpcodeArrayIndex(index);
2617 return opcodeArrayIndex >= 0 && opcodeArrayIndex < std::ssize(_internalTableClient);
2618 }
2619
2620 bool IsValid(OpcodeServer index) const
2621 {
2622 std::ptrdiff_t opcodeArrayIndex = GetOpcodeArrayIndex(index);
2623 return opcodeArrayIndex >= 0 && opcodeArrayIndex < std::ssize(_internalTableServer);
2624 }
2625
2627 {
2628 return _internalTableClient[GetOpcodeArrayIndex(index)].get();
2629 }
2630
2632 {
2633 return _internalTableServer[GetOpcodeArrayIndex(index)].get();
2634 }
2635
2636private:
2637 bool ValidateClientOpcode(OpcodeClient opcode, char const* name) const;
2639
2640 bool ValidateServerOpcode(OpcodeServer opcode, char const* name, ConnectionType conIdx) const;
2641 void ValidateAndSetServerOpcode(OpcodeServer opcode, char const* name, SessionStatus status, ConnectionType conIdx);
2642
2645
2646 std::array<std::unique_ptr<ClientOpcodeHandler>, NUM_CMSG_OPCODES> _internalTableClient;
2647 std::array<std::unique_ptr<ServerOpcodeHandler>, NUM_SMSG_OPCODES> _internalTableServer;
2648
2651};
2652
2654
2655#endif
int8_t int8
Definition Define.h:152
uint32_t uint32
Definition Define.h:154
constexpr std::size_t NUM_CMSG_OPCODES
Definition Opcodes.h:1052
constexpr uint32 UNKNOWN_OPCODE
Definition Opcodes.h:35
ConnectionType
Definition Opcodes.h:27
@ MAX_CONNECTION_TYPES
Definition Opcodes.h:30
@ CONNECTION_TYPE_INSTANCE
Definition Opcodes.h:29
@ CONNECTION_TYPE_DEFAULT
Definition Opcodes.h:32
@ CONNECTION_TYPE_REALM
Definition Opcodes.h:28
constexpr std::size_t NUM_SMSG_OPCODES
Definition Opcodes.h:2485
constexpr bool IsInstanceOnlyOpcode(uint32 opcode)
Definition Opcodes.h:2522
OpcodeServer
Definition Opcodes.h:1085
@ SMSG_TRANSMOG_OUTFIT_INFO_UPDATED
Definition Opcodes.h:2393
@ SMSG_ACCOUNT_STORE_RESULT
Definition Opcodes.h:1106
@ SMSG_CHARACTER_UPGRADE_COMPLETE
Definition Opcodes.h:1307
@ SMSG_VOID_TRANSFER_RESULT
Definition Opcodes.h:2450
@ SMSG_SEND_SPELL_HISTORY
Definition Opcodes.h:2265
@ SMSG_SET_FACTION_VISIBLE
Definition Opcodes.h:2282
@ SMSG_MOVE_SPLINE_SET_PITCH_RATE
Definition Opcodes.h:1935
@ SMSG_GARRISON_AUTO_TROOP_MIN_LEVEL_UPDATE_RESULT
Definition Opcodes.h:1487
@ SMSG_MOVE_SET_ADV_FLYING_LAUNCH_SPEED_COEFFICIENT
Definition Opcodes.h:1888
@ SMSG_INSTANCE_ENCOUNTER_ENGAGE_UNIT
Definition Opcodes.h:1728
@ SMSG_GOSSIP_QUEST_UPDATE
Definition Opcodes.h:1577
@ SMSG_PLAYER_END_OF_MATCH_DETAILS
Definition Opcodes.h:2093
@ SMSG_PET_BATTLE_FIRST_ROUND
Definition Opcodes.h:2059
@ SMSG_RECEIVE_PING_UNIT
Definition Opcodes.h:2199
@ SMSG_BATTLE_PAY_DISTRIBUTION_UNREVOKED
Definition Opcodes.h:1207
@ SMSG_PLAYER_SHOW_PARTY_POSE_UI
Definition Opcodes.h:2101
@ SMSG_MYTHIC_PLUS_SEASON_DATA
Definition Opcodes.h:1986
@ SMSG_GUILD_EVENT_NEW_LEADER
Definition Opcodes.h:1604
@ SMSG_PLAYER_CONDITION_RESULT
Definition Opcodes.h:2091
@ SMSG_GARRISON_SWAP_BUILDINGS_RESPONSE
Definition Opcodes.h:1537
@ SMSG_ZONE_UNDER_ATTACK
Definition Opcodes.h:2479
@ SMSG_NEIGHBORHOOD_CANCEL_INVITATION_RESPONSE
Definition Opcodes.h:1989
@ SMSG_GAME_OBJECT_CUSTOM_ANIM
Definition Opcodes.h:1470
@ SMSG_READ_ITEM_RESULT_FAILED
Definition Opcodes.h:2195
@ SMSG_BATTLEFIELD_STATUS_NEED_CONFIRMATION
Definition Opcodes.h:1185
@ SMSG_REATTACH_RESURRECT
Definition Opcodes.h:2198
@ SMSG_CHALLENGE_MODE_NEW_PLAYER_RECORD
Definition Opcodes.h:1288
@ SMSG_GUILD_ROSTER
Definition Opcodes.h:1642
@ SMSG_GOD_MODE
Definition Opcodes.h:1572
@ SMSG_MOVE_SPLINE_SET_SWIM_SPEED
Definition Opcodes.h:1940
@ SMSG_MOVE_SET_FLIGHT_SPEED
Definition Opcodes.h:1906
@ SMSG_GUILD_EVENT_MOTD
Definition Opcodes.h:1603
@ SMSG_MOVE_SPLINE_SET_FLYING
Definition Opcodes.h:1931
@ SMSG_USE_EQUIPMENT_SET_RESULT
Definition Opcodes.h:2435
@ SMSG_NEIGHBORHOOD_CHARTER_OPEN_CONFIRMATION_UI_RESPONSE
Definition Opcodes.h:1991
@ SMSG_LFG_TELEPORT_DENIED
Definition Opcodes.h:1806
@ SMSG_READY_CHECK_COMPLETED
Definition Opcodes.h:2192
@ SMSG_GARRISON_TALENT_UPDATE_SOCKET_DATA
Definition Opcodes.h:1542
@ SMSG_PET_BATTLE_CHAT_RESTRICTED
Definition Opcodes.h:2054
@ SMSG_MOVE_SET_FLIGHT_BACK_SPEED
Definition Opcodes.h:1905
@ SMSG_WEEKLY_REWARDS_PROGRESS_RESULT
Definition Opcodes.h:2461
@ SMSG_VOID_STORAGE_TRANSFER_CHANGES
Definition Opcodes.h:2449
@ SMSG_MOVE_SET_ADV_FLYING_SURFACE_FRICTION
Definition Opcodes.h:1894
@ SMSG_CHECK_ABANDON_NPE
Definition Opcodes.h:1328
@ SMSG_PLAYER_SAVE_PERSONAL_EMBLEM
Definition Opcodes.h:2098
@ SMSG_CLOSE_ARTIFACT_FORGE
Definition Opcodes.h:1342
@ SMSG_SPELL_EMPOWER_UPDATE
Definition Opcodes.h:2329
@ SMSG_PAUSE_MIRROR_TIMER
Definition Opcodes.h:2039
@ SMSG_QUERY_PLAYER_NAME_BY_COMMUNITY_ID_RESPONSE
Definition Opcodes.h:2148
@ SMSG_LFG_PARTY_INFO
Definition Opcodes.h:1796
@ SMSG_PAGE_TEXT
Definition Opcodes.h:2029
@ SMSG_LOAD_EQUIPMENT_SET
Definition Opcodes.h:1814
@ SMSG_UPDATE_CHARACTER_FLAGS
Definition Opcodes.h:2418
@ SMSG_PET_BATTLE_ROUND_RESULT
Definition Opcodes.h:2067
@ SMSG_QUEST_SESSION_READY_CHECK_RESPONSE
Definition Opcodes.h:2174
@ SMSG_WARDEN3_ENABLED
Definition Opcodes.h:2456
@ SMSG_ITEM_EXPIRE_PURCHASE_REFUND
Definition Opcodes.h:1765
@ SMSG_DEBUG_MENU_MANAGER_FULL_UPDATE
Definition Opcodes.h:1407
@ SMSG_LOSS_OF_CONTROL_AURA_UPDATE
Definition Opcodes.h:1837
@ SMSG_GARRISON_UNLEARN_BLUEPRINT_RESULT
Definition Opcodes.h:1544
@ SMSG_WARDEN3_DATA
Definition Opcodes.h:2454
@ SMSG_INITIATIVE_COMPLETE
Definition Opcodes.h:1715
@ SMSG_AUCTION_LIST_BIDDED_ITEMS_RESULT
Definition Opcodes.h:1162
@ SMSG_PERKS_PROGRAM_VENDOR_UPDATE
Definition Opcodes.h:2046
@ SMSG_REQUEST_SCHEDULED_PVP_INFO_RESPONSE
Definition Opcodes.h:2215
@ SMSG_GARRISON_GET_CLASS_SPEC_CATEGORY_INFO_RESULT
Definition Opcodes.h:1509
@ SMSG_LFG_SUSPEND_LOREWALKING
Definition Opcodes.h:1805
@ SMSG_GUILD_BANK_QUERY_RESULTS
Definition Opcodes.h:1590
@ SMSG_DUEL_ARRANGED
Definition Opcodes.h:1427
@ SMSG_ACCOUNT_COSMETIC_ADDED
Definition Opcodes.h:1089
@ SMSG_MOVE_DISABLE_COLLISION
Definition Opcodes.h:1858
@ SMSG_GARRISON_REQUEST_BLUEPRINT_AND_SPECIALIZATION_DATA_RESULT
Definition Opcodes.h:1532
@ SMSG_GUILD_BANK_REMAINING_WITHDRAW_MONEY
Definition Opcodes.h:1591
@ SMSG_GARRISON_ASSIGN_FOLLOWER_TO_BUILDING_RESULT
Definition Opcodes.h:1486
@ SMSG_PARTY_COMMAND_RESULT
Definition Opcodes.h:2030
@ SMSG_MULTI_FLOOR_NEW_FLOOR
Definition Opcodes.h:1982
@ SMSG_PLAYER_SHOW_ARROW_CALLOUT
Definition Opcodes.h:2099
@ SMSG_LFG_ROLE_CHECK_UPDATE
Definition Opcodes.h:1803
@ SMSG_CONSOLE_WRITE
Definition Opcodes.h:1364
@ SMSG_PROC_RESIST
Definition Opcodes.h:2124
@ SMSG_HOUSING_DECOR_PLACE_RESPONSE
Definition Opcodes.h:1655
@ SMSG_NEW_WORLD
Definition Opcodes.h:2015
@ SMSG_SHOW_DELVES_COMPANION_CONFIGURATION_UI
Definition Opcodes.h:2304
@ SMSG_SET_CTR_OPTIONS
Definition Opcodes.h:2275
@ SMSG_MOVE_UPDATE_PITCH_RATE
Definition Opcodes.h:1969
@ SMSG_INVALIDATE_PLAYER
Definition Opcodes.h:1754
@ SMSG_PET_STABLE_RESULT
Definition Opcodes.h:2079
@ SMSG_VIGNETTE_UPDATE
Definition Opcodes.h:2442
@ SMSG_HOUSING_ROOM_ADD_RESPONSE
Definition Opcodes.h:1677
@ SMSG_CANCEL_ORPHAN_SPELL_VISUAL
Definition Opcodes.h:1270
@ SMSG_GARRISON_GENERATE_FOLLOWERS_RESULT
Definition Opcodes.h:1508
@ SMSG_BATTLE_PAY_DISTRIBUTION_ASSIGN_VAS_RESPONSE
Definition Opcodes.h:1206
@ SMSG_GARRISON_REMOVE_FOLLOWER_FROM_BUILDING_RESULT
Definition Opcodes.h:1529
@ SMSG_NOTIFY_MONEY
Definition Opcodes.h:2018
@ SMSG_CRAFTING_ORDER_CREATE_RESULT
Definition Opcodes.h:1386
@ SMSG_PET_BATTLE_PVP_CHALLENGE
Definition Opcodes.h:2062
@ SMSG_MOVE_SPLINE_SET_WALK_SPEED
Definition Opcodes.h:1943
@ SMSG_VOICE_CHANNEL_STT_TOKEN_RESPONSE
Definition Opcodes.h:2444
@ SMSG_XP_GAIN_ABORTED
Definition Opcodes.h:2477
@ SMSG_SPELL_CHANNEL_UPDATE
Definition Opcodes.h:2322
@ SMSG_BATTLE_PET_RESTORED
Definition Opcodes.h:1225
@ SMSG_CALENDAR_SEND_EVENT
Definition Opcodes.h:1265
@ SMSG_DISPLAY_PLAYER_CHOICE
Definition Opcodes.h:1419
@ SMSG_NEIGHBORHOOD_REMOVE_SECONDARY_OWNER_RESPONSE
Definition Opcodes.h:2009
@ SMSG_BROADCAST_SUMMON_CAST
Definition Opcodes.h:1238
@ SMSG_PLAY_SCENE
Definition Opcodes.h:2111
@ SMSG_MOVE_ENABLE_DOUBLE_JUMP
Definition Opcodes.h:1868
@ SMSG_QUEST_UPDATE_FAILED
Definition Opcodes.h:2180
@ SMSG_SPELL_EXECUTE_LOG
Definition Opcodes.h:2331
@ SMSG_ACCOUNT_ROOM_MATERIAL_COLLECTION_UPDATE
Definition Opcodes.h:1101
@ SMSG_GUILD_CHANGE_NAME_RESULT
Definition Opcodes.h:1595
@ SMSG_HOUSING_SVCS_GUILD_CREATE_NEIGHBORHOOD_NOTIFICATION
Definition Opcodes.h:1698
@ SMSG_TIMERUNNING_SEASON_ENDED
Definition Opcodes.h:2377
@ SMSG_BATTLEFIELD_LIST
Definition Opcodes.h:1180
@ SMSG_DISPLAY_QUEST_POPUP
Definition Opcodes.h:1421
@ SMSG_BATTLE_PET_JOURNAL_LOCK_ACQUIRED
Definition Opcodes.h:1223
@ SMSG_LOOT_REMOVED
Definition Opcodes.h:1832
@ SMSG_TOTEM_CREATED
Definition Opcodes.h:2382
@ SMSG_INSTANCE_RESET
Definition Opcodes.h:1747
@ SMSG_AUCTION_LIST_OWNED_ITEMS_RESULT
Definition Opcodes.h:1165
@ SMSG_ARTIFACT_ENDGAME_POWERS_REFUNDED
Definition Opcodes.h:1144
@ SMSG_CLUB_FINDER_LOOKUP_CLUB_POSTINGS_LIST
Definition Opcodes.h:1345
@ SMSG_LFG_EXPAND_SEARCH_PROMPT
Definition Opcodes.h:1781
@ SMSG_NEIGHBORHOOD_MOVE_HOUSE_RESPONSE
Definition Opcodes.h:2005
@ SMSG_SEND_RAID_TARGET_UPDATE_ALL
Definition Opcodes.h:2262
@ SMSG_AE_LOOT_TARGETS
Definition Opcodes.h:1126
@ SMSG_BROADCAST_SUMMON_RESPONSE
Definition Opcodes.h:1239
@ SMSG_GM_TICKET_CASE_STATUS
Definition Opcodes.h:1570
@ SMSG_WOW_LABS_NOTIFY_PLAYERS_MATCH_STATE_CHANGED
Definition Opcodes.h:2472
@ SMSG_CALENDAR_SEND_NUM_PENDING
Definition Opcodes.h:1266
@ SMSG_CONSUMABLE_TOKEN_CAN_VETERAN_BUY_RESPONSE
Definition Opcodes.h:1367
@ SMSG_ACHIEVEMENT_EARNED
Definition Opcodes.h:1112
@ SMSG_GUILD_CHALLENGE_COMPLETED
Definition Opcodes.h:1593
@ SMSG_MOVE_ROOT
Definition Opcodes.h:1881
@ SMSG_CONFIRM_PARTY_INVITE
Definition Opcodes.h:1362
@ SMSG_GUILD_MOVE_STARTING
Definition Opcodes.h:1627
@ SMSG_SET_VEHICLE_REC_ID
Definition Opcodes.h:2301
@ SMSG_ACCOUNT_DATA_TIMES
Definition Opcodes.h:1091
@ SMSG_NEIGHBORHOOD_DECLINE_INVITATION_RESPONSE
Definition Opcodes.h:1996
@ SMSG_GAIN_MAW_POWER
Definition Opcodes.h:1466
@ SMSG_TREASURE_PICKER_RESPONSE
Definition Opcodes.h:2397
@ SMSG_AUCTIONABLE_TOKEN_SELL_CONFIRM_REQUIRED
Definition Opcodes.h:1155
@ SMSG_OPEN_CONTAINER
Definition Opcodes.h:2025
@ SMSG_CLUB_FINDER_RESPONSE_CHARACTER_APPLICATION_LIST
Definition Opcodes.h:1346
@ SMSG_QUERY_REALM_GUILD_MASTER_INFO_RESPONSE
Definition Opcodes.h:2150
@ SMSG_BLACK_MARKET_BID_ON_ITEM_RESULT
Definition Opcodes.h:1230
@ SMSG_BATTLE_PET_TRAP_LEVEL
Definition Opcodes.h:1227
@ SMSG_MOVE_SPLINE_SET_RUN_MODE
Definition Opcodes.h:1937
@ SMSG_MOVE_DISABLE_GRAVITY
Definition Opcodes.h:1862
@ SMSG_HOUSING_SVCS_GET_POTENTIAL_HOUSE_OWNERS_RESPONSE
Definition Opcodes.h:1695
@ SMSG_AURA_POINTS_DEPLETED
Definition Opcodes.h:1170
@ SMSG_UPDATE_CAPTURE_POINT
Definition Opcodes.h:2416
@ SMSG_VOID_STORAGE_CONTENTS
Definition Opcodes.h:2447
@ SMSG_RESET_QUEST_POI
Definition Opcodes.h:2219
@ SMSG_BATTLEFIELD_STATUS_ACTIVE
Definition Opcodes.h:1182
@ SMSG_AUCTION_LIST_ITEMS_RESULT
Definition Opcodes.h:1164
@ SMSG_BATTLENET_RESPONSE
Definition Opcodes.h:1198
@ SMSG_SPELL_CHANNEL_START
Definition Opcodes.h:2321
@ SMSG_ATTACK_SWING_LANDED_LOG
Definition Opcodes.h:1152
@ SMSG_GUILD_EVENT_TAB_TEXT_CHANGED
Definition Opcodes.h:1614
@ SMSG_MOVE_UNSET_CANNOT_SWIM
Definition Opcodes.h:1953
@ SMSG_GUILD_EVENT_TAB_DELETED
Definition Opcodes.h:1612
@ SMSG_MOVE_SPLINE_SET_SWIM_BACK_SPEED
Definition Opcodes.h:1939
@ SMSG_AREA_SPIRIT_HEALER_TIME
Definition Opcodes.h:1136
@ SMSG_INSTANCE_ENCOUNTER_TIMER_START
Definition Opcodes.h:1742
@ SMSG_MOVE_SPLINE_DISABLE_COLLISION
Definition Opcodes.h:1923
@ SMSG_GUILD_KNOWN_RECIPES
Definition Opcodes.h:1621
@ SMSG_SHIPMENT_FACTION_UPDATE_RESULT
Definition Opcodes.h:2303
@ SMSG_GARRISON_BUILDING_ACTIVATED
Definition Opcodes.h:1488
@ SMSG_PLAY_SPELL_VISUAL
Definition Opcodes.h:2114
@ SMSG_GARRISON_RESEARCH_TALENT_RESULT
Definition Opcodes.h:1533
@ SMSG_PLAYER_BONUS_ROLL_FAILED
Definition Opcodes.h:2087
@ SMSG_LFG_JOIN_LOBBY_MATCHMAKER_QUEUE
Definition Opcodes.h:1783
@ SMSG_MULTI_FLOOR_LEAVE_FLOOR
Definition Opcodes.h:1981
@ SMSG_INITIATIVE_REWARD_AVAILABLE
Definition Opcodes.h:1716
@ SMSG_MOVE_SET_VEHICLE_REC_ID
Definition Opcodes.h:1919
@ SMSG_QUEST_UPDATE_ADD_CREDIT
Definition Opcodes.h:2176
@ SMSG_QUERY_GUILD_INFO_RESPONSE
Definition Opcodes.h:2140
@ SMSG_CRAFTING_ORDER_REJECT_RESULT
Definition Opcodes.h:1390
@ SMSG_WOW_LABS_AREA_SELECTED
Definition Opcodes.h:2470
@ SMSG_CHANNEL_LIST
Definition Opcodes.h:1297
@ SMSG_MOVE_ENABLE_TRANSITION_BETWEEN_SWIM_AND_FLY
Definition Opcodes.h:1875
@ SMSG_ADD_LOSS_OF_CONTROL
Definition Opcodes.h:1121
@ SMSG_CHAT_NOT_IN_PARTY
Definition Opcodes.h:1320
@ SMSG_CRAFTING_ORDER_UPDATE_STATE
Definition Opcodes.h:1392
@ SMSG_CHALLENGE_MODE_SET_LEAVER_PENALTY_TIMER
Definition Opcodes.h:1292
@ SMSG_MOVE_UNROOT
Definition Opcodes.h:1951
@ SMSG_REMOVE_ITEM_PASSIVE
Definition Opcodes.h:2209
@ SMSG_ENCHANTMENT_LOG
Definition Opcodes.h:1437
@ SMSG_RESTRICTED_ACCOUNT_WARNING
Definition Opcodes.h:2227
@ SMSG_RECENT_ALLY_DATA_RESPONSE
Definition Opcodes.h:2201
@ SMSG_CHALLENGE_MODE_COMPLETE
Definition Opcodes.h:1287
@ SMSG_TOTEM_DURATION_CHANGED
Definition Opcodes.h:2383
@ SMSG_MOVE_SPLINE_UNROOT
Definition Opcodes.h:1947
@ SMSG_GUILD_EVENT_PRESENCE_CHANGE
Definition Opcodes.h:1607
@ SMSG_LFG_LIST_APPLICATION_STATUS_UPDATE
Definition Opcodes.h:1786
@ SMSG_MOVE_SET_RUN_BACK_SPEED
Definition Opcodes.h:1914
@ SMSG_MOVE_UNSET_CAN_DRIVE
Definition Opcodes.h:1955
@ SMSG_DEFENSE_MESSAGE
Definition Opcodes.h:1408
@ SMSG_GARRISON_MAP_DATA_RESPONSE
Definition Opcodes.h:1516
@ SMSG_VAS_GET_SERVICE_STATUS_RESPONSE
Definition Opcodes.h:2438
@ SMSG_RESPEC_WIPE_CONFIRM
Definition Opcodes.h:2222
@ SMSG_ACCOUNT_EXTERIOR_FIXTURE_COLLECTION_UPDATE
Definition Opcodes.h:1093
@ SMSG_GM_TICKET_SYSTEM_STATUS
Definition Opcodes.h:1571
@ SMSG_INSTANCE_ENCOUNTER_UPDATE_ALLOW_RELEASE_IN_PROGRESS
Definition Opcodes.h:1743
@ SMSG_HOUSING_ROOM_SET_CEILING_TYPE_RESPONSE
Definition Opcodes.h:1680
@ SMSG_BATTLENET_CHALLENGE_ABORT
Definition Opcodes.h:1195
@ SMSG_RAID_DIFFICULTY_SET
Definition Opcodes.h:2186
@ SMSG_CALENDAR_CLEAR_PENDING_ACTION
Definition Opcodes.h:1247
@ SMSG_INSTANCE_ABANDON_VOTE_STARTED
Definition Opcodes.h:1724
@ SMSG_WOW_LABS_PARTY_ERROR
Definition Opcodes.h:2473
@ SMSG_CALENDAR_COMMAND_RESULT
Definition Opcodes.h:1248
@ SMSG_CURRENCY_TRANSFER_LOG
Definition Opcodes.h:1400
@ SMSG_RESPONSE_PERK_PENDING_REWARDS
Definition Opcodes.h:2224
@ SMSG_MOVE_REMOVE_INERTIA
Definition Opcodes.h:1879
@ SMSG_MOVE_SPLINE_SET_HOVER
Definition Opcodes.h:1932
@ SMSG_PET_TAME_FAILURE
Definition Opcodes.h:2080
@ SMSG_PET_ACTION_FEEDBACK
Definition Opcodes.h:2052
@ SMSG_SPELL_FAILURE
Definition Opcodes.h:2333
@ SMSG_SET_FACTION_STANDING
Definition Opcodes.h:2281
@ SMSG_PET_SPELLS_MESSAGE
Definition Opcodes.h:2078
@ SMSG_PET_BATTLE_INITIAL_UPDATE
Definition Opcodes.h:2060
@ SMSG_RAID_INSTANCE_MESSAGE
Definition Opcodes.h:2188
@ SMSG_GARRISON_PLOT_REMOVED
Definition Opcodes.h:1524
@ SMSG_HOUSING_SVCS_NEIGHBORHOOD_UPDATE_NAME_NOTIFICATION
Definition Opcodes.h:1705
@ SMSG_HOUSING_SVCS_GUILD_REMOVE_HOUSE_NOTIFICATION
Definition Opcodes.h:1700
@ SMSG_COOLDOWN_EVENT
Definition Opcodes.h:1375
@ SMSG_QUERY_GAME_OBJECT_RESPONSE
Definition Opcodes.h:2137
@ SMSG_DUEL_OUT_OF_BOUNDS
Definition Opcodes.h:1431
@ SMSG_CRAFTING_ORDER_FULFILL_RESULT
Definition Opcodes.h:1387
@ SMSG_GARRISON_FOLLOWER_CHANGED_ITEM_LEVEL
Definition Opcodes.h:1504
@ SMSG_QUEST_GIVER_INVALID_QUEST
Definition Opcodes.h:2157
@ SMSG_GARRISON_USE_RECALL_PORTAL_RESULT
Definition Opcodes.h:1549
@ SMSG_SCENARIO_SHOW_CRITERIA
Definition Opcodes.h:2244
@ SMSG_UPDATE_GAME_TIME_STATE
Definition Opcodes.h:2424
@ SMSG_HOUSING_SVCS_GET_HOUSE_FINDER_INFO_RESPONSE
Definition Opcodes.h:1692
@ SMSG_CLEAR_BOSS_EMOTES
Definition Opcodes.h:1334
@ SMSG_PLAYER_CHOICE_DISPLAY_ERROR
Definition Opcodes.h:2090
@ SMSG_ACCOUNT_HEIRLOOM_UPDATE
Definition Opcodes.h:1094
@ SMSG_PET_BATTLE_QUEUE_PROPOSE_MATCH
Definition Opcodes.h:2063
@ SMSG_ACCOUNT_MOUNT_REMOVED
Definition Opcodes.h:1097
@ SMSG_CACHE_INFO
Definition Opcodes.h:1245
@ SMSG_BATTLE_PET_REVOKED
Definition Opcodes.h:1226
@ SMSG_REGIONWIDE_CHARACTER_RESTRICTIONS_DATA
Definition Opcodes.h:2208
@ SMSG_SPELL_INTERRUPT_LOG
Definition Opcodes.h:2339
@ SMSG_RETURN_APPLICANT_LIST
Definition Opcodes.h:2234
@ SMSG_TRAIT_CONFIG_COMMIT_FAILED
Definition Opcodes.h:2390
@ SMSG_USERLIST_REMOVE
Definition Opcodes.h:2433
@ SMSG_BATTLENET_CHALLENGE_START
Definition Opcodes.h:1196
@ SMSG_GUILD_PARTY_STATE
Definition Opcodes.h:1632
@ SMSG_GET_TROPHY_LIST_RESPONSE
Definition Opcodes.h:1565
@ SMSG_GARRISON_CHANGE_MISSION_START_TIME_RESULT
Definition Opcodes.h:1491
@ SMSG_ITEM_CHANGED
Definition Opcodes.h:1762
@ SMSG_SPELL_EMPOWER_START
Definition Opcodes.h:2328
@ SMSG_LFG_LIST_UPDATE_EXPIRATION
Definition Opcodes.h:1793
@ SMSG_SCENE_OBJECT_PET_BATTLE_ROUND_RESULT
Definition Opcodes.h:2254
@ SMSG_COMPLETE_SHIPMENT_RESPONSE
Definition Opcodes.h:1360
@ SMSG_HOUSING_SVCS_CHANGE_HOUSE_COSMETIC_OWNER
Definition Opcodes.h:1687
@ SMSG_MOVE_SPLINE_SET_WATER_WALK
Definition Opcodes.h:1944
@ SMSG_TITLE_LOST
Definition Opcodes.h:2381
@ SMSG_HOUSING_SVCS_NEIGHBORHOOD_OWNERSHIP_TRANSFERRED_RESPONSE
Definition Opcodes.h:1703
@ SMSG_SPELL_FAILURE_MESSAGE
Definition Opcodes.h:2334
@ SMSG_CHARACTER_CHECK_UPGRADE_RESULT
Definition Opcodes.h:1302
@ SMSG_INSTANCE_ENCOUNTER_IN_COMBAT_RESURRECTION
Definition Opcodes.h:1735
@ SMSG_HOUSING_FIXTURE_CREATE_FIXTURE_RESPONSE
Definition Opcodes.h:1663
@ SMSG_GOSSIP_MESSAGE
Definition Opcodes.h:1574
@ SMSG_LFG_UPDATE_STATUS
Definition Opcodes.h:1807
@ SMSG_LEVEL_LINKING_RESULT
Definition Opcodes.h:1777
@ SMSG_HOUSING_SVCS_GUILD_ADD_HOUSE_NOTIFICATION
Definition Opcodes.h:1696
@ SMSG_ROLE_CHOSEN
Definition Opcodes.h:2237
@ SMSG_TIME_SYNC_REQUEST
Definition Opcodes.h:2379
@ SMSG_SET_PROFICIENCY
Definition Opcodes.h:2296
@ SMSG_CLUB_FINDER_WHISPER_APPLICANT_RESPONSE
Definition Opcodes.h:1349
@ SMSG_DELETE_EXPIRED_MISSIONS_RESULT
Definition Opcodes.h:1410
@ SMSG_LFG_LIST_JOIN_RESULT
Definition Opcodes.h:1788
@ SMSG_BATTLE_PAY_START_CHECKOUT
Definition Opcodes.h:1214
@ SMSG_MOVE_UPDATE_REMOVE_MOVEMENT_FORCE
Definition Opcodes.h:1971
@ SMSG_BATTLENET_NOTIFICATION
Definition Opcodes.h:1197
@ SMSG_GARRISON_RENAME_FOLLOWER_RESULT
Definition Opcodes.h:1531
@ SMSG_CHAIN_MISSILE_BOUNCE
Definition Opcodes.h:1286
@ SMSG_QUEST_GIVER_QUEST_COMPLETE
Definition Opcodes.h:2159
@ SMSG_HOUSING_SVCS_GUILD_GET_HOUSING_INFO_RESPONSE
Definition Opcodes.h:1699
@ SMSG_DELVES_ACCOUNT_DATA_ELEMENT_CHANGED
Definition Opcodes.h:1411
@ SMSG_MOVE_UPDATE_TELEPORT
Definition Opcodes.h:1977
@ SMSG_CHAT_DOWN
Definition Opcodes.h:1316
@ SMSG_DISPLAY_PROMOTION
Definition Opcodes.h:1420
@ SMSG_INSTANCE_ENCOUNTER_START
Definition Opcodes.h:1740
@ SMSG_LOBBY_MATCHMAKER_PARTY_INFO
Definition Opcodes.h:1816
@ SMSG_BATTLE_PET_CAGE_DATE_ERROR
Definition Opcodes.h:1219
@ SMSG_COVENANT_PREVIEW_OPEN_NPC
Definition Opcodes.h:1380
@ SMSG_GAME_OBJECT_PLAY_SPELL_VISUAL_KIT
Definition Opcodes.h:1474
@ SMSG_REPORT_PVP_PLAYER_AFK_RESULT
Definition Opcodes.h:2212
@ SMSG_GUILD_EVENT_BANK_MONEY_CHANGED
Definition Opcodes.h:1600
@ SMSG_CALENDAR_INVITE_REMOVED
Definition Opcodes.h:1256
@ SMSG_MOVE_ENABLE_FULL_SPEED_PITCHING
Definition Opcodes.h:1869
@ SMSG_SUSPEND_COMMS
Definition Opcodes.h:2367
@ SMSG_MISSILE_CANCEL
Definition Opcodes.h:1850
@ SMSG_NEIGHBORHOOD_PLAYER_GET_INVITE_RESPONSE
Definition Opcodes.h:2008
@ SMSG_QUEST_COMPLETION_NPC_RESPONSE
Definition Opcodes.h:2154
@ SMSG_SET_PCT_SPELL_PVP_MODIFIER
Definition Opcodes.h:2292
@ SMSG_HOUSING_DECOR_MOVE_RESPONSE
Definition Opcodes.h:1654
@ SMSG_MOVE_UPDATE_ADD_IMPULSE
Definition Opcodes.h:1961
@ SMSG_SUSPEND_TOKEN
Definition Opcodes.h:2368
@ SMSG_INITIALIZE_FACTIONS
Definition Opcodes.h:1713
@ SMSG_ITEM_PUSH_RESULT
Definition Opcodes.h:1768
@ SMSG_MOVE_KNOCK_BACK
Definition Opcodes.h:1877
@ SMSG_MOVE_UPDATE_APPLY_MOVEMENT_FORCE
Definition Opcodes.h:1963
@ SMSG_GUILD_ACHIEVEMENT_EARNED
Definition Opcodes.h:1587
@ SMSG_ADVENTURE_JOURNAL_DATA_RESPONSE
Definition Opcodes.h:1125
@ SMSG_RAF_DEBUG_FRIEND_MONTHS
Definition Opcodes.h:2185
@ SMSG_RECEIVE_PING_WORLD_POINT
Definition Opcodes.h:2200
@ SMSG_INVENTORY_FULL_OVERFLOW
Definition Opcodes.h:1758
@ SMSG_NEIGHBORHOOD_INVITE_NAME_LOOKUP_RESULT
Definition Opcodes.h:2002
@ SMSG_UI_MAP_QUEST_LINES_RESPONSE
Definition Opcodes.h:2404
@ SMSG_GUILD_INVITE_EXPIRED
Definition Opcodes.h:1619
@ SMSG_GUILD_EVENT_TAB_MODIFIED
Definition Opcodes.h:1613
@ SMSG_PLAY_SPELL_VISUAL_KIT
Definition Opcodes.h:2115
@ SMSG_INVALID_PROMOTION_CODE
Definition Opcodes.h:1755
@ SMSG_PET_BATTLE_REPLACEMENTS_MADE
Definition Opcodes.h:2065
@ SMSG_ACCOUNT_CRITERIA_UPDATE
Definition Opcodes.h:1090
@ SMSG_MOVE_SPLINE_SET_NORMAL_FALL
Definition Opcodes.h:1934
@ SMSG_TRIGGER_CINEMATIC
Definition Opcodes.h:2399
@ SMSG_PET_CLEAR_SPELLS
Definition Opcodes.h:2070
@ SMSG_GARRISON_DELETE_RESULT
Definition Opcodes.h:1501
@ SMSG_GAME_OBJECT_INTERACTION
Definition Opcodes.h:1472
@ SMSG_ENCOUNTER_START
Definition Opcodes.h:1439
@ SMSG_MOVE_ENABLE_INERTIA
Definition Opcodes.h:1872
@ SMSG_BATTLE_NET_CONNECTION_STATUS
Definition Opcodes.h:1199
@ SMSG_INSPECT_RESULT
Definition Opcodes.h:1720
@ SMSG_INSTANCE_ENCOUNTER_EVENT_SEQUENCE
Definition Opcodes.h:1733
@ SMSG_LFG_LIST_APPLY_TO_GROUP_RESULT
Definition Opcodes.h:1787
@ SMSG_BUY_FAILED
Definition Opcodes.h:1243
@ SMSG_BATTLEFIELD_PORT_DENIED
Definition Opcodes.h:1181
@ SMSG_SET_CHR_UPGRADE_TIER
Definition Opcodes.h:2274
@ SMSG_MOVE_SET_ADV_FLYING_PITCHING_RATE_DOWN
Definition Opcodes.h:1892
@ SMSG_AURA_UPDATE
Definition Opcodes.h:1171
@ SMSG_AUCTION_REPLICATE_RESPONSE
Definition Opcodes.h:1168
@ SMSG_QUERY_QUEST_INFO_RESPONSE
Definition Opcodes.h:2149
@ SMSG_ARENA_TEAM_STATS
Definition Opcodes.h:2482
@ SMSG_GUILD_HARDCORE_MEMBER_DEATH
Definition Opcodes.h:1616
@ SMSG_GET_LANDING_PAGE_SHIPMENTS_RESPONSE
Definition Opcodes.h:1558
@ SMSG_SURVEY_DELIVERED
Definition Opcodes.h:2366
@ SMSG_SET_DUNGEON_DIFFICULTY
Definition Opcodes.h:2278
@ SMSG_OPEN_SHIPMENT_NPC_RESULT
Definition Opcodes.h:2027
@ SMSG_GARRISON_REMOVE_EVENT
Definition Opcodes.h:1527
@ SMSG_PET_BATTLE_FINALIZE_LOCATION
Definition Opcodes.h:2056
@ SMSG_BACKPACK_DEFAULT_SIZE_CHANGED
Definition Opcodes.h:1176
@ SMSG_BATTLE_PAY_VALIDATE_PURCHASE_RESPONSE
Definition Opcodes.h:1217
@ SMSG_GARRISON_UPDATE_MISSION_CHEAT_RESULT
Definition Opcodes.h:1547
@ SMSG_TIME_ADJUSTMENT
Definition Opcodes.h:2378
@ SMSG_UNLEARNED_SPELLS
Definition Opcodes.h:2408
@ SMSG_QUERY_BATTLE_PET_NAME_RESPONSE
Definition Opcodes.h:2135
@ SMSG_BAG_CLEANUP_FINISHED
Definition Opcodes.h:1177
@ SMSG_CLUB_FINDER_ERROR_MESSAGE
Definition Opcodes.h:1343
@ SMSG_SOCKET_GEMS_SUCCESS
Definition Opcodes.h:2312
@ SMSG_GARRISON_BUILDING_SET_ACTIVE_SPECIALIZATION_RESULT
Definition Opcodes.h:1490
@ SMSG_TRAINER_BUY_FAILED
Definition Opcodes.h:2388
@ SMSG_WHO
Definition Opcodes.h:2464
@ SMSG_BULK_REFUND_RESPONSE
Definition Opcodes.h:1242
@ SMSG_MOVE_UPDATE_APPLY_INERTIA
Definition Opcodes.h:1962
@ SMSG_QUERY_PAGE_TEXT_RESPONSE
Definition Opcodes.h:2144
@ SMSG_HOUSING_FIXTURE_SET_EDIT_MODE_RESPONSE
Definition Opcodes.h:1667
@ SMSG_SET_PLAYER_DECLINED_NAMES_RESULT
Definition Opcodes.h:2294
@ SMSG_QUEST_GIVER_STATUS
Definition Opcodes.h:2164
@ SMSG_HOUSING_DECOR_LOCK_RESPONSE
Definition Opcodes.h:1653
@ SMSG_CHANNEL_NOTIFY
Definition Opcodes.h:1298
@ SMSG_CHALLENGE_MODE_START
Definition Opcodes.h:1293
@ SMSG_SELL_RESPONSE
Definition Opcodes.h:2258
@ SMSG_CALENDAR_INVITE_ADDED
Definition Opcodes.h:1252
@ SMSG_INSTANCE_ENCOUNTER_EVENT_RESPAWN
Definition Opcodes.h:1732
@ SMSG_COVENANT_RENOWN_SEND_CATCHUP_STATE
Definition Opcodes.h:1381
@ SMSG_WARDEN3_DISABLED
Definition Opcodes.h:2455
@ SMSG_GARRISON_UPDATE_FOLLOWER
Definition Opcodes.h:1545
@ SMSG_CALENDAR_EVENT_UPDATED_ALERT
Definition Opcodes.h:1251
@ SMSG_MOVE_SPLINE_SET_TURN_RATE
Definition Opcodes.h:1941
@ SMSG_MOVE_SET_NORMAL_FALL
Definition Opcodes.h:1912
@ SMSG_SET_PET_SPECIALIZATION
Definition Opcodes.h:2293
@ SMSG_LOOT_RESPONSE
Definition Opcodes.h:1833
@ SMSG_WOW_LABS_NOTIFY_PLAYERS_MATCH_END
Definition Opcodes.h:2471
@ SMSG_PAST_TIME_EVENTS
Definition Opcodes.h:2038
@ SMSG_PETITION_SHOW_LIST
Definition Opcodes.h:2049
@ SMSG_PLAYER_SKINNED
Definition Opcodes.h:2103
@ SMSG_QUEST_POI_UPDATE_RESPONSE
Definition Opcodes.h:2170
@ SMSG_UNIT_DIMINISHING_RETURN_START
Definition Opcodes.h:2407
@ SMSG_DUEL_WINNER
Definition Opcodes.h:1433
@ SMSG_CLEAR_RESURRECT
Definition Opcodes.h:1338
@ SMSG_CALENDAR_SEND_CALENDAR
Definition Opcodes.h:1264
@ SMSG_CROSSED_INEBRIATION_THRESHOLD
Definition Opcodes.h:1399
@ SMSG_GARRISON_COLLECTION_REMOVE_ENTRY
Definition Opcodes.h:1495
@ SMSG_MOVE_SET_ADV_FLYING_BANKING_RATE
Definition Opcodes.h:1885
@ SMSG_READ_ITEM_RESULT_OK
Definition Opcodes.h:2196
@ SMSG_FORCE_SPAWN_TRACKING_UPDATE
Definition Opcodes.h:1464
@ SMSG_PETITION_SHOW_SIGNATURES
Definition Opcodes.h:2050
@ SMSG_TRIGGER_MOVIE
Definition Opcodes.h:2400
@ SMSG_DISPLAY_GAME_ERROR
Definition Opcodes.h:1418
@ SMSG_RESPOND_INSPECT_ACHIEVEMENTS
Definition Opcodes.h:2223
@ SMSG_AREA_TRIGGER_UPDATE_DECAL_PROPERTIES
Definition Opcodes.h:1140
@ SMSG_PARTY_MEMBER_PARTIAL_STATE
Definition Opcodes.h:2035
@ SMSG_GAME_OBJECT_SET_STATE_LOCAL
Definition Opcodes.h:1476
@ SMSG_SET_SPELL_CHARGES
Definition Opcodes.h:2299
@ SMSG_CONSUMABLE_TOKEN_REDEEM_RESPONSE
Definition Opcodes.h:1369
@ SMSG_CAN_DUEL_RESULT
Definition Opcodes.h:1276
@ SMSG_BATTLE_PAY_DISTRIBUTION_UPDATE
Definition Opcodes.h:1208
@ SMSG_QUERY_GUILD_FOLLOW_INFO_RESPONSE
Definition Opcodes.h:2139
@ SMSG_CANCEL_COMBAT
Definition Opcodes.h:1269
@ SMSG_HOUSING_DECOR_SYSTEM_SET_DYE_SLOTS_RESPONSE
Definition Opcodes.h:1659
@ SMSG_GARRISON_PLOT_PLACED
Definition Opcodes.h:1523
@ SMSG_WHO_IS
Definition Opcodes.h:2465
@ SMSG_SPEC_INVOLUNTARILY_CHANGED
Definition Opcodes.h:2318
@ SMSG_MYTHIC_PLUS_ALL_MAP_STATS
Definition Opcodes.h:1983
@ SMSG_CRAFTING_ORDER_CLAIM_RESULT
Definition Opcodes.h:1384
@ SMSG_PET_NAME_INVALID
Definition Opcodes.h:2076
@ SMSG_SPELL_NON_MELEE_DAMAGE_LOG
Definition Opcodes.h:2341
@ SMSG_BREAK_TARGET
Definition Opcodes.h:1236
@ SMSG_CLEAR_TARGET
Definition Opcodes.h:1340
@ SMSG_INSTANCE_ENCOUNTER_OBJECTIVE_START
Definition Opcodes.h:1737
@ SMSG_BLACK_MARKET_REQUEST_ITEMS_RESULT
Definition Opcodes.h:1232
@ SMSG_MOVE_SET_ADV_FLYING_LIFT_COEFFICIENT
Definition Opcodes.h:1889
@ SMSG_RETURN_RECRUITING_CLUBS
Definition Opcodes.h:2235
@ SMSG_QUERY_PET_NAME_RESPONSE
Definition Opcodes.h:2146
@ SMSG_GOSSIP_POI
Definition Opcodes.h:1576
@ SMSG_DISMOUNT_RESULT
Definition Opcodes.h:1416
@ SMSG_PVP_CREDIT
Definition Opcodes.h:2127
@ SMSG_RANDOM_ROLL
Definition Opcodes.h:2190
@ SMSG_GARRISON_UPDATE_GARRISON_MONUMENT_SELECTIONS
Definition Opcodes.h:1546
@ SMSG_GROUP_UNINVITE
Definition Opcodes.h:1585
@ SMSG_HOUSING_GET_CURRENT_HOUSE_INFO_RESPONSE
Definition Opcodes.h:1670
@ SMSG_LAST_CATALOG_FETCH_RESPONSE
Definition Opcodes.h:1771
@ SMSG_GUILD_BANK_TEXT_QUERY_RESULT
Definition Opcodes.h:1592
@ SMSG_TRADE_STATUS
Definition Opcodes.h:2386
@ SMSG_RUNEFORGE_LEGENDARY_CRAFTING_OPEN_NPC
Definition Opcodes.h:2239
@ SMSG_HOUSING_ROOM_SET_COMPONENT_THEME_RESPONSE
Definition Opcodes.h:1681
@ SMSG_SETUP_CURRENCY
Definition Opcodes.h:2271
@ SMSG_HOUSING_DECOR_ADD_TO_HOUSE_CHEST_RESPONSE
Definition Opcodes.h:1651
@ SMSG_BATTLEGROUND_PLAYER_POSITIONS
Definition Opcodes.h:1193
@ SMSG_QUEST_UPDATE_COMPLETE
Definition Opcodes.h:2179
@ SMSG_PVP_MATCH_SET_STATE
Definition Opcodes.h:2130
@ SMSG_CORPSE_TRANSPORT_QUERY
Definition Opcodes.h:1378
@ SMSG_RAF_ACTIVITY_STATE_CHANGED
Definition Opcodes.h:2184
@ SMSG_MOVE_SPLINE_UNSET_HOVER
Definition Opcodes.h:1949
@ SMSG_UPDATE_EXPANSION_LEVEL
Definition Opcodes.h:2423
@ SMSG_LEVEL_UP_INFO
Definition Opcodes.h:1778
@ SMSG_PVP_MATCH_COMPLETE
Definition Opcodes.h:2128
@ SMSG_WALK_IN_RESULT
Definition Opcodes.h:2453
@ SMSG_CALENDAR_EVENT_REMOVED_ALERT
Definition Opcodes.h:1250
@ SMSG_WORLD_SERVER_INFO
Definition Opcodes.h:2468
@ SMSG_SET_LOOT_METHOD_FAILED
Definition Opcodes.h:2287
@ SMSG_RESET_LAST_LOADED_CONFIG_CVARS
Definition Opcodes.h:2218
@ SMSG_GET_SHIPMENT_INFO_RESPONSE
Definition Opcodes.h:1564
@ SMSG_INSTANCE_ENCOUNTER_EVENT_BLOCKED_CHANGED
Definition Opcodes.h:1730
@ SMSG_GARRISON_MISSION_REQUEST_REWARD_INFO_RESPONSE
Definition Opcodes.h:1518
@ SMSG_LOOT_ALL_PASSED
Definition Opcodes.h:1827
@ SMSG_ACCOUNT_CHARACTER_CURRENCY_LISTS
Definition Opcodes.h:1087
@ SMSG_GARRISON_FOLLOWER_CHANGED_FLAGS
Definition Opcodes.h:1503
@ SMSG_GUILD_EVENT_TAB_ADDED
Definition Opcodes.h:1611
@ SMSG_REMOVE_SPELL_FROM_ACTION_BAR
Definition Opcodes.h:2210
@ SMSG_UPDATE_CRAFTING_NPC_RECIPES
Definition Opcodes.h:2421
@ SMSG_PLAYER_BOUND
Definition Opcodes.h:2088
@ SMSG_DUEL_IN_BOUNDS
Definition Opcodes.h:1430
@ SMSG_SUMMON_CANCEL
Definition Opcodes.h:2362
@ SMSG_UPDATE_ACCOUNT_DATA
Definition Opcodes.h:2412
@ SMSG_INTERRUPT_POWER_REGEN
Definition Opcodes.h:1750
@ SMSG_PET_GOD_MODE
Definition Opcodes.h:2072
@ SMSG_SPELL_MISS_LOG
Definition Opcodes.h:2340
@ SMSG_CLUB_FINDER_GET_CLUB_POSTING_IDS_RESPONSE
Definition Opcodes.h:1344
@ SMSG_SEND_SPELL_CHARGES
Definition Opcodes.h:2264
@ SMSG_COMMERCE_TOKEN_UPDATE
Definition Opcodes.h:1358
@ SMSG_CHALLENGE_MODE_REQUEST_LEADERS_RESULT
Definition Opcodes.h:1290
@ SMSG_AREA_TRIGGER_NO_CORPSE
Definition Opcodes.h:1138
@ SMSG_MOVE_UPDATE_FLIGHT_SPEED
Definition Opcodes.h:1966
@ SMSG_HOUSING_PHOTO_SHARING_AUTHORIZATION_CLEARED_RESULT
Definition Opcodes.h:1673
@ SMSG_BUY_SUCCEEDED
Definition Opcodes.h:1244
@ SMSG_UNDELETE_COOLDOWN_STATUS_RESPONSE
Definition Opcodes.h:2406
@ SMSG_SEASON_INFO
Definition Opcodes.h:2257
@ SMSG_UPDATE_CHARGE_CATEGORY_COOLDOWN
Definition Opcodes.h:2419
@ SMSG_MOVE_SET_PITCH_RATE
Definition Opcodes.h:1913
@ SMSG_PLAYER_ACKNOWLEDGE_ARROW_CALLOUT
Definition Opcodes.h:2084
@ SMSG_ROLE_POLL_INFORM
Definition Opcodes.h:2238
@ SMSG_QUERY_ITEM_TEXT_RESPONSE
Definition Opcodes.h:2141
@ SMSG_SPELL_PERIODIC_AURA_LOG
Definition Opcodes.h:2343
@ SMSG_MOVE_SET_COLLISION_HEIGHT
Definition Opcodes.h:1902
@ SMSG_GET_SHIPMENTS_OF_TYPE_RESPONSE
Definition Opcodes.h:1563
@ SMSG_CAUTIONARY_CHAT_MESSAGE
Definition Opcodes.h:1285
@ SMSG_ENCOUNTER_END
Definition Opcodes.h:1438
@ SMSG_LFG_DISABLED
Definition Opcodes.h:1780
@ SMSG_ACCOUNT_NOTIFICATIONS_RESPONSE
Definition Opcodes.h:1099
@ SMSG_CALENDAR_INVITE_NOTES_ALERT
Definition Opcodes.h:1255
@ SMSG_CHANGE_PLAYER_DIFFICULTY_RESULT
Definition Opcodes.h:1295
@ SMSG_END_LIGHTNING_STORM
Definition Opcodes.h:1440
@ SMSG_PLAY_OBJECT_SOUND
Definition Opcodes.h:2108
@ SMSG_GARRISON_FOLLOWER_ACTIVATIONS_SET
Definition Opcodes.h:1502
@ SMSG_GENERATE_SSO_TOKEN_RESPONSE
Definition Opcodes.h:1551
@ SMSG_GARRISON_LEARN_SPECIALIZATION_RESULT
Definition Opcodes.h:1513
@ SMSG_GARRISON_SWITCH_TALENT_TREE_BRANCH
Definition Opcodes.h:1538
@ SMSG_NEIGHBORHOOD_UPDATE_NAME_RESPONSE
Definition Opcodes.h:2011
@ SMSG_LIVE_REGION_CHARACTER_COPY_RESULT
Definition Opcodes.h:1810
@ SMSG_ATTACKER_STATE_UPDATE
Definition Opcodes.h:1148
@ SMSG_ALL_GUILD_ACHIEVEMENTS
Definition Opcodes.h:1132
@ SMSG_INSTANCE_ABANDON_VOTE_COMPLETED
Definition Opcodes.h:1721
@ SMSG_NOTIFY_RECEIVED_MAIL
Definition Opcodes.h:2019
@ SMSG_CAS_REFRESH_REMOTE_DATA
Definition Opcodes.h:1280
@ SMSG_INSTANCE_ENCOUNTER_DISENGAGE_UNIT
Definition Opcodes.h:1726
@ SMSG_MOVE_SPLINE_SET_LAND_WALK
Definition Opcodes.h:1933
@ SMSG_PROFESSION_GOSSIP
Definition Opcodes.h:2125
@ SMSG_LOGOUT_RESPONSE
Definition Opcodes.h:1825
@ SMSG_BATTLEFIELD_STATUS_GROUP_PROPOSAL_FAILED
Definition Opcodes.h:1184
@ SMSG_CRITERIA_DELETED
Definition Opcodes.h:1397
@ SMSG_PENDING_RAID_LOCK
Definition Opcodes.h:2040
@ SMSG_CONSUMABLE_TOKEN_REDEEM_CONFIRM_REQUIRED
Definition Opcodes.h:1368
@ SMSG_HOUSING_SVC_REQUEST_PLAYER_RELOAD_DATA
Definition Opcodes.h:1712
@ SMSG_START_LIGHTNING_STORM
Definition Opcodes.h:2352
@ SMSG_ACCOUNT_TOY_UPDATE
Definition Opcodes.h:1107
@ SMSG_DISPEL_FAILED
Definition Opcodes.h:1417
@ SMSG_MOVE_UPDATE_FLIGHT_BACK_SPEED
Definition Opcodes.h:1965
@ SMSG_LOOT_LIST
Definition Opcodes.h:1828
@ SMSG_PARTY_MEMBER_FULL_STATE
Definition Opcodes.h:2034
@ SMSG_CHAT_SERVER_MESSAGE
Definition Opcodes.h:1326
@ SMSG_PARTY_NOTIFY_LFG_LEADER_CHANGE
Definition Opcodes.h:2036
@ SMSG_MODIFY_COOLDOWN
Definition Opcodes.h:1851
@ SMSG_LFG_PLAYER_INFO
Definition Opcodes.h:1797
@ SMSG_BATTLE_PET_JOURNAL
Definition Opcodes.h:1222
@ SMSG_MOVE_UPDATE_WALK_SPEED
Definition Opcodes.h:1979
@ SMSG_EXPECTED_SPAM_RECORDS
Definition Opcodes.h:1446
@ SMSG_HOUSING_DECOR_REQUEST_STORAGE_RESPONSE
Definition Opcodes.h:1657
@ SMSG_PERKS_PROGRAM_DISABLED
Definition Opcodes.h:2044
@ SMSG_GARRISON_REMOVE_FOLLOWER_RESULT
Definition Opcodes.h:1530
@ SMSG_MOVE_SET_CAN_TURN_WHILE_FALLING
Definition Opcodes.h:1901
@ SMSG_MOVE_SPLINE_DISABLE_GRAVITY
Definition Opcodes.h:1924
@ SMSG_GUILD_RANKS
Definition Opcodes.h:1634
@ SMSG_CLUB_FINDER_RESPONSE_POST_RECRUITMENT_MESSAGE
Definition Opcodes.h:1347
@ SMSG_UNSET_INSTANCE_LEAVER
Definition Opcodes.h:2410
@ SMSG_LFG_INSTANCE_SHUTDOWN_COUNTDOWN
Definition Opcodes.h:1782
@ SMSG_GET_GARRISON_INFO_RESULT
Definition Opcodes.h:1555
@ SMSG_PARTY_INVITE
Definition Opcodes.h:2032
@ SMSG_GM_REQUEST_PLAYER_INFO
Definition Opcodes.h:1569
@ SMSG_QUEST_GIVER_REQUEST_ITEMS
Definition Opcodes.h:2163
@ SMSG_SCENARIO_COMPLETED
Definition Opcodes.h:2241
@ SMSG_GROUP_DESTROYED
Definition Opcodes.h:1582
@ SMSG_CALENDAR_RAID_LOCKOUT_ADDED
Definition Opcodes.h:1261
@ SMSG_GAME_TIME_UPDATE
Definition Opcodes.h:1479
@ SMSG_GUILD_INVITE_DECLINED
Definition Opcodes.h:1618
@ SMSG_LOBBY_MATCHMAKER_PARTY_INVITE_REJECTED
Definition Opcodes.h:1817
@ SMSG_NEUTRAL_PLAYER_FACTION_SELECT_RESULT
Definition Opcodes.h:2012
@ SMSG_WARGAME_REQUEST_SUCCESSFULLY_SENT_TO_OPPONENT
Definition Opcodes.h:2459
@ SMSG_MOVE_ENABLE_COLLISION
Definition Opcodes.h:1867
@ SMSG_AUCTION_CLOSED_NOTIFICATION
Definition Opcodes.h:1156
@ SMSG_REPLACE_TROPHY_RESPONSE
Definition Opcodes.h:2211
@ SMSG_GARRISON_CLEAR_EVENT_LIST
Definition Opcodes.h:1493
@ SMSG_SEND_ITEM_PASSIVES
Definition Opcodes.h:2260
@ SMSG_MOVE_SET_IGNORE_MOVEMENT_FORCES
Definition Opcodes.h:1909
@ SMSG_REQUEST_CEMETERY_LIST_RESPONSE
Definition Opcodes.h:2213
@ SMSG_HOUSING_SVCS_CLEAR_PLOT_RESERVATION_RESPONSE
Definition Opcodes.h:1688
@ SMSG_LFG_READY_CHECK_UPDATE
Definition Opcodes.h:1802
@ SMSG_SEND_RAID_TARGET_UPDATE_SINGLE
Definition Opcodes.h:2263
@ SMSG_CRAFT_ENCHANT_RESULT
Definition Opcodes.h:1393
@ SMSG_GOSSIP_OPTION_NPC_INTERACTION
Definition Opcodes.h:1575
@ SMSG_MOVE_DISABLE_STRAFING
Definition Opcodes.h:1865
@ SMSG_SET_FACTION_NOT_VISIBLE
Definition Opcodes.h:2280
@ SMSG_GROUP_NEW_LEADER
Definition Opcodes.h:1583
@ SMSG_HOUSE_EXTERIOR_SET_HOUSE_POSITION_RESPONSE
Definition Opcodes.h:1650
@ SMSG_LFG_SLOT_INVALID
Definition Opcodes.h:1804
@ SMSG_SPELL_DISPELL_LOG
Definition Opcodes.h:2326
@ SMSG_GARRISON_FOLLOWER_FATIGUE_CLEARED
Definition Opcodes.h:1507
@ SMSG_PET_BATTLE_MAX_GAME_LENGTH_WARNING
Definition Opcodes.h:2061
@ SMSG_XP_AWARDED_FROM_CURRENCY
Definition Opcodes.h:2476
@ SMSG_QUEST_GIVER_STATUS_MULTIPLE
Definition Opcodes.h:2165
@ SMSG_NEW_DATA_BUILD
Definition Opcodes.h:2013
@ SMSG_INITIAL_SETUP
Definition Opcodes.h:1714
@ SMSG_SPELL_PREPARE
Definition Opcodes.h:2344
@ SMSG_GUILD_CRITERIA_DELETED
Definition Opcodes.h:1597
@ SMSG_HOUSING_SVCS_GET_HOUSE_FINDER_NEIGHBORHOOD_RESPONSE
Definition Opcodes.h:1693
@ SMSG_HOUSING_FIXTURE_DELETE_FIXTURE_RESPONSE
Definition Opcodes.h:1664
@ SMSG_CHANNEL_NOTIFY_NPE_JOINED_BATCH
Definition Opcodes.h:1301
@ SMSG_ITEM_COOLDOWN
Definition Opcodes.h:1763
@ SMSG_TRANSFER_PENDING
Definition Opcodes.h:2392
@ SMSG_UPDATE_AADC_STATUS_RESPONSE
Definition Opcodes.h:2411
@ SMSG_MOVE_DISABLE_FULL_SPEED_TURNING
Definition Opcodes.h:1861
@ SMSG_CHAR_FACTION_CHANGE_RESULT
Definition Opcodes.h:1312
@ SMSG_GUILD_CRITERIA_UPDATE
Definition Opcodes.h:1598
@ SMSG_BLACK_MARKET_WON
Definition Opcodes.h:1233
@ SMSG_GUILD_FLAGGED_FOR_RENAME
Definition Opcodes.h:1615
@ SMSG_INVALIDATE_PAGE_TEXT
Definition Opcodes.h:1753
@ SMSG_MOVE_UNSET_IGNORE_MOVEMENT_FORCES
Definition Opcodes.h:1959
@ SMSG_MOVE_UPDATE_SWIM_SPEED
Definition Opcodes.h:1976
@ SMSG_GAME_OBJECT_PLAY_SPELL_VISUAL
Definition Opcodes.h:1473
@ SMSG_LOOT_RELEASE
Definition Opcodes.h:1830
@ SMSG_PLAYER_TUTORIAL_UNHIGHLIGHT_SPELL
Definition Opcodes.h:2105
@ SMSG_GARRISON_BUILDING_REMOVED
Definition Opcodes.h:1489
@ SMSG_SET_MAX_WEEKLY_QUANTITY
Definition Opcodes.h:2288
@ SMSG_QUEST_NON_LOG_UPDATE_COMPLETE
Definition Opcodes.h:2168
@ SMSG_SPELL_ENERGIZE_LOG
Definition Opcodes.h:2330
@ SMSG_ATTACK_STOP
Definition Opcodes.h:1150
@ SMSG_VAS_GET_QUEUE_MINUTES_RESPONSE
Definition Opcodes.h:2437
@ SMSG_MOVE_ENABLE_GRAVITY
Definition Opcodes.h:1871
@ SMSG_TREASURE_PUNCH_LIST_ITEMS_RESPONSE
Definition Opcodes.h:2398
@ SMSG_SEND_FORCE_PITCH_CHANGE
Definition Opcodes.h:2259
@ SMSG_GUILD_EVENT_DISBANDED
Definition Opcodes.h:1601
@ SMSG_QUERY_NPC_TEXT_RESPONSE
Definition Opcodes.h:2143
@ SMSG_SUMMON_REQUEST
Definition Opcodes.h:2364
@ SMSG_THREAT_UPDATE
Definition Opcodes.h:2375
@ SMSG_MAP_OBJ_EVENTS
Definition Opcodes.h:1842
@ SMSG_SET_ANIM_TIER
Definition Opcodes.h:2273
@ SMSG_GAME_OBJECT_CLOSE_INTERACTION
Definition Opcodes.h:1469
@ SMSG_BATTLE_PAY_DELIVERY_ENDED
Definition Opcodes.h:1204
@ SMSG_DISPLAY_WORLD_TEXT
Definition Opcodes.h:1423
@ SMSG_GARRISON_ADD_EVENT
Definition Opcodes.h:1481
@ SMSG_CHAR_CUSTOMIZE_SUCCESS
Definition Opcodes.h:1311
@ SMSG_SUGGEST_INVITE_INFORM
Definition Opcodes.h:2361
@ SMSG_PARTY_KILL_LOG
Definition Opcodes.h:2033
@ SMSG_CHARACTER_UPGRADE_MANUAL_UNREVOKE_RESULT
Definition Opcodes.h:1308
@ SMSG_INSTANCE_ENCOUNTER_PHASE_SHIFT_CHANGED
Definition Opcodes.h:1739
@ SMSG_SET_MOVEMENT_ANIM_KIT
Definition Opcodes.h:2290
@ SMSG_FEIGN_DEATH_RESISTED
Definition Opcodes.h:1455
@ SMSG_SOCIAL_CONTRACT_REQUEST_RESPONSE
Definition Opcodes.h:2310
@ SMSG_SPELL_COOLDOWN
Definition Opcodes.h:2323
@ SMSG_PERKS_PROGRAM_ACTIVITY_COMPLETE
Definition Opcodes.h:2042
@ SMSG_SET_FLAT_SPELL_PVP_MODIFIER
Definition Opcodes.h:2284
@ SMSG_MYTHIC_PLUS_NEW_WEEK_RECORD
Definition Opcodes.h:1985
@ SMSG_ISLAND_COMPLETE
Definition Opcodes.h:1760
@ SMSG_LOOT_RELEASE_ALL
Definition Opcodes.h:1831
@ SMSG_CHAR_CUSTOMIZE_FAILURE
Definition Opcodes.h:1310
@ SMSG_ACCOUNT_EXPORT_RESPONSE
Definition Opcodes.h:1092
@ SMSG_SPELL_DELAYED
Definition Opcodes.h:2325
@ SMSG_SCENE_OBJECT_PET_BATTLE_INITIAL_UPDATE
Definition Opcodes.h:2252
@ SMSG_HIGHEST_THREAT_UPDATE
Definition Opcodes.h:1646
@ SMSG_VOID_ITEM_SWAP_RESPONSE
Definition Opcodes.h:2446
@ SMSG_MOVE_UPDATE_MOD_MOVEMENT_FORCE_MAGNITUDE
Definition Opcodes.h:1968
@ SMSG_PARTY_ELIGIBILITY_FOR_DELVE_TIERS_RESPONSE
Definition Opcodes.h:2031
@ SMSG_MOVE_SET_ADV_FLYING_PITCHING_RATE_UP
Definition Opcodes.h:1893
@ SMSG_BATTLE_PAY_DELIVERY_STARTED
Definition Opcodes.h:1205
@ SMSG_LOGIN_SET_TIME_SPEED
Definition Opcodes.h:1821
@ SMSG_GARRISON_IS_UPGRADEABLE_RESPONSE
Definition Opcodes.h:1511
@ SMSG_CHAT
Definition Opcodes.h:1313
@ SMSG_USERLIST_UPDATE
Definition Opcodes.h:2434
@ SMSG_RECRUIT_A_FRIEND_FAILURE
Definition Opcodes.h:2204
@ SMSG_UPDATE_INSTANCE_OWNERSHIP
Definition Opcodes.h:2425
@ SMSG_NEIGHBORHOOD_CHARTER_ADD_SIGNATURE_RESPONSE
Definition Opcodes.h:1990
@ SMSG_SPLASH_SCREEN_SHOW_LATEST
Definition Opcodes.h:2347
@ SMSG_BATCH_PRESENCE_SUBSCRIPTION
Definition Opcodes.h:1179
@ SMSG_QUERY_SELECTED_WOW_LABS_AREA_RESPONSE
Definition Opcodes.h:2151
@ SMSG_ITEM_PURCHASE_REFUND_RESULT
Definition Opcodes.h:1767
@ SMSG_GUILD_ITEM_LOOTED_NOTIFY
Definition Opcodes.h:1620
@ SMSG_HOUSING_SVCS_HOUSE_FINDER_FORCE_REFRESH
Definition Opcodes.h:1702
@ SMSG_QUEST_UPDATE_FAILED_TIMER
Definition Opcodes.h:2181
@ SMSG_NEIGHBORHOOD_EVICT_PLAYER
Definition Opcodes.h:1997
@ SMSG_MEETING_STONE_FAILED
Definition Opcodes.h:1844
@ SMSG_LFG_LIST_SEARCH_RESULTS
Definition Opcodes.h:1789
@ SMSG_LFG_QUEUE_STATUS
Definition Opcodes.h:1800
@ SMSG_VENDOR_INVENTORY
Definition Opcodes.h:2441
@ SMSG_QUERY_PETITION_RESPONSE
Definition Opcodes.h:2145
@ SMSG_DONT_AUTO_PUSH_SPELLS_TO_ACTION_BAR
Definition Opcodes.h:1425
@ SMSG_ACCOUNT_STORE_FRONT_UPDATE
Definition Opcodes.h:1104
@ SMSG_GARRISON_OPEN_CRAFTER
Definition Opcodes.h:1520
@ SMSG_ADJUST_SPLINE_DURATION
Definition Opcodes.h:1123
@ SMSG_GET_VAS_ACCOUNT_CHARACTER_LIST_RESULT
Definition Opcodes.h:1566
@ SMSG_MOVE_SET_ADV_FLYING_OVER_MAX_DECELERATION
Definition Opcodes.h:1891
@ SMSG_GET_ACCOUNT_CHARACTER_LIST_RESULT
Definition Opcodes.h:1552
@ SMSG_INSTANCE_ABANDON_VOTE_PLAYER_LEFT
Definition Opcodes.h:1722
@ SMSG_CREATE_CHAR
Definition Opcodes.h:1394
@ SMSG_SCENE_OBJECT_PET_BATTLE_REPLACEMENTS_MADE
Definition Opcodes.h:2253
@ SMSG_CRAFTING_HOUSE_HELLO_RESPONSE
Definition Opcodes.h:1382
@ SMSG_CLAIM_RAF_REWARD_RESPONSE
Definition Opcodes.h:1332
@ SMSG_HOUSING_FIXTURE_DELETE_HOUSE_RESPONSE
Definition Opcodes.h:1665
@ SMSG_VOID_STORAGE_FAILED
Definition Opcodes.h:2448
@ SMSG_THREAT_CLEAR
Definition Opcodes.h:2373
@ SMSG_VOICE_LOGIN_RESPONSE
Definition Opcodes.h:2445
@ SMSG_MOVE_SET_ADV_FLYING_MAX_VEL
Definition Opcodes.h:1890
@ SMSG_MOVE_REMOVE_MOVEMENT_FORCE
Definition Opcodes.h:1880
@ SMSG_STARTER_BUILD_ACTIVATE_FAILED
Definition Opcodes.h:2349
@ SMSG_HOUSING_SVCS_PLAYER_VIEW_HOUSES_RESPONSE
Definition Opcodes.h:1707
@ SMSG_BOSS_KILL
Definition Opcodes.h:1235
@ SMSG_KICK_REASON
Definition Opcodes.h:1770
@ SMSG_MOVE_SET_COMPOUND_STATE
Definition Opcodes.h:1903
@ SMSG_PHASE_SHIFT_CHANGE
Definition Opcodes.h:2082
@ SMSG_CANCEL_SPELL_VISUAL
Definition Opcodes.h:1274
@ SMSG_RESET_RANGED_COMBAT_TIMER
Definition Opcodes.h:2220
@ SMSG_TUTORIAL_FLAGS
Definition Opcodes.h:2402
@ SMSG_COMPRESSED_PACKET
Definition Opcodes.h:1361
@ SMSG_COMPLAINT_RESULT
Definition Opcodes.h:1359
@ SMSG_GOSSIP_REFRESH_OPTIONS
Definition Opcodes.h:1578
@ SMSG_START_ELAPSED_TIMER
Definition Opcodes.h:2350
@ SMSG_CANCEL_SCENE
Definition Opcodes.h:1273
@ SMSG_QUEST_FORCE_REMOVED
Definition Opcodes.h:2156
@ SMSG_GUILD_ACHIEVEMENT_MEMBERS
Definition Opcodes.h:1588
@ SMSG_PLAYER_TUTORIAL_HIGHLIGHT_SPELL
Definition Opcodes.h:2104
@ SMSG_SETUP_COMBAT_LOG_FILE_FLUSH
Definition Opcodes.h:2270
@ SMSG_SCENARIO_VACATE
Definition Opcodes.h:2247
@ SMSG_UPDATE_WORLD_STATE
Definition Opcodes.h:2431
@ SMSG_MOVE_UNSET_HOVERING
Definition Opcodes.h:1958
@ SMSG_LOBBY_MATCHMAKER_RECEIVE_INVITE
Definition Opcodes.h:1820
@ SMSG_PREPOPULATE_NAME_CACHE
Definition Opcodes.h:2121
@ SMSG_AUCTION_OUTBID_NOTIFICATION
Definition Opcodes.h:1166
@ SMSG_SCENARIO_PROGRESS_UPDATE
Definition Opcodes.h:2243
@ SMSG_GARRISON_ADD_MISSION_RESULT
Definition Opcodes.h:1483
@ SMSG_CHAT_IS_DOWN
Definition Opcodes.h:1318
@ SMSG_PET_UNLEARNED_SPELLS
Definition Opcodes.h:2081
@ SMSG_AUCTIONABLE_TOKEN_AUCTION_SOLD
Definition Opcodes.h:1153
@ SMSG_PERKS_ANIM_TOGGLE_KILL_SWITCH
Definition Opcodes.h:2041
@ SMSG_SHOW_TAXI_NODES
Definition Opcodes.h:2308
@ SMSG_SCENARIO_STATE
Definition Opcodes.h:2245
@ SMSG_RECRAFT_ITEM_RESULT
Definition Opcodes.h:2203
@ SMSG_START_ELAPSED_TIMERS
Definition Opcodes.h:2351
@ SMSG_GUILD_SEND_RANK_CHANGE
Definition Opcodes.h:1643
@ SMSG_NOTIFY_DEST_LOC_SPELL_CAST
Definition Opcodes.h:2016
@ SMSG_EMOTE
Definition Opcodes.h:1435
@ SMSG_PET_ACTION_SOUND
Definition Opcodes.h:2053
@ SMSG_ARTIFACT_FORGE_ERROR
Definition Opcodes.h:1145
@ SMSG_DROP_NEW_CONNECTION
Definition Opcodes.h:1426
@ SMSG_SPECTATE_END
Definition Opcodes.h:2314
@ SMSG_TOTEM_REMOVED
Definition Opcodes.h:2385
@ SMSG_BIND_POINT_UPDATE
Definition Opcodes.h:1229
@ SMSG_CAST_FAILED
Definition Opcodes.h:1279
@ SMSG_CORPSE_RECLAIM_DELAY
Definition Opcodes.h:1377
@ SMSG_ARTIFACT_XP_GAIN
Definition Opcodes.h:1147
@ SMSG_GARRISON_FOLLOWER_CHANGED_XP
Definition Opcodes.h:1506
@ SMSG_LOBBY_MATCHMAKER_QUEUE_RESULT
Definition Opcodes.h:1819
@ SMSG_INSTANCE_RESET_FAILED
Definition Opcodes.h:1748
@ SMSG_LFG_LIST_UPDATE_STATUS
Definition Opcodes.h:1794
@ SMSG_ACTIVE_SCHEDULED_WORLD_STATE_INFO
Definition Opcodes.h:1117
@ SMSG_CORPSE_LOCATION
Definition Opcodes.h:1376
@ SMSG_LOBBY_MATCHMAKER_LOBBY_ACQUIRED_SERVER
Definition Opcodes.h:1815
@ SMSG_GUILD_RENAME_NAME_CHECK
Definition Opcodes.h:1635
@ SMSG_APPLY_MOUNT_EQUIPMENT_RESULT
Definition Opcodes.h:1133
@ SMSG_VAS_PURCHASE_STATE_UPDATE
Definition Opcodes.h:2440
@ SMSG_ADD_RUNE_POWER
Definition Opcodes.h:1122
@ SMSG_PLAYER_IS_ADVENTURE_MAP_POI_VALID
Definition Opcodes.h:2095
@ SMSG_CATALOG_SHOP_OBTAIN_LICENSE
Definition Opcodes.h:1282
@ SMSG_PET_BATTLE_REQUEST_FAILED
Definition Opcodes.h:2066
@ SMSG_QUEST_SESSION_READY_CHECK
Definition Opcodes.h:2173
@ SMSG_DESTROY_ARENA_UNIT
Definition Opcodes.h:1412
@ SMSG_FAILED_QUEST_TURN_IN
Definition Opcodes.h:1452
@ SMSG_MOVE_UNSET_CAN_ADV_FLY
Definition Opcodes.h:1954
@ SMSG_ADD_BATTLENET_FRIEND_RESPONSE
Definition Opcodes.h:1119
@ SMSG_ABORT_NEW_WORLD
Definition Opcodes.h:1086
@ SMSG_INVALIDATE_NEIGHBORHOOD
Definition Opcodes.h:1751
@ SMSG_NEIGHBORHOOD_GET_ROSTER_RESPONSE
Definition Opcodes.h:2001
@ SMSG_INSTANCE_ENCOUNTER_OBJECTIVE_UPDATE
Definition Opcodes.h:1738
@ SMSG_HOUSE_EXTERIOR_LOCK_RESPONSE
Definition Opcodes.h:1649
@ SMSG_MULTIPLE_PACKETS
Definition Opcodes.h:1980
@ SMSG_QUEST_UPDATE_ADD_CREDIT_SIMPLE
Definition Opcodes.h:2177
@ SMSG_OFFER_PETITION_ERROR
Definition Opcodes.h:2021
@ SMSG_HOUSING_SVCS_DELETE_ALL_NEIGHBORHOOD_INVITES_RESPONSE
Definition Opcodes.h:1690
@ SMSG_WEATHER
Definition Opcodes.h:2460
@ SMSG_ADD_ITEM_PASSIVE
Definition Opcodes.h:1120
@ SMSG_GARRISON_LEARN_BLUEPRINT_RESULT
Definition Opcodes.h:1512
@ SMSG_SET_DF_FAST_LAUNCH_RESULT
Definition Opcodes.h:2277
@ SMSG_HOUSING_SVCS_UPDATE_HOUSE_SETTINGS_RESPONSE
Definition Opcodes.h:1711
@ SMSG_ROLE_CHANGED_INFORM
Definition Opcodes.h:2236
@ SMSG_AUCTION_COMMAND_RESULT
Definition Opcodes.h:1157
@ SMSG_MASTER_LOOT_CANDIDATE_LIST
Definition Opcodes.h:1843
@ SMSG_MOVE_UPDATE_TURN_RATE
Definition Opcodes.h:1978
@ SMSG_GARRISON_ADD_FOLLOWER_RESULT
Definition Opcodes.h:1482
@ SMSG_UPDATE_CELESTIAL_BODY
Definition Opcodes.h:2417
@ SMSG_GARRISON_REMOVE_FOLLOWER_ABILITY_RESULT
Definition Opcodes.h:1528
@ SMSG_MIRROR_VARS
Definition Opcodes.h:1849
@ SMSG_SPELL_GO
Definition Opcodes.h:2335
@ SMSG_NOTIFY_MISSILE_TRAJECTORY_COLLISION
Definition Opcodes.h:2017
@ SMSG_SPELL_INSTAKILL_LOG
Definition Opcodes.h:2338
@ SMSG_SPELL_HEAL_ABSORB_LOG
Definition Opcodes.h:2336
@ SMSG_ACCOUNT_TRANSMOG_UPDATE
Definition Opcodes.h:1109
@ SMSG_CLEAR_COOLDOWN
Definition Opcodes.h:1335
@ SMSG_GET_REMAINING_GAME_TIME_RESPONSE
Definition Opcodes.h:1561
@ SMSG_SHOW_QUEST_COMPLETION_TEXT
Definition Opcodes.h:2307
@ SMSG_NEIGHBORHOOD_BUY_HOUSE_RESPONSE
Definition Opcodes.h:1988
@ SMSG_GARRISON_COLLECTION_UPDATE_ENTRY
Definition Opcodes.h:1496
@ SMSG_BATTLE_PAY_CONFIRM_PURCHASE
Definition Opcodes.h:1203
@ SMSG_LFG_PROPOSAL_UPDATE
Definition Opcodes.h:1799
@ SMSG_CANCEL_PRELOAD_WORLD
Definition Opcodes.h:1272
@ SMSG_BATTLE_PETS_HEALED
Definition Opcodes.h:1218
@ SMSG_SERVER_TIME
Definition Opcodes.h:2268
@ SMSG_SERVER_FIRST_ACHIEVEMENTS
Definition Opcodes.h:2267
@ SMSG_MAIL_COMMAND_RESULT
Definition Opcodes.h:1838
@ SMSG_MAP_OBJECTIVES_INIT
Definition Opcodes.h:1841
@ SMSG_MOVE_INITIAL_OBJECT_UPDATE_COMPLETE
Definition Opcodes.h:1876
@ SMSG_GARRISON_DELETE_MISSION_RESULT
Definition Opcodes.h:1500
@ SMSG_RAID_MARKERS_CHANGED
Definition Opcodes.h:2189
@ SMSG_MOVEMENT_ENFORCEMENT_ALERT
Definition Opcodes.h:1854
@ SMSG_PLAY_MUSIC
Definition Opcodes.h:2107
@ SMSG_MOVE_SPLINE_SET_RUN_BACK_SPEED
Definition Opcodes.h:1936
@ SMSG_AREA_TRIGGER_DENIED
Definition Opcodes.h:1137
@ SMSG_CONTROL_UPDATE
Definition Opcodes.h:1372
@ SMSG_SCENARIO_POIS
Definition Opcodes.h:2242
@ SMSG_FACTION_BONUS_INFO
Definition Opcodes.h:1450
@ SMSG_PVP_MATCH_START
Definition Opcodes.h:2131
@ SMSG_MESSAGE_BOX
Definition Opcodes.h:1845
@ SMSG_ALL_ACCOUNT_CRITERIA
Definition Opcodes.h:1130
@ SMSG_CHARACTER_UPGRADE_ABORTED
Definition Opcodes.h:1306
@ SMSG_ACCOUNT_WARBAND_SCENE_UPDATE
Definition Opcodes.h:1110
@ SMSG_SHADOWLANDS_CAPACITANCE_UPDATE
Definition Opcodes.h:2302
@ SMSG_BATTLEFIELD_STATUS_NONE
Definition Opcodes.h:1186
@ SMSG_GUILD_EVENT_RANK_CHANGED
Definition Opcodes.h:1609
@ SMSG_HOUSING_SVCS_ACCEPT_NEIGHBORHOOD_OWNERSHIP_RESPONSE
Definition Opcodes.h:1685
@ SMSG_GUILD_RENAME_STATUS_UPDATE
Definition Opcodes.h:1638
@ SMSG_NEIGHBORHOOD_ROSTER_RESIDENT_UPDATE
Definition Opcodes.h:2010
@ SMSG_GARRISON_LIST_COMPLETED_MISSIONS_CHEAT_RESULT
Definition Opcodes.h:1514
@ SMSG_MOTD
Definition Opcodes.h:1852
@ SMSG_ARENA_CLEAR_OPPONENTS
Definition Opcodes.h:1141
@ SMSG_RESPONSE_PERK_RECENT_PURCHASES
Definition Opcodes.h:2225
@ SMSG_CAMERA_EFFECT
Definition Opcodes.h:1267
@ SMSG_COIN_REMOVED
Definition Opcodes.h:1350
@ SMSG_PARTY_UPDATE
Definition Opcodes.h:2037
@ SMSG_HOUSING_EXPORT_HOUSE_RESPONSE
Definition Opcodes.h:1660
@ SMSG_ACCOUNT_ROOM_THEME_COLLECTION_UPDATE
Definition Opcodes.h:1102
@ SMSG_SET_ITEM_PURCHASE_DATA
Definition Opcodes.h:2286
@ SMSG_GUILD_MEMBERS_WITH_RECIPE
Definition Opcodes.h:1622
@ SMSG_BATTLE_PAY_ACK_FAILED
Definition Opcodes.h:1200
@ SMSG_RESET_WEEKLY_CURRENCY
Definition Opcodes.h:2221
@ SMSG_MOVE_SET_TURN_RATE
Definition Opcodes.h:1918
@ SMSG_UI_ACTION
Definition Opcodes.h:2403
@ SMSG_CREATE_SHIPMENT_RESPONSE
Definition Opcodes.h:1395
@ SMSG_MOVE_SET_WATER_WALK
Definition Opcodes.h:1921
@ SMSG_MOVE_SPLINE_ROOT
Definition Opcodes.h:1927
@ SMSG_AUTH_FAILED
Definition Opcodes.h:1173
@ SMSG_OPEN_LFG_DUNGEON_FINDER
Definition Opcodes.h:2026
@ SMSG_GET_REALM_HIDDEN_RESULT
Definition Opcodes.h:1560
@ SMSG_CUSTOM_LOAD_SCREEN
Definition Opcodes.h:1402
@ SMSG_INSTANCE_ENCOUNTER_UPDATE_SUPPRESS_RELEASE
Definition Opcodes.h:1744
@ SMSG_MOVE_UNSET_ALWAYS_ALLOW_PITCHING
Definition Opcodes.h:1952
@ SMSG_INVENTORY_CHANGE_FAILURE
Definition Opcodes.h:1756
@ SMSG_PLAY_ORPHAN_SPELL_VISUAL
Definition Opcodes.h:2110
@ SMSG_WORLD_QUEST_UPDATE_RESPONSE
Definition Opcodes.h:2467
@ SMSG_SPELL_VISUAL_LOAD_SCREEN
Definition Opcodes.h:2346
@ SMSG_FORCE_ANIM
Definition Opcodes.h:1461
@ SMSG_GUILD_ACHIEVEMENT_DELETED
Definition Opcodes.h:1586
@ SMSG_FISH_ESCAPED
Definition Opcodes.h:1456
@ SMSG_MOVE_SET_CANNOT_SWIM
Definition Opcodes.h:1897
@ SMSG_NEIGHBORHOOD_ADD_SECONDARY_OWNER_RESPONSE
Definition Opcodes.h:1987
@ SMSG_MOVE_SET_CAN_DRIVE
Definition Opcodes.h:1899
@ SMSG_ACCOUNT_CONVERSION_STATE_UPDATE
Definition Opcodes.h:1088
@ SMSG_UPDATE_ACCOUNT_DATA_COMPLETE
Definition Opcodes.h:2413
@ SMSG_STOP_TIMER
Definition Opcodes.h:2359
@ SMSG_PVP_TIER_RECORD
Definition Opcodes.h:2134
@ SMSG_HOUSING_RESET_KIOSK_MODE_RESPONSE
Definition Opcodes.h:1676
@ SMSG_SET_QUEST_REPLAY_COOLDOWN_OVERRIDE
Definition Opcodes.h:2297
@ SMSG_ARENA_CROWD_CONTROL_SPELL_RESULT
Definition Opcodes.h:1142
@ SMSG_VAS_CHECK_TRANSFER_OK_RESPONSE
Definition Opcodes.h:2436
@ SMSG_DAILY_QUESTS_RESET
Definition Opcodes.h:1403
@ SMSG_ALL_ACHIEVEMENT_DATA
Definition Opcodes.h:1131
@ SMSG_PLAYER_AZERITE_ITEM_GAINS
Definition Opcodes.h:2086
@ SMSG_HOUSING_DECOR_SET_EDIT_MODE_RESPONSE
Definition Opcodes.h:1658
@ SMSG_HOUSING_PHOTO_SHARING_AUTHORIZATION_RESULT
Definition Opcodes.h:1674
@ SMSG_GAME_OBJECT_RESET_STATE
Definition Opcodes.h:1475
@ SMSG_NEIGHBORHOOD_OPEN_CORNERSTONE_UI_RESPONSE
Definition Opcodes.h:2007
@ SMSG_VAS_PURCHASE_COMPLETE
Definition Opcodes.h:2439
@ SMSG_PLAYER_DELAYED_UPLOAD_SCREENSHOT
Definition Opcodes.h:2092
@ SMSG_PET_DISMISS_SOUND
Definition Opcodes.h:2071
@ SMSG_SERVER_TIME_OFFSET
Definition Opcodes.h:2269
@ SMSG_PLAY_SOUND
Definition Opcodes.h:2112
@ SMSG_PETITION_SIGN_RESULTS
Definition Opcodes.h:2051
@ SMSG_HOUSING_ROOM_SET_DOOR_TYPE_RESPONSE
Definition Opcodes.h:1682
@ SMSG_LOGOUT_COMPLETE
Definition Opcodes.h:1824
@ SMSG_LEARN_PVP_TALENT_FAILED
Definition Opcodes.h:1774
@ SMSG_RESUME_COMMS
Definition Opcodes.h:2230
@ SMSG_GROUP_AUTO_KICK
Definition Opcodes.h:1580
@ SMSG_SCENE_OBJECT_PET_BATTLE_FINAL_ROUND
Definition Opcodes.h:2249
@ SMSG_MOVE_SET_ALWAYS_ALLOW_PITCHING
Definition Opcodes.h:1896
@ SMSG_MOVE_SET_SWIM_SPEED
Definition Opcodes.h:1917
@ SMSG_PERKS_PROGRAM_RESULT
Definition Opcodes.h:2045
@ SMSG_THREAT_REMOVE
Definition Opcodes.h:2374
@ SMSG_PLAYER_CHOICE_CLEAR
Definition Opcodes.h:2089
@ SMSG_GENERATE_RANDOM_CHARACTER_NAME_RESULT
Definition Opcodes.h:1550
@ SMSG_UPDATE_OBJECT
Definition Opcodes.h:2427
@ SMSG_STREAMING_MOVIES
Definition Opcodes.h:2360
@ SMSG_SYNC_WOW_ENTITLEMENTS
Definition Opcodes.h:2369
@ SMSG_WAIT_QUEUE_FINISH
Definition Opcodes.h:2451
@ SMSG_START_MIRROR_TIMER
Definition Opcodes.h:2354
@ SMSG_SOCKET_GEMS_FAILURE
Definition Opcodes.h:2311
@ SMSG_GARRISON_CLEAR_SPEC_GROUPS
Definition Opcodes.h:1494
@ SMSG_PET_BATTLE_SLOT_UPDATES
Definition Opcodes.h:2068
@ SMSG_LFG_LIST_APPLICANT_LIST_UPDATE
Definition Opcodes.h:1785
@ SMSG_GARRISON_GET_RECALL_PORTAL_LAST_USED_TIME_RESULT
Definition Opcodes.h:1510
@ SMSG_HEALTH_UPDATE
Definition Opcodes.h:1645
@ SMSG_SET_FLAT_SPELL_MODIFIER
Definition Opcodes.h:2283
@ SMSG_CRAFTING_ORDER_RELEASE_RESULT
Definition Opcodes.h:1391
@ SMSG_QUERY_NEIGHBORHOOD_NAME_RESPONSE
Definition Opcodes.h:2142
@ SMSG_MOVE_UPDATE_RUN_SPEED
Definition Opcodes.h:1973
@ SMSG_CALENDAR_INVITE_STATUS
Definition Opcodes.h:1258
@ SMSG_QUEST_GIVER_OFFER_REWARD_MESSAGE
Definition Opcodes.h:2158
@ SMSG_CLUB_FINDER_UPDATE_APPLICATIONS
Definition Opcodes.h:1348
@ SMSG_CHANNEL_NOTIFY_JOINED
Definition Opcodes.h:1299
@ SMSG_GAME_OBJECT_DESPAWN
Definition Opcodes.h:1471
@ SMSG_CHARACTER_LOGIN_FAILED
Definition Opcodes.h:1303
@ SMSG_TOTEM_MOVED
Definition Opcodes.h:2384
@ SMSG_BATTLE_PAY_BATTLE_PET_DELIVERED
Definition Opcodes.h:1201
@ SMSG_EXPLORATION_EXPERIENCE
Definition Opcodes.h:1447
@ SMSG_RUNE_REGEN_DEBUG
Definition Opcodes.h:2240
@ SMSG_HOUSING_FIXTURE_SET_HOUSE_SIZE_RESPONSE
Definition Opcodes.h:1668
@ SMSG_QUEST_ITEM_USABILITY_RESPONSE
Definition Opcodes.h:2166
@ SMSG_GUILD_EVENT_PLAYER_JOINED
Definition Opcodes.h:1605
@ SMSG_DISENCHANT_CREDIT
Definition Opcodes.h:1415
@ SMSG_ENVIRONMENTAL_DAMAGE_LOG
Definition Opcodes.h:1444
@ SMSG_IS_QUEST_COMPLETE_RESPONSE
Definition Opcodes.h:1761
@ SMSG_AUCTION_GET_COMMODITY_QUOTE_RESULT
Definition Opcodes.h:1160
@ SMSG_RESYNC_RUNES
Definition Opcodes.h:2233
@ SMSG_HOUSING_REDEEM_DEFERRED_DECOR_RESPONSE
Definition Opcodes.h:1675
@ SMSG_BATTLEGROUND_INFO_THROTTLED
Definition Opcodes.h:1189
@ SMSG_PLAYER_SHOW_UI_EVENT_TOAST
Definition Opcodes.h:2102
@ SMSG_SET_PCT_SPELL_MODIFIER
Definition Opcodes.h:2291
@ SMSG_UPDATE_ACTION_BUTTONS
Definition Opcodes.h:2414
@ SMSG_CHAT_AUTO_RESPONDED
Definition Opcodes.h:1314
@ SMSG_MOVE_SET_WALK_SPEED
Definition Opcodes.h:1920
@ SMSG_CHECK_WARGAME_ENTRY
Definition Opcodes.h:1330
@ SMSG_CREATOR_VISUALS_OVERRIDE
Definition Opcodes.h:1396
@ SMSG_GUILD_REWARD_LIST
Definition Opcodes.h:1641
@ SMSG_USERLIST_ADD
Definition Opcodes.h:2432
@ SMSG_LOOT_MONEY_NOTIFY
Definition Opcodes.h:1829
@ SMSG_HOTFIX_CONNECT
Definition Opcodes.h:1647
@ SMSG_SPELL_CATEGORY_COOLDOWN
Definition Opcodes.h:2320
@ SMSG_QUEST_GIVER_QUEST_LIST_MESSAGE
Definition Opcodes.h:2162
@ SMSG_LFG_JOIN_RESULT
Definition Opcodes.h:1784
@ SMSG_TEXT_EMOTE
Definition Opcodes.h:2372
@ SMSG_BATTLE_PET_ERROR
Definition Opcodes.h:1221
@ SMSG_GARRISON_TALENT_WORLD_QUEST_UNLOCKS_RESPONSE
Definition Opcodes.h:1543
@ SMSG_MOVE_SET_HOVERING
Definition Opcodes.h:1908
@ SMSG_START_LOOT_ROLL
Definition Opcodes.h:2353
@ SMSG_GAME_OBJECT_BASE
Definition Opcodes.h:1468
@ SMSG_TITLE_EARNED
Definition Opcodes.h:2380
@ SMSG_NEIGHBORHOOD_CHARTER_OPEN_UI_RESPONSE
Definition Opcodes.h:1992
@ SMSG_BATTLEFIELD_STATUS_QUEUED
Definition Opcodes.h:1187
@ SMSG_READY_CHECK_STARTED
Definition Opcodes.h:2194
@ SMSG_DUEL_COUNTDOWN
Definition Opcodes.h:1429
@ SMSG_CANCEL_AUTO_REPEAT
Definition Opcodes.h:1268
@ SMSG_MOVE_SET_ADV_FLYING_ADD_IMPULSE_MAX_SPEED
Definition Opcodes.h:1883
@ SMSG_RAID_GROUP_ONLY
Definition Opcodes.h:2187
@ SMSG_LOGIN_VERIFY_WORLD
Definition Opcodes.h:1822
@ SMSG_ACCOUNT_STORE_ITEM_STATE_CHANGED
Definition Opcodes.h:1105
@ SMSG_MOVE_ENABLE_FULL_SPEED_TURNING
Definition Opcodes.h:1870
@ SMSG_GUILD_OTHERS_OWNED_HOUSES_RESULT
Definition Opcodes.h:1631
@ SMSG_UNDELETE_CHARACTER_RESPONSE
Definition Opcodes.h:2405
@ SMSG_LIVE_REGION_ACCOUNT_RESTORE_RESULT
Definition Opcodes.h:1809
@ SMSG_COMMERCE_TOKEN_GET_LOG_RESPONSE
Definition Opcodes.h:1356
@ SMSG_MOVE_SET_MOD_MOVEMENT_FORCE_MAGNITUDE
Definition Opcodes.h:1911
@ SMSG_LIVE_REGION_KEY_BINDINGS_COPY_RESULT
Definition Opcodes.h:1812
@ SMSG_SHOW_NEUTRAL_PLAYER_FACTION_SELECT_UI
Definition Opcodes.h:2306
@ SMSG_PET_BATTLE_QUEUE_STATUS
Definition Opcodes.h:2064
@ SMSG_UPDATE_COOLDOWN
Definition Opcodes.h:2420
@ SMSG_GARRISON_PLACE_BUILDING_RESULT
Definition Opcodes.h:1522
@ SMSG_MOVE_SET_ADV_FLYING_GLIDE_START_MIN_HEIGHT
Definition Opcodes.h:1887
@ SMSG_SPELL_FAILED_OTHER
Definition Opcodes.h:2332
@ SMSG_FORCE_RANDOM_TRANSMOG_TOAST
Definition Opcodes.h:1463
@ SMSG_LOOT_ROLLS_COMPLETE
Definition Opcodes.h:1835
@ SMSG_BONUS_ROLL_EMPTY
Definition Opcodes.h:1234
@ SMSG_PLAYER_AZERITE_ITEM_EQUIPPED_STATUS_CHANGED
Definition Opcodes.h:2085
@ SMSG_FEATURE_SYSTEM_STATUS_GLUE_SCREEN
Definition Opcodes.h:1454
@ SMSG_HOUSING_FIXTURE_SET_CORE_FIXTURE_RESPONSE
Definition Opcodes.h:1666
@ SMSG_GM_PLAYER_INFO
Definition Opcodes.h:1568
@ SMSG_PUSH_SPELL_TO_ACTION_BAR
Definition Opcodes.h:2126
@ SMSG_LFG_READY_CHECK_RESULT
Definition Opcodes.h:1801
@ SMSG_GARRISON_ADD_SPEC_GROUPS
Definition Opcodes.h:1484
@ SMSG_COMMENTATOR_STATE_CHANGED
Definition Opcodes.h:1354
@ SMSG_CURRENCY_TRANSFER_RESULT
Definition Opcodes.h:1401
@ SMSG_BLACK_MARKET_OUTBID
Definition Opcodes.h:1231
@ SMSG_BATTLE_PAY_PURCHASE_UPDATE
Definition Opcodes.h:1213
@ SMSG_MOVE_SPLINE_ENABLE_GRAVITY
Definition Opcodes.h:1926
@ SMSG_PETITION_ALREADY_SIGNED
Definition Opcodes.h:2047
@ SMSG_HOUSING_SVCS_GUILD_APPEND_NEIGHBORHOOD_NOTIFICATION
Definition Opcodes.h:1697
@ SMSG_BATTLE_PAY_COLLECTION_ITEM_DELIVERED
Definition Opcodes.h:1202
@ SMSG_AUCTION_WON_NOTIFICATION
Definition Opcodes.h:1169
@ SMSG_SPELL_ABSORB_LOG
Definition Opcodes.h:2319
@ SMSG_BATTLEGROUND_INIT
Definition Opcodes.h:1190
@ SMSG_XP_GAIN_ENABLED
Definition Opcodes.h:2478
@ SMSG_HOUSING_DECOR_REMOVE_RESPONSE
Definition Opcodes.h:1656
@ SMSG_ACCOUNT_STORE_CURRENCY_UPDATE
Definition Opcodes.h:1103
@ SMSG_SET_TIME_ZONE_INFORMATION
Definition Opcodes.h:2300
@ SMSG_UPDATE_BNET_SESSION_KEY
Definition Opcodes.h:2415
@ SMSG_HOUSING_HOUSE_STATUS_RESPONSE
Definition Opcodes.h:1672
@ SMSG_CHALLENGE_MODE_REQUEST_LEADERBOARD_RESULT
Definition Opcodes.h:1289
@ SMSG_HOUSING_SVCS_REJECT_NEIGHBORHOOD_OWNERSHIP_RESPONSE
Definition Opcodes.h:1708
@ SMSG_WILL_BE_KICKED_FOR_ADDED_SUBSCRIPTION_TIME
Definition Opcodes.h:2466
@ SMSG_GET_INITIATIVE_ACTIVITY_LOG_RESULT
Definition Opcodes.h:1556
@ SMSG_FORCED_DEATH_UPDATE
Definition Opcodes.h:1460
@ SMSG_SCHEDULED_AREA_POI_UPDATE_RESPONSE
Definition Opcodes.h:2255
@ SMSG_PONG
Definition Opcodes.h:2117
@ SMSG_HOUSING_SVCS_NOTIFY_PERMISSIONS_FAILURE
Definition Opcodes.h:1706
@ SMSG_CATALOG_SHOP_LICENSE_DATA
Definition Opcodes.h:1281
@ SMSG_GOSSIP_COMPLETE
Definition Opcodes.h:1573
@ SMSG_ACTIVE_GLYPHS
Definition Opcodes.h:1116
@ SMSG_MOVE_APPLY_MOVEMENT_FORCE
Definition Opcodes.h:1857
@ SMSG_REQUEST_PVP_REWARDS_RESPONSE
Definition Opcodes.h:2214
@ SMSG_CHAT_NOT_IN_GUILD
Definition Opcodes.h:1319
@ SMSG_MOVE_UPDATE_SET_GRAVITY_MODIFIER
Definition Opcodes.h:1974
@ SMSG_INVALIDATE_NEIGHBORHOOD_NAME
Definition Opcodes.h:1752
@ SMSG_SCENE_OBJECT_PET_BATTLE_FIRST_ROUND
Definition Opcodes.h:2251
@ SMSG_INIT_WORLD_STATES
Definition Opcodes.h:1719
@ SMSG_ACCOUNT_ROOM_COLLECTION_UPDATE
Definition Opcodes.h:1100
@ SMSG_DURABILITY_DAMAGE_DEATH
Definition Opcodes.h:1434
@ SMSG_STOP_SPEAKERBOT_SOUND
Definition Opcodes.h:2358
@ SMSG_RESURRECT_REQUEST
Definition Opcodes.h:2232
@ SMSG_SPECTATE_RESET
Definition Opcodes.h:2317
@ SMSG_UPDATE_PRIMARY_SPEC
Definition Opcodes.h:2428
@ SMSG_GROUP_DECLINE
Definition Opcodes.h:1581
@ SMSG_AUTH_CHALLENGE
Definition Opcodes.h:1172
@ SMSG_WOW_ENTITLEMENT_NOTIFICATION
Definition Opcodes.h:2469
@ SMSG_NEIGHBORHOOD_EVICT_PLOT_RESPONSE
Definition Opcodes.h:1999
@ SMSG_MOVE_SET_CAN_FLY
Definition Opcodes.h:1900
@ SMSG_REALM_QUERY_RESPONSE
Definition Opcodes.h:2197
@ SMSG_QUERY_TIME_RESPONSE
Definition Opcodes.h:2152
@ SMSG_PLAYER_UPLOAD_SCREENSHOT
Definition Opcodes.h:2106
@ SMSG_GUILD_NAME_CHANGED
Definition Opcodes.h:1628
@ SMSG_PET_NEWLY_TAMED
Definition Opcodes.h:2077
@ SMSG_DAMAGE_CALC_LOG
Definition Opcodes.h:1404
@ SMSG_BARBER_SHOP_RESULT
Definition Opcodes.h:1178
@ SMSG_ISLAND_AZERITE_GAIN
Definition Opcodes.h:1759
@ SMSG_HOUSING_SVCS_NEIGHBORHOOD_RESERVE_PLOT_RESPONSE
Definition Opcodes.h:1704
@ SMSG_MAIL_LIST_RESULT
Definition Opcodes.h:1839
@ SMSG_LFG_LIST_SEARCH_STATUS
Definition Opcodes.h:1791
@ SMSG_ATTACK_START
Definition Opcodes.h:1149
@ SMSG_CRAFTING_ORDER_LIST_ORDERS_RESPONSE
Definition Opcodes.h:1388
@ SMSG_GROUP_REQUEST_DECLINE
Definition Opcodes.h:1584
@ SMSG_SPELL_DAMAGE_SHIELD
Definition Opcodes.h:2324
@ SMSG_HOUSING_SVCS_CREATE_CHARTER_NEIGHBORHOOD_RESPONSE
Definition Opcodes.h:1689
@ SMSG_ENABLE_BARBER_SHOP
Definition Opcodes.h:1436
@ SMSG_COVENANT_CALLINGS_AVAILABILITY_RESPONSE
Definition Opcodes.h:1379
@ SMSG_INVENTORY_FIXUP_COMPLETE
Definition Opcodes.h:1757
@ SMSG_WEEKLY_REWARDS_RESULT
Definition Opcodes.h:2462
@ SMSG_MOVE_SKIP_TIME
Definition Opcodes.h:1922
@ SMSG_ENTER_ENCRYPTED_MODE
Definition Opcodes.h:1441
@ SMSG_HOUSING_GET_PLAYER_PERMISSIONS_RESPONSE
Definition Opcodes.h:1671
@ SMSG_SPELL_HEAL_LOG
Definition Opcodes.h:2337
@ SMSG_MOVE_SPLINE_SET_RUN_SPEED
Definition Opcodes.h:1938
@ SMSG_PRE_RESSURECT
Definition Opcodes.h:2122
@ SMSG_CACHE_VERSION
Definition Opcodes.h:1246
@ SMSG_COMMENTATOR_PLAYER_INFO
Definition Opcodes.h:1353
@ SMSG_CHANNEL_NOTIFY_LEFT
Definition Opcodes.h:1300
@ SMSG_MOVE_SET_GRAVITY_MODIFIER
Definition Opcodes.h:1907
@ SMSG_CHEAT_IGNORE_DIMISHING_RETURNS
Definition Opcodes.h:1327
@ SMSG_COMMENTATOR_MAP_INFO
Definition Opcodes.h:1352
@ SMSG_AREA_TRIGGER_PLAY_SPELL_VISUAL
Definition Opcodes.h:1139
@ SMSG_MOVE_DISABLE_INERTIA
Definition Opcodes.h:1863
@ SMSG_UPDATE_DAILY_MISSION_COUNTER
Definition Opcodes.h:2422
@ SMSG_NEIGHBORHOOD_CHARTER_UPDATE_RESPONSE
Definition Opcodes.h:1995
@ SMSG_FLUSH_COMBAT_LOG_FILE
Definition Opcodes.h:1459
@ SMSG_MINIMAP_PING
Definition Opcodes.h:1846
@ SMSG_QUEST_GIVER_QUEST_FAILED
Definition Opcodes.h:2161
@ SMSG_GUILD_RENAME_REFUND_RESULT
Definition Opcodes.h:1636
@ SMSG_GARRISON_TALENT_COMPLETED
Definition Opcodes.h:1539
@ SMSG_INSTANCE_INFO
Definition Opcodes.h:1746
@ SMSG_AUCTION_DISABLE_NEW_POSTINGS
Definition Opcodes.h:1158
@ SMSG_ITEM_TIME_UPDATE
Definition Opcodes.h:1769
@ SMSG_INSTANCE_ENCOUNTER_EVENT_APPEND
Definition Opcodes.h:1729
@ SMSG_CHECK_CHARACTER_NAME_AVAILABILITY_RESULT
Definition Opcodes.h:1329
@ SMSG_ACTIVATE_SOULBIND_FAILED
Definition Opcodes.h:1114
@ SMSG_AUCTION_HELLO_RESPONSE
Definition Opcodes.h:1161
@ SMSG_PLAYER_SAVE_GUILD_EMBLEM
Definition Opcodes.h:2097
@ SMSG_AREA_POI_UPDATE_RESPONSE
Definition Opcodes.h:1135
@ SMSG_PRELOAD_WORLD
Definition Opcodes.h:2120
@ SMSG_MOVE_SET_CAN_ADV_FLY
Definition Opcodes.h:1898
@ SMSG_DB_REPLY
Definition Opcodes.h:1405
@ SMSG_SPELL_OR_DAMAGE_IMMUNE
Definition Opcodes.h:2342
@ SMSG_SEND_KNOWN_SPELLS
Definition Opcodes.h:2261
@ SMSG_GUILD_MEMBER_UPDATE_NOTE
Definition Opcodes.h:1625
@ SMSG_CRAFTING_ORDER_CANCEL_RESULT
Definition Opcodes.h:1383
@ SMSG_MOVE_SPLINE_SET_FLIGHT_BACK_SPEED
Definition Opcodes.h:1929
@ SMSG_CALENDAR_RAID_LOCKOUT_UPDATED
Definition Opcodes.h:1263
@ SMSG_GARRISON_REMOTE_INFO
Definition Opcodes.h:1526
@ SMSG_MOVE_UPDATE_REMOVE_INERTIA
Definition Opcodes.h:1970
@ SMSG_EXTERNAL_TRANSACTION_ID_GENERATED
Definition Opcodes.h:1449
@ SMSG_MOVE_SET_ACTIVE_MOVER
Definition Opcodes.h:1882
@ SMSG_COMMERCE_TOKEN_GET_COUNT_RESPONSE
Definition Opcodes.h:1355
@ SMSG_HOUSING_SVCS_UPDATE_HOUSES_LEVEL_FAVOR
Definition Opcodes.h:1710
@ SMSG_AE_LOOT_TARGET_ACK
Definition Opcodes.h:1127
@ SMSG_GUILD_MOVED
Definition Opcodes.h:1626
@ SMSG_RESUME_CAST
Definition Opcodes.h:2228
@ SMSG_TRANSMOG_OUTFIT_SLOTS_UPDATED
Definition Opcodes.h:2396
@ SMSG_QUEST_GIVER_QUEST_DETAILS
Definition Opcodes.h:2160
@ SMSG_RECENT_ALLY_NOTE_UPDATED
Definition Opcodes.h:2202
@ SMSG_LFG_PLAYER_REWARD
Definition Opcodes.h:1798
@ SMSG_BATTLE_PET_DELETED
Definition Opcodes.h:1220
@ SMSG_RESET_FAILED_NOTIFY
Definition Opcodes.h:2217
@ SMSG_BATTLE_PAY_GET_PURCHASE_LIST_RESPONSE
Definition Opcodes.h:1211
@ SMSG_NEIGHBORHOOD_GET_INVITES_RESPONSE
Definition Opcodes.h:2000
@ SMSG_CATALOG_SHOP_OPEN_CHECKOUT_RESULT
Definition Opcodes.h:1283
@ SMSG_CHAT_RESTRICTED
Definition Opcodes.h:1325
@ SMSG_COOLDOWN_CHEAT
Definition Opcodes.h:1374
@ SMSG_MOVE_UPDATE_SWIM_BACK_SPEED
Definition Opcodes.h:1975
@ SMSG_BATTLEGROUND_PLAYER_LEFT
Definition Opcodes.h:1192
@ SMSG_ACCOUNT_MOUNT_UPDATE
Definition Opcodes.h:1098
@ SMSG_GARRISON_LIST_FOLLOWERS_CHEAT_RESULT
Definition Opcodes.h:1515
@ SMSG_CHAT_PLAYER_AMBIGUOUS
Definition Opcodes.h:1321
@ SMSG_PET_BATTLE_FINAL_ROUND
Definition Opcodes.h:2057
@ SMSG_GARRISON_APPLY_TALENT_SOCKET_DATA_CHANGES
Definition Opcodes.h:1485
@ SMSG_CHAT_RECONNECT
Definition Opcodes.h:1323
@ SMSG_CHAT_IGNORED_ACCOUNT_MUTED
Definition Opcodes.h:1317
@ SMSG_MOVE_DISABLE_DOUBLE_JUMP
Definition Opcodes.h:1859
@ SMSG_GARRISON_UPGRADE_RESULT
Definition Opcodes.h:1548
@ SMSG_GAME_OBJECT_ACTIVATE_ANIM_KIT
Definition Opcodes.h:1467
@ SMSG_HOUSING_ROOM_SET_LAYOUT_EDIT_MODE_RESPONSE
Definition Opcodes.h:1683
@ SMSG_CONNECT_TO
Definition Opcodes.h:1363
@ SMSG_GUILD_EVENT_BANK_CONTENTS_CHANGED
Definition Opcodes.h:1599
@ SMSG_BATTLE_PET_JOURNAL_LOCK_DENIED
Definition Opcodes.h:1224
@ SMSG_HOUSING_FIRST_TIME_DECOR_ACQUISITION
Definition Opcodes.h:1661
@ SMSG_NEIGHBORHOOD_OFFER_OWNERSHIP_RESPONSE
Definition Opcodes.h:2006
@ SMSG_ATTACK_SWING_ERROR
Definition Opcodes.h:1151
@ SMSG_GARRISON_COMPLETE_BUILDING_CONSTRUCTION_RESULT
Definition Opcodes.h:1497
@ SMSG_EXPORT_ACCOUNT_PROFILE
Definition Opcodes.h:1448
@ SMSG_LOG_XP_GAIN
Definition Opcodes.h:1826
@ SMSG_QUEUE_SUMMARY_UPDATE
Definition Opcodes.h:2182
@ SMSG_REFETCH_TACT_KEYS
Definition Opcodes.h:2205
@ SMSG_PVP_MATCH_INITIALIZE
Definition Opcodes.h:2129
@ SMSG_CRITERIA_UPDATE
Definition Opcodes.h:1398
@ SMSG_INSTANCE_ENCOUNTER_CHANGE_PRIORITY
Definition Opcodes.h:1725
@ SMSG_ACHIEVEMENT_DELETED
Definition Opcodes.h:1111
@ SMSG_GARRISON_OPEN_RECRUITMENT_NPC
Definition Opcodes.h:1521
@ SMSG_LFG_LIST_SEARCH_RESULTS_UPDATE
Definition Opcodes.h:1790
@ SMSG_PVP_OPTIONS_ENABLED
Definition Opcodes.h:2133
@ SMSG_MAIL_QUERY_NEXT_TIME_RESULT
Definition Opcodes.h:1840
@ SMSG_MOVE_DISABLE_FULL_SPEED_PITCHING
Definition Opcodes.h:1860
@ SMSG_GUILD_EVENT_LOG_QUERY_RESULTS
Definition Opcodes.h:1602
@ SMSG_PRINT_NOTIFICATION
Definition Opcodes.h:2123
@ SMSG_GUILD_COMMAND_RESULT
Definition Opcodes.h:1596
@ SMSG_RAF_ACCOUNT_INFO
Definition Opcodes.h:2183
@ SMSG_GUILD_CHALLENGE_UPDATE
Definition Opcodes.h:1594
@ SMSG_MOVE_SET_ADV_FLYING_TURN_VELOCITY_THRESHOLD
Definition Opcodes.h:1895
@ SMSG_ENUM_CHARACTERS_RESULT
Definition Opcodes.h:1442
@ SMSG_SET_MELEE_ANIM_KIT
Definition Opcodes.h:2289
@ SMSG_PLAYER_SHOW_GENERIC_WIDGET_DISPLAY
Definition Opcodes.h:2100
@ SMSG_CAUTIONARY_CHANNEL_MESSAGE
Definition Opcodes.h:1284
@ SMSG_LICENSED_DECOR_QUANTITIES_UPDATE
Definition Opcodes.h:1808
@ SMSG_GAME_TIME_SET
Definition Opcodes.h:1478
@ SMSG_DIFFERENT_INSTANCE_FROM_PARTY
Definition Opcodes.h:1414
@ SMSG_AUCTION_OWNER_BID_NOTIFICATION
Definition Opcodes.h:1167
@ SMSG_INITIATIVE_SERVICE_STATUS
Definition Opcodes.h:1717
@ SMSG_ACTIVATE_TAXI_REPLY
Definition Opcodes.h:1115
@ SMSG_AI_REACTION
Definition Opcodes.h:1128
@ SMSG_INSTANCE_GROUP_SIZE_CHANGED
Definition Opcodes.h:1745
@ SMSG_FORCE_ANIMATIONS
Definition Opcodes.h:1462
@ SMSG_WOW_LABS_SET_WOW_LABS_AREA_ID_RESPONSE
Definition Opcodes.h:2475
@ SMSG_ITEM_INTERACTION_COMPLETE
Definition Opcodes.h:1766
@ SMSG_MOVE_UNSET_CAN_FLY
Definition Opcodes.h:1956
@ SMSG_INSTANCE_ENCOUNTER_GAIN_COMBAT_RESURRECTION_CHARGE
Definition Opcodes.h:1734
@ SMSG_AUCTIONABLE_TOKEN_SELL_AT_MARKET_PRICE_RESPONSE
Definition Opcodes.h:1154
@ SMSG_GET_ALL_LICENSED_DECOR_QUANTITIES_RESPONSE
Definition Opcodes.h:1553
@ SMSG_ADVANCED_COMBAT_LOG
Definition Opcodes.h:1124
@ SMSG_NEIGHBORHOOD_INVITE_NOTIFICATION
Definition Opcodes.h:2003
@ SMSG_CHARACTER_UPGRADE_STARTED
Definition Opcodes.h:1309
@ SMSG_HOUSING_SVCS_GET_PLAYER_HOUSES_INFO_RESPONSE
Definition Opcodes.h:1694
@ SMSG_PLAY_TIME_WARNING
Definition Opcodes.h:2116
@ SMSG_CHARACTER_RENAME_RESULT
Definition Opcodes.h:1305
@ SMSG_SEND_UNLEARN_SPELLS
Definition Opcodes.h:2266
@ SMSG_CLEAR_SPELL_CHARGES
Definition Opcodes.h:1339
@ SMSG_LOOT_ROLL
Definition Opcodes.h:1834
@ SMSG_GARRISON_FOLLOWER_CHANGED_QUALITY
Definition Opcodes.h:1505
@ SMSG_ARENA_PREP_OPPONENT_SPECIALIZATIONS
Definition Opcodes.h:1143
@ SMSG_UPDATE_RECENT_PLAYER_GUIDS
Definition Opcodes.h:2429
@ SMSG_MOVE_SET_ADV_FLYING_DOUBLE_JUMP_VEL_MOD
Definition Opcodes.h:1886
@ SMSG_MOVE_SPLINE_UNSET_FLYING
Definition Opcodes.h:1948
@ SMSG_HOUSING_ROOM_UPDATE_RESPONSE
Definition Opcodes.h:1684
@ SMSG_MOVE_SPLINE_SET_FLIGHT_SPEED
Definition Opcodes.h:1930
@ SMSG_QUERY_CREATURE_RESPONSE
Definition Opcodes.h:2136
@ SMSG_NEIGHBORHOOD_CHARTER_SIGN_REQUEST
Definition Opcodes.h:1994
@ SMSG_BROADCAST_ACHIEVEMENT
Definition Opcodes.h:1237
@ SMSG_ACCOUNT_ITEM_COLLECTION_DATA
Definition Opcodes.h:1096
@ SMSG_LEARNED_SPELLS
Definition Opcodes.h:1773
@ SMSG_SUMMON_RAID_MEMBER_VALIDATE_FAILED
Definition Opcodes.h:2363
@ SMSG_STAND_STATE_UPDATE
Definition Opcodes.h:2348
@ SMSG_GUILD_PERMISSIONS_QUERY_RESULTS
Definition Opcodes.h:1633
@ SMSG_CONSUMABLE_TOKEN_BUY_CHOICE_REQUIRED
Definition Opcodes.h:1366
@ SMSG_CANCEL_PING_PIN
Definition Opcodes.h:1271
@ SMSG_ALLIED_RACE_DETAILS
Definition Opcodes.h:1129
@ SMSG_CLEAR_ALL_SPELL_CHARGES
Definition Opcodes.h:1333
@ SMSG_LOGOUT_CANCEL_ACK
Definition Opcodes.h:1823
@ SMSG_HOUSING_ROOM_APPLY_COMPONENT_MATERIALS_RESPONSE
Definition Opcodes.h:1678
@ SMSG_GUILD_EVENT_RANKS_UPDATED
Definition Opcodes.h:1608
@ SMSG_MOVE_SPLINE_STOP_SWIM
Definition Opcodes.h:1946
@ SMSG_SHOW_TRADE_SKILL_RESPONSE
Definition Opcodes.h:2309
@ SMSG_GARRISON_ACTIVATE_MISSION_BONUS_ABILITY
Definition Opcodes.h:1480
@ SMSG_SCENE_OBJECT_EVENT
Definition Opcodes.h:2248
@ SMSG_STOP_ELAPSED_TIMER
Definition Opcodes.h:2356
@ SMSG_PLAYER_HIDE_ARROW_CALLOUT
Definition Opcodes.h:2094
@ SMSG_COMMERCE_TOKEN_GET_MARKET_PRICE_RESPONSE
Definition Opcodes.h:1357
@ SMSG_TIERED_ENTRANCE_OPEN_RESPONSE
Definition Opcodes.h:2376
@ SMSG_PET_CAST_FAILED
Definition Opcodes.h:2069
@ SMSG_REFRESH_COMPONENT
Definition Opcodes.h:2206
@ SMSG_MOVE_SPLINE_START_SWIM
Definition Opcodes.h:1945
@ SMSG_MOVE_UPDATE_RUN_BACK_SPEED
Definition Opcodes.h:1972
@ SMSG_BULK_PURCHASE_UPDATE_RESPONSE
Definition Opcodes.h:1241
@ SMSG_LEGACY_LOOT_RULES
Definition Opcodes.h:1776
@ SMSG_CANCEL_SPELL_VISUAL_KIT
Definition Opcodes.h:1275
@ SMSG_GAME_SPEED_SET
Definition Opcodes.h:1477
@ SMSG_FLIGHT_SPLINE_SYNC
Definition Opcodes.h:1458
@ SMSG_NEIGHBORHOOD_EVICT_PLOT_NOTICE
Definition Opcodes.h:1998
@ SMSG_GET_SELECTED_TROPHY_ID_RESPONSE
Definition Opcodes.h:1562
@ SMSG_DELETE_CHAR
Definition Opcodes.h:1409
@ SMSG_CHAT_REGIONAL_SERVICE_STATUS
Definition Opcodes.h:1324
@ SMSG_GUILD_INVITE
Definition Opcodes.h:1617
@ SMSG_PERKS_PROGRAM_ACTIVITY_UPDATE
Definition Opcodes.h:2043
@ SMSG_LATENCY_REPORT_PING
Definition Opcodes.h:1772
@ SMSG_INSTANCE_ENCOUNTER_OBJECTIVE_COMPLETE
Definition Opcodes.h:1736
@ SMSG_GET_VAS_TRANSFER_TARGET_REALM_LIST_RESULT
Definition Opcodes.h:1567
@ SMSG_GUILD_EVENT_STATUS_CHANGE
Definition Opcodes.h:1610
@ SMSG_MOVE_SET_SWIM_BACK_SPEED
Definition Opcodes.h:1916
@ SMSG_SPELL_START
Definition Opcodes.h:2345
@ SMSG_GARRISON_TALENT_REMOVED
Definition Opcodes.h:1540
@ SMSG_MOVE_MARK_REMOTE_TIME_INVALID
Definition Opcodes.h:1878
@ SMSG_LFG_OFFER_CONTINUE
Definition Opcodes.h:1795
@ SMSG_PVP_MATCH_STATISTICS
Definition Opcodes.h:2132
@ SMSG_AUCTION_LIST_BUCKETS_RESULT
Definition Opcodes.h:1163
@ SMSG_LFG_BOOT_PLAYER
Definition Opcodes.h:1779
@ SMSG_LOOT_ROLL_WON
Definition Opcodes.h:1836
@ SMSG_LFG_LIST_UPDATE_BLACKLIST
Definition Opcodes.h:1792
@ SMSG_GET_PLAYER_INITIATIVE_INFO_RESULT
Definition Opcodes.h:1559
@ SMSG_MOVE_UNSET_CAN_TURN_WHILE_FALLING
Definition Opcodes.h:1957
@ SMSG_UPDATE_LAST_INSTANCE
Definition Opcodes.h:2426
@ SMSG_NEIGHBORHOOD_CHARTER_SIGNATURE_REMOVED_NOTIFICATION
Definition Opcodes.h:1993
@ SMSG_QUERY_WOW_LABS_AREA_INFO_RESPONSE
Definition Opcodes.h:2153
@ SMSG_BATTLE_PAY_GET_PRODUCT_LIST_RESPONSE
Definition Opcodes.h:1210
@ SMSG_CALENDAR_RAID_LOCKOUT_REMOVED
Definition Opcodes.h:1262
@ SMSG_GUILD_REPUTATION_REACTION_CHANGED
Definition Opcodes.h:1639
@ SMSG_MOVE_SET_RUN_SPEED
Definition Opcodes.h:1915
@ SMSG_ARCHAEOLOGY_SURVERY_CAST
Definition Opcodes.h:1134
@ SMSG_BATTLEFIELD_STATUS_WAIT_FOR_GROUPS
Definition Opcodes.h:1188
@ SMSG_TRAINER_LIST
Definition Opcodes.h:2389
@ SMSG_GUILD_MEMBER_DAILY_RESET
Definition Opcodes.h:1623
@ SMSG_LOBBY_MATCHMAKER_QUEUE_PROPOSED
Definition Opcodes.h:1818
@ SMSG_MOVE_UPDATE
Definition Opcodes.h:1960
@ SMSG_QUEST_POI_QUERY_RESPONSE
Definition Opcodes.h:2169
@ SMSG_SUPERCEDED_SPELLS
Definition Opcodes.h:2365
@ SMSG_GARRISON_MISSION_START_CONDITION_UPDATE
Definition Opcodes.h:1519
@ SMSG_GARRISON_TALENT_REMOVE_SOCKET_DATA
Definition Opcodes.h:1541
@ SMSG_CALENDAR_INVITE_ALERT
Definition Opcodes.h:1253
@ SMSG_GUILD_NEWS
Definition Opcodes.h:1629
@ SMSG_MOVE_DISABLE_TRANSITION_BETWEEN_SWIM_AND_FLY
Definition Opcodes.h:1866
@ SMSG_MOVE_UPDATE_KNOCK_BACK
Definition Opcodes.h:1967
@ SMSG_GUILD_NEWS_DELETED
Definition Opcodes.h:1630
@ SMSG_CRAFTING_ORDER_CRAFT_RESULT
Definition Opcodes.h:1385
@ SMSG_CONSUMABLE_TOKEN_BUY_AT_MARKET_PRICE_RESPONSE
Definition Opcodes.h:1365
@ SMSG_SET_AI_ANIM_KIT
Definition Opcodes.h:2272
@ SMSG_BATTLE_PAY_START_DISTRIBUTION_ASSIGN_TO_TARGET_RESPONSE
Definition Opcodes.h:1215
@ SMSG_GARRISON_RESET_TALENT_TREE
Definition Opcodes.h:1534
@ SMSG_HOUSING_SVCS_GUILD_RENAME_NEIGHBORHOOD_NOTIFICATION
Definition Opcodes.h:1701
@ SMSG_SPECTATE_PLAYER
Definition Opcodes.h:2316
@ SMSG_MOVE_SPLINE_ENABLE_COLLISION
Definition Opcodes.h:1925
@ SMSG_BATTLE_PET_UPDATES
Definition Opcodes.h:1228
@ SMSG_PETITION_RENAME_GUILD_RESPONSE
Definition Opcodes.h:2048
@ SMSG_COMBAT_EVENT_FAILED
Definition Opcodes.h:1351
@ SMSG_PLAYER_OPEN_SUBSCRIPTION_INTERSTITIAL
Definition Opcodes.h:2096
@ SMSG_BATTLEFIELD_STATUS_FAILED
Definition Opcodes.h:1183
@ SMSG_MOVE_UPDATE_COLLISION_HEIGHT
Definition Opcodes.h:1964
@ SMSG_AUTH_RESPONSE
Definition Opcodes.h:1174
@ SMSG_PRELOAD_CHILD_MAP
Definition Opcodes.h:2119
@ SMSG_PET_BATTLE_DEBUG_QUEUE_DUMP_RESPONSE
Definition Opcodes.h:2055
@ SMSG_ACCOUNT_TRANSMOG_SET_FAVORITES_UPDATE
Definition Opcodes.h:1108
@ SMSG_SET_CURRENCY
Definition Opcodes.h:2276
@ SMSG_PET_BATTLE_FINISHED
Definition Opcodes.h:2058
@ SMSG_CLEAR_COOLDOWNS
Definition Opcodes.h:1336
@ SMSG_HARDCORE_DEATH_ALERT
Definition Opcodes.h:1644
@ SMSG_SET_PLAY_HOVER_ANIM
Definition Opcodes.h:2295
@ SMSG_DEATH_RELEASE_LOC
Definition Opcodes.h:1406
@ SMSG_FAILED_PLAYER_CONDITION
Definition Opcodes.h:1451
@ SMSG_DUEL_COMPLETE
Definition Opcodes.h:1428
@ SMSG_INSTANCE_ABANDON_VOTE_RESPONSE
Definition Opcodes.h:1723
@ SMSG_BATTLEGROUND_PLAYER_JOINED
Definition Opcodes.h:1191
@ SMSG_ON_MONSTER_MOVE
Definition Opcodes.h:2023
@ SMSG_HOUSING_SVCS_GET_BNET_FRIEND_NEIGHBORHOODS_RESPONSE
Definition Opcodes.h:1691
@ SMSG_CALENDAR_MODERATOR_STATUS
Definition Opcodes.h:1260
@ SMSG_OPEN_ARTIFACT_FORGE
Definition Opcodes.h:2024
@ SMSG_GARRISON_COMPLETE_MISSION_RESULT
Definition Opcodes.h:1498
@ SMSG_WARFRONT_COMPLETE
Definition Opcodes.h:2457
@ SMSG_BATTLE_PAY_START_PURCHASE_RESPONSE
Definition Opcodes.h:1216
@ SMSG_CONTACT_LIST
Definition Opcodes.h:1370
@ SMSG_QUERY_GARRISON_PET_NAME_RESPONSE
Definition Opcodes.h:2138
@ SMSG_CALENDAR_INVITE_STATUS_ALERT
Definition Opcodes.h:1259
@ SMSG_CHROMIE_TIME_SELECT_EXPANSION_SUCCESS
Definition Opcodes.h:1331
@ SMSG_BATTLE_PAY_GET_DISTRIBUTION_LIST_RESPONSE
Definition Opcodes.h:1209
@ SMSG_RESET_COMPRESSION_CONTEXT
Definition Opcodes.h:2216
@ SMSG_HOUSING_SVCS_CANCEL_RELINQUISH_HOUSE_RESPONSE
Definition Opcodes.h:1686
@ SMSG_ARTIFACT_RESPEC_PROMPT
Definition Opcodes.h:1146
@ SMSG_START_TIMER
Definition Opcodes.h:2355
@ SMSG_UPDATE_TALENT_DATA
Definition Opcodes.h:2430
@ SMSG_FRIEND_STATUS
Definition Opcodes.h:1465
@ SMSG_MOVE_ENABLE_STRAFING
Definition Opcodes.h:1874
@ SMSG_CRAFTING_ORDER_NPC_REWARD_INFO
Definition Opcodes.h:1389
@ SMSG_CALENDAR_INVITE_REMOVED_ALERT
Definition Opcodes.h:1257
@ SMSG_GUILD_MEMBER_RECIPES
Definition Opcodes.h:1624
@ SMSG_QUEST_UPDATE_ADD_PVP_CREDIT
Definition Opcodes.h:2178
@ SMSG_WAIT_QUEUE_UPDATE
Definition Opcodes.h:2452
@ SMSG_SHOW_DELVES_DISPLAY_UI
Definition Opcodes.h:2305
@ SMSG_DISPLAY_WORLD_TEXT_ON_TARGET
Definition Opcodes.h:1424
@ SMSG_READY_CHECK_RESPONSE
Definition Opcodes.h:2193
@ SMSG_DESTRUCTIBLE_BUILDING_DAMAGE
Definition Opcodes.h:1413
@ SMSG_SPECIAL_MOUNT_ANIM
Definition Opcodes.h:2313
@ SMSG_CALENDAR_COMMUNITY_INVITE
Definition Opcodes.h:1249
@ SMSG_GARRISON_RECRUIT_FOLLOWER_RESULT
Definition Opcodes.h:1525
@ SMSG_RESUME_CAST_BAR
Definition Opcodes.h:2229
@ SMSG_SET_FACTION_AT_WAR
Definition Opcodes.h:2279
@ SMSG_BATTLE_PAY_MOUNT_DELIVERED
Definition Opcodes.h:1212
@ SMSG_SET_SHIPMENT_READY_RESPONSE
Definition Opcodes.h:2298
@ SMSG_MOVE_SET_ADV_FLYING_AIR_FRICTION
Definition Opcodes.h:1884
@ SMSG_TURN_IN_PETITION_RESULT
Definition Opcodes.h:2401
@ SMSG_WARGAME_REQUEST_OPPONENT_RESPONSE
Definition Opcodes.h:2458
@ SMSG_CHALLENGE_MODE_RESET
Definition Opcodes.h:1291
@ SMSG_MOVE_SET_LAND_WALK
Definition Opcodes.h:1910
@ SMSG_ITEM_ENCHANT_TIME_UPDATE
Definition Opcodes.h:1764
@ SMSG_CHANGE_REALM_TICKET_RESPONSE
Definition Opcodes.h:1296
@ SMSG_INSTANCE_ENCOUNTER_END
Definition Opcodes.h:1727
@ SMSG_CHAT_PLAYER_NOTFOUND
Definition Opcodes.h:1322
@ SMSG_NEIGHBORHOOD_INVITE_RESIDENT_RESPONSE
Definition Opcodes.h:2004
@ SMSG_NEW_TAXI_PATH
Definition Opcodes.h:2014
@ SMSG_BULK_PURCHASE_RESPONSE
Definition Opcodes.h:1240
@ SMSG_TRADE_UPDATED
Definition Opcodes.h:2387
@ SMSG_GARRISON_START_MISSION_RESULT
Definition Opcodes.h:1536
@ SMSG_MOVE_ADD_IMPULSE
Definition Opcodes.h:1855
@ SMSG_TRANSFER_ABORTED
Definition Opcodes.h:2391
@ SMSG_MOVE_DISABLE_JUMPING
Definition Opcodes.h:1864
@ SMSG_SCENE_OBJECT_PET_BATTLE_FINISHED
Definition Opcodes.h:2250
@ SMSG_CONTRIBUTION_LAST_UPDATE_RESPONSE
Definition Opcodes.h:1371
@ SMSG_PET_MODE
Definition Opcodes.h:2075
@ SMSG_GET_DECOR_REFUND_LIST_RESPONSE
Definition Opcodes.h:1554
@ SMSG_HOUSING_FIXTURE_SET_HOUSE_TYPE_RESPONSE
Definition Opcodes.h:1669
@ SMSG_CAN_REDEEM_TOKEN_FOR_BALANCE_RESPONSE
Definition Opcodes.h:1277
@ SMSG_GARRISON_CREATE_RESULT
Definition Opcodes.h:1499
@ SMSG_INSTANCE_SAVE_CREATED
Definition Opcodes.h:1749
@ SMSG_OVERRIDE_LIGHT
Definition Opcodes.h:2028
@ SMSG_LOAD_CUF_PROFILES
Definition Opcodes.h:1813
@ SMSG_REGIONWIDE_CHARACTER_MAIL_DATA
Definition Opcodes.h:2207
@ SMSG_RATED_PVP_INFO
Definition Opcodes.h:2191
@ SMSG_INSTANCE_ENCOUNTER_TIMELINE_SYNC
Definition Opcodes.h:1741
@ SMSG_RESTART_GLOBAL_COOLDOWN
Definition Opcodes.h:2226
@ SMSG_PLAY_ONE_SHOT_ANIM_KIT
Definition Opcodes.h:2109
@ SMSG_PET_LEARNED_SPELLS
Definition Opcodes.h:2074
@ SMSG_GARRISON_MISSION_BONUS_ROLL_RESULT
Definition Opcodes.h:1517
@ SMSG_SCENARIO_UI_UPDATE
Definition Opcodes.h:2246
@ SMSG_CHAT_CAN_LOCAL_WHISPER_TARGET_RESPONSE
Definition Opcodes.h:1315
@ SMSG_TALENTS_INVOLUNTARILY_RESET
Definition Opcodes.h:2370
@ SMSG_LEARN_TALENT_FAILED
Definition Opcodes.h:1775
@ SMSG_MOVE_SPLINE_SET_FEATHER_FALL
Definition Opcodes.h:1928
@ SMSG_POWER_UPDATE
Definition Opcodes.h:2118
@ SMSG_CHARACTER_OBJECT_TEST_RESPONSE
Definition Opcodes.h:1304
@ SMSG_MYTHIC_PLUS_CURRENT_AFFIXES
Definition Opcodes.h:1984
@ SMSG_ADDON_LIST_REQUEST
Definition Opcodes.h:1118
@ SMSG_ON_CANCEL_EXPECTED_RIDE_VEHICLE_AURA
Definition Opcodes.h:2022
@ SMSG_HOUSING_DECOR_DELETE_FROM_STORAGE_RESPONSE
Definition Opcodes.h:1652
@ SMSG_BATTLEGROUND_POINTS
Definition Opcodes.h:1194
@ SMSG_CHALLENGE_MODE_UPDATE_DEATH_COUNT
Definition Opcodes.h:1294
@ SMSG_GUILD_RENAME_REQUESTED_RESULT
Definition Opcodes.h:1637
@ SMSG_QUEST_CONFIRM_ACCEPT
Definition Opcodes.h:2155
@ SMSG_SCRIPT_CAST
Definition Opcodes.h:2256
@ SMSG_PLAYED_TIME
Definition Opcodes.h:2083
@ SMSG_SET_INSTANCE_LEAVER
Definition Opcodes.h:2285
@ SMSG_MOVE_TELEPORT
Definition Opcodes.h:1950
@ SMSG_VOICE_CHANNEL_INFO_RESPONSE
Definition Opcodes.h:2443
@ SMSG_QUEST_LOG_FULL
Definition Opcodes.h:2167
@ SMSG_WOW_LABS_SET_PREDICTION_CIRCLE
Definition Opcodes.h:2474
@ SMSG_SPECTATE_NEXT
Definition Opcodes.h:2315
@ SMSG_AVAILABLE_HOTFIXES
Definition Opcodes.h:1175
@ SMSG_PET_GUIDS
Definition Opcodes.h:2073
@ SMSG_PLAY_SPEAKERBOT_SOUND
Definition Opcodes.h:2113
@ SMSG_AUCTION_FAVORITE_LIST
Definition Opcodes.h:1159
@ SMSG_UNLOAD_CHILD_MAP
Definition Opcodes.h:2409
@ SMSG_ENUM_VAS_PURCHASE_STATES_RESPONSE
Definition Opcodes.h:1443
@ SMSG_HOTFIX_MESSAGE
Definition Opcodes.h:1648
@ SMSG_MIRROR_IMAGE_CREATURE_DATA
Definition Opcodes.h:1848
@ SMSG_TRANSMOG_OUTFIT_SITUATIONS_UPDATED
Definition Opcodes.h:2395
@ SMSG_MOVE_SPLINE_SET_WALK_MODE
Definition Opcodes.h:1942
@ SMSG_QUEST_SESSION_RESULT
Definition Opcodes.h:2175
@ SMSG_INITIATIVE_TASK_COMPLETE
Definition Opcodes.h:1718
@ SMSG_EQUIPMENT_SET_ID
Definition Opcodes.h:1445
@ SMSG_QUERY_PLAYER_NAMES_RESPONSE
Definition Opcodes.h:2147
@ SMSG_DUEL_REQUESTED
Definition Opcodes.h:1432
@ SMSG_GARRISON_CLEAR_COLLECTION
Definition Opcodes.h:1492
@ SMSG_RESUME_TOKEN
Definition Opcodes.h:2231
@ SMSG_STOP_MIRROR_TIMER
Definition Opcodes.h:2357
@ SMSG_GROUP_ACTION_THROTTLED
Definition Opcodes.h:1579
@ SMSG_INSTANCE_ENCOUNTER_EVENT_CAST_UPDATE
Definition Opcodes.h:1731
@ SMSG_MOUNT_RESULT
Definition Opcodes.h:1853
@ SMSG_CONVERT_ITEMS_TO_CURRENCY_VALUE
Definition Opcodes.h:1373
@ SMSG_HOUSING_ROOM_REMOVE_RESPONSE
Definition Opcodes.h:1679
@ SMSG_CAPTURE_POINT_REMOVED
Definition Opcodes.h:1278
@ SMSG_MOVE_SET_FEATHER_FALL
Definition Opcodes.h:1904
@ SMSG_FISH_NOT_HOOKED
Definition Opcodes.h:1457
@ SMSG_MOVE_ENABLE_JUMPING
Definition Opcodes.h:1873
@ SMSG_MIRROR_IMAGE_COMPONENTED_DATA
Definition Opcodes.h:1847
@ SMSG_NPC_INTERACTION_OPEN_RESULT
Definition Opcodes.h:2020
@ SMSG_LIVE_REGION_GET_ACCOUNT_CHARACTER_LIST_RESULT
Definition Opcodes.h:1811
@ SMSG_CALENDAR_INVITE_NOTES
Definition Opcodes.h:1254
@ SMSG_GUILD_EVENT_PLAYER_LEFT
Definition Opcodes.h:1606
@ SMSG_HOUSING_SVCS_RELINQUISH_HOUSE_RESPONSE
Definition Opcodes.h:1709
@ SMSG_GET_INITIATIVE_REWARDS_RESULT
Definition Opcodes.h:1557
@ SMSG_WEEKLY_REWARD_CLAIM_RESULT
Definition Opcodes.h:2463
@ SMSG_TAXI_NODE_STATUS
Definition Opcodes.h:2371
@ SMSG_QUEST_PUSH_RESULT
Definition Opcodes.h:2171
@ SMSG_GUILD_RESET
Definition Opcodes.h:1640
@ SMSG_DISPLAY_TOAST
Definition Opcodes.h:1422
@ SMSG_TRANSMOG_OUTFIT_NEW_ENTRY_ADDED
Definition Opcodes.h:2394
@ SMSG_ACTIVATE_ESSENCE_FAILED
Definition Opcodes.h:1113
@ SMSG_QUEST_SESSION_INFO_RESPONSE
Definition Opcodes.h:2172
@ SMSG_HOUSING_FIXTURE_CREATE_BASIC_HOUSE_RESPONSE
Definition Opcodes.h:1662
@ SMSG_GARRISON_RESET_TALENT_TREE_SOCKET_DATA
Definition Opcodes.h:1535
@ SMSG_GUILD_BANK_LOG_QUERY_RESULTS
Definition Opcodes.h:1589
@ SMSG_CLEAR_TREASURE_PICKER_CACHE
Definition Opcodes.h:1341
@ SMSG_MOVE_APPLY_INERTIA
Definition Opcodes.h:1856
@ SMSG_SPELL_EMPOWER_SET_STAGE
Definition Opcodes.h:2327
@ SMSG_CLEAR_INITIATIVE_TASK_CRITERIA_PROGRESS
Definition Opcodes.h:1337
@ SMSG_FEATURE_SYSTEM_STATUS
Definition Opcodes.h:1453
@ SMSG_ACCOUNT_HOUSE_TYPE_COLLECTION_UPDATE
Definition Opcodes.h:1095
constexpr FormattedOpcodeName< OpcodeClient > GetOpcodeNameForLogging(OpcodeClient opcode)
Lookup opcode name for human understandable logging.
Definition Opcodes.h:2603
SessionStatus
Player state.
Definition Opcodes.h:2545
@ STATUS_IGNORED
Definition Opcodes.h:2552
@ STATUS_LOGGEDIN
Definition Opcodes.h:2547
@ STATUS_LOGGEDIN_OR_RECENTLY_LOGGOUT
Definition Opcodes.h:2549
@ STATUS_TRANSFER
Definition Opcodes.h:2548
@ STATUS_NEVER
Definition Opcodes.h:2550
@ STATUS_AUTHED
Definition Opcodes.h:2546
@ STATUS_UNHANDLED
Definition Opcodes.h:2551
OpcodeTable opcodeTable
Definition Opcodes.cpp:37
constexpr std::ptrdiff_t GetOpcodeArrayIndex(OpcodeClient opcode)
Definition Opcodes.h:1054
PacketProcessing
Definition Opcodes.h:2556
@ PROCESS_INPLACE
Definition Opcodes.h:2557
@ PROCESS_THREADSAFE
Definition Opcodes.h:2559
@ PROCESS_THREADUNSAFE
Definition Opcodes.h:2558
OpcodeClient
Definition Opcodes.h:38
@ CMSG_TIME_SYNC_RESPONSE
Definition Opcodes.h:989
@ CMSG_PET_CAST_SPELL
Definition Opcodes.h:749
@ CMSG_HOUSING_SVCS_UPDATE_HOUSE_SETTINGS
Definition Opcodes.h:504
@ CMSG_HOUSING_SVCS_PLAYER_VIEW_HOUSES_BY_BNET_ACCOUNT
Definition Opcodes.h:498
@ CMSG_MERGE_ITEM_WITH_GUILD_BANK_ITEM
Definition Opcodes.h:579
@ CMSG_GET_UNDELETE_CHARACTER_COOLDOWN_STATUS
Definition Opcodes.h:398
@ CMSG_REPLACE_TROPHY
Definition Opcodes.h:825
@ CMSG_LOOT_ITEM
Definition Opcodes.h:561
@ CMSG_QUERY_PAGE_TEXT
Definition Opcodes.h:770
@ CMSG_SET_PET_SPECIALIZATION
Definition Opcodes.h:924
@ CMSG_TURN_IN_PETITION
Definition Opcodes.h:1007
@ CMSG_LFG_LIST_INVITE_RESPONSE
Definition Opcodes.h:531
@ CMSG_CALENDAR_ADD_EVENT
Definition Opcodes.h:149
@ CMSG_ACCEPT_TRADE
Definition Opcodes.h:42
@ CMSG_USE_TOY
Definition Opcodes.h:1030
@ CMSG_AUCTION_SELL_ITEM
Definition Opcodes.h:84
@ CMSG_ADD_BATTLENET_FRIEND
Definition Opcodes.h:52
@ CMSG_COMMENTATOR_EXIT_INSTANCE
Definition Opcodes.h:269
@ CMSG_HOUSE_INTERIOR_LEAVE_HOUSE
Definition Opcodes.h:458
@ CMSG_HOUSING_GET_CURRENT_HOUSE_INFO
Definition Opcodes.h:474
@ CMSG_BATTLE_PET_REQUEST_JOURNAL_LOCK
Definition Opcodes.h:129
@ CMSG_ATTACK_STOP
Definition Opcodes.h:66
@ CMSG_HOUSING_ROOM_SET_LAYOUT_EDIT_MODE
Definition Opcodes.h:488
@ CMSG_BATTLE_PAY_START_PURCHASE
Definition Opcodes.h:123
@ CMSG_CHAT_SEND_CAUTIONARY_CHAT_MESSAGE
Definition Opcodes.h:233
@ CMSG_MOVE_APPLY_INERTIA_ACK
Definition Opcodes.h:587
@ CMSG_PERFORM_ITEM_INTERACTION
Definition Opcodes.h:723
@ CMSG_HOUSING_ROOM_SET_DOOR_TYPE
Definition Opcodes.h:487
@ CMSG_SEND_CONTACT_LIST
Definition Opcodes.h:889
@ CMSG_QUEST_SESSION_REQUEST_STOP
Definition Opcodes.h:801
@ CMSG_SUBSCRIPTION_INTERSTITIAL_RESPONSE
Definition Opcodes.h:971
@ CMSG_CONNECT_TO_FAILED
Definition Opcodes.h:284
@ CMSG_GARRISON_LEARN_TALENT
Definition Opcodes.h:362
@ CMSG_CALENDAR_RSVP
Definition Opcodes.h:161
@ CMSG_ACTIVATE_SOULBIND
Definition Opcodes.h:48
@ CMSG_QUERY_REALM_NAME
Definition Opcodes.h:779
@ CMSG_COMMENTATOR_GET_PLAYER_INFO
Definition Opcodes.h:272
@ CMSG_CHAT_CHANNEL_PASSWORD
Definition Opcodes.h:205
@ CMSG_CHAT_REPORT_FILTERED
Definition Opcodes.h:230
@ CMSG_HOUSING_SVCS_TELEPORT_TO_PLOT
Definition Opcodes.h:503
@ CMSG_CHAT_CHANNEL_UNBAN
Definition Opcodes.h:208
@ CMSG_ENUM_CHARACTERS
Definition Opcodes.h:345
@ CMSG_MOVE_SET_ADV_FLY
Definition Opcodes.h:630
@ CMSG_CHAT_MESSAGE_YELL
Definition Opcodes.h:228
@ CMSG_AZERITE_ESSENCE_ACTIVATE_ESSENCE
Definition Opcodes.h:99
@ CMSG_FAR_SIGHT
Definition Opcodes.h:347
@ CMSG_CLUB_FINDER_POST
Definition Opcodes.h:257
@ CMSG_HOUSING_ROOM_SET_COMPONENT_THEME
Definition Opcodes.h:486
@ CMSG_EJECT_PASSENGER
Definition Opcodes.h:338
@ CMSG_HOUSING_DECOR_PLACE
Definition Opcodes.h:462
@ CMSG_LFG_LOREWALKING_UPDATE_REQUEST
Definition Opcodes.h:536
@ CMSG_QUERY_GAME_OBJECT
Definition Opcodes.h:763
@ CMSG_LOGOUT_REQUEST
Definition Opcodes.h:558
@ CMSG_CHAT_MESSAGE_WHISPER
Definition Opcodes.h:227
@ CMSG_SET_WATCHED_FACTION
Definition Opcodes.h:943
@ CMSG_AUCTIONABLE_TOKEN_SELL_AT_MARKET_PRICE
Definition Opcodes.h:69
@ CMSG_MAIL_GET_LIST
Definition Opcodes.h:570
@ CMSG_PET_RENAME
Definition Opcodes.h:750
@ CMSG_MOUNT_CLEAR_FANFARE
Definition Opcodes.h:583
@ CMSG_HIDE_QUEST_CHOICE
Definition Opcodes.h:454
@ CMSG_CRAFTING_ORDER_CANCEL
Definition Opcodes.h:300
@ CMSG_GUILD_OFFICER_REMOVE_MEMBER
Definition Opcodes.h:433
@ CMSG_GUILD_SET_RANK_PERMISSIONS
Definition Opcodes.h:449
@ CMSG_REQUEST_GUILD_PARTY_STATE
Definition Opcodes.h:840
@ CMSG_NEIGHBORHOOD_PLAYER_GET_INVITE
Definition Opcodes.h:703
@ CMSG_NEIGHBORHOOD_INITIATIVE_SERVICE_STATUS_CHECK
Definition Opcodes.h:697
@ CMSG_REQUEST_PARTY_JOIN_UPDATES
Definition Opcodes.h:848
@ CMSG_QUEST_GIVER_CLOSE_QUEST
Definition Opcodes.h:789
@ CMSG_LOBBY_MATCHMAKER_CREATE_CHARACTER
Definition Opcodes.h:546
@ CMSG_REPAIR_ITEM
Definition Opcodes.h:824
@ CMSG_BATTLENET_REQUEST
Definition Opcodes.h:113
@ CMSG_GET_MIRROR_IMAGE_DATA
Definition Opcodes.h:392
@ CMSG_NEIGHBORHOOD_REMOVE_SECONDARY_OWNER
Definition Opcodes.h:704
@ CMSG_CHAT_CHANNEL_SILENCE_ALL
Definition Opcodes.h:207
@ CMSG_DF_LEAVE
Definition Opcodes.h:327
@ CMSG_ACCOUNT_BANK_WITHDRAW_MONEY
Definition Opcodes.h:45
@ CMSG_CHAT_ADDON_MESSAGE_TARGETED
Definition Opcodes.h:193
@ CMSG_GARRISON_SET_FOLLOWER_FAVORITE
Definition Opcodes.h:373
@ CMSG_CHAT_MESSAGE_EMOTE
Definition Opcodes.h:219
@ CMSG_SET_SHEATHED
Definition Opcodes.h:933
@ CMSG_AZERITE_ESSENCE_UNLOCK_MILESTONE
Definition Opcodes.h:100
@ CMSG_MYTHIC_PLUS_REQUEST_MAP_STATS
Definition Opcodes.h:684
@ CMSG_GM_TICKET_GET_SYSTEM_STATUS
Definition Opcodes.h:403
@ CMSG_CRAFTING_ORDER_FULFILL
Definition Opcodes.h:303
@ CMSG_CRAFTING_ORDER_CLAIM
Definition Opcodes.h:301
@ CMSG_REQUEST_VEHICLE_SWITCH_SEAT
Definition Opcodes.h:865
@ CMSG_TRAITS_COMMIT_CONFIG
Definition Opcodes.h:1000
@ CMSG_GUILD_SHIFT_RANK
Definition Opcodes.h:450
@ CMSG_SEND_MAIL
Definition Opcodes.h:890
@ CMSG_PET_STOP_ATTACK
Definition Opcodes.h:753
@ CMSG_NEIGHBORHOOD_CHARTER_FINALIZE
Definition Opcodes.h:691
@ CMSG_CHANGE_BAG_SLOT_FLAG
Definition Opcodes.h:180
@ CMSG_HOUSING_FIXTURE_DELETE_FIXTURE
Definition Opcodes.h:469
@ CMSG_BATTLE_PAY_REQUEST_PRICE_INFO
Definition Opcodes.h:122
@ CMSG_PET_ACTION
Definition Opcodes.h:738
@ CMSG_QUERY_QUEST_COMPLETION_NPCS
Definition Opcodes.h:776
@ CMSG_ACCOUNT_BANK_DEPOSIT_MONEY
Definition Opcodes.h:44
@ CMSG_HOUSING_DECOR_LOCK
Definition Opcodes.h:460
@ CMSG_HOUSING_ROOM_APPLY_COMPONENT_MATERIALS
Definition Opcodes.h:481
@ CMSG_LIVE_REGION_ACCOUNT_RESTORE
Definition Opcodes.h:538
@ CMSG_CLUB_FINDER_REQUEST_MEMBERSHIP_TO_CLUB
Definition Opcodes.h:260
@ CMSG_REPOP_REQUEST
Definition Opcodes.h:826
@ CMSG_AUCTION_LIST_ITEMS_BY_BUCKET_KEY
Definition Opcodes.h:77
@ CMSG_UNACCEPT_TRADE
Definition Opcodes.h:1010
@ CMSG_TOTEM_DESTROYED
Definition Opcodes.h:994
@ CMSG_GUILD_PERMISSIONS_QUERY
Definition Opcodes.h:434
@ CMSG_LOW_LEVEL_RAID2
Definition Opcodes.h:567
@ CMSG_GARRISON_SET_RECRUITMENT_PREFERENCES
Definition Opcodes.h:375
@ CMSG_GET_ALL_LICENSED_DECOR_QUANTITIES
Definition Opcodes.h:382
@ CMSG_AUTO_GUILD_BANK_ITEM
Definition Opcodes.h:94
@ CMSG_PET_ABANDON
Definition Opcodes.h:736
@ CMSG_BUY_ITEM
Definition Opcodes.h:147
@ CMSG_COMPLETE_MOVIE
Definition Opcodes.h:280
@ CMSG_LIVE_REGION_CHARACTER_COPY
Definition Opcodes.h:539
@ CMSG_UPDATE_CRAFTING_NPC_RECIPES
Definition Opcodes.h:1018
@ CMSG_PVP_LOG_DATA
Definition Opcodes.h:757
@ CMSG_GARRISON_SET_BUILDING_ACTIVE
Definition Opcodes.h:372
@ CMSG_CONVERSATION_CINEMATIC_READY
Definition Opcodes.h:294
@ CMSG_CHAT_MESSAGE_CHANNEL
Definition Opcodes.h:217
@ CMSG_CANCEL_AURA
Definition Opcodes.h:164
@ CMSG_AUTO_EQUIP_ITEM
Definition Opcodes.h:92
@ CMSG_SET_FACTION_AT_WAR
Definition Opcodes.h:913
@ CMSG_MOVE_START_ASCEND
Definition Opcodes.h:662
@ CMSG_QUERY_GARRISON_PET_NAME
Definition Opcodes.h:764
@ CMSG_QUERY_SELECTED_WOW_LABS_AREA
Definition Opcodes.h:781
@ CMSG_MOVE_GRAVITY_ENABLE_ACK
Definition Opcodes.h:617
@ CMSG_LFG_LIST_SEARCH
Definition Opcodes.h:534
@ CMSG_NEIGHBORHOOD_OFFER_OWNERSHIP
Definition Opcodes.h:700
@ CMSG_MOVE_DISABLE_JUMPING_ACK
Definition Opcodes.h:593
@ CMSG_REQUEST_REALM_GUILD_MASTER_INFO
Definition Opcodes.h:855
@ CMSG_UPDATE_MISSILE_TRAJECTORY
Definition Opcodes.h:1020
@ CMSG_QUEST_CONFIRM_ACCEPT
Definition Opcodes.h:785
@ CMSG_HOUSING_HOUSE_STATUS
Definition Opcodes.h:476
@ CMSG_LOBBY_MATCHMAKER_LEAVE_PARTY
Definition Opcodes.h:548
@ CMSG_AUTH_CONTINUED_SESSION
Definition Opcodes.h:86
@ CMSG_MOUNT_SPECIAL_ANIM
Definition Opcodes.h:585
@ CMSG_DELETE_EQUIPMENT_SET
Definition Opcodes.h:317
@ CMSG_MOVE_START_BACKWARD
Definition Opcodes.h:663
@ CMSG_REGISTER_FAST_LOGIN
Definition Opcodes.h:820
@ CMSG_LOADING_SCREEN_NOTIFY
Definition Opcodes.h:542
@ CMSG_CHANGE_MONUMENT_APPEARANCE
Definition Opcodes.h:182
@ CMSG_LOOT_RELEASE
Definition Opcodes.h:563
@ CMSG_CLASS_TALENTS_SET_USES_SHARED_ACTION_BARS
Definition Opcodes.h:246
@ CMSG_CHAT_SEND_CAUTIONARY_CHANNEL_MESSAGE
Definition Opcodes.h:232
@ CMSG_TOGGLE_PVP
Definition Opcodes.h:993
@ CMSG_LFG_LIST_CANCEL_APPLICATION
Definition Opcodes.h:527
@ CMSG_LOBBY_MATCHMAKER_ACCEPT_PARTY_INVITE
Definition Opcodes.h:545
@ CMSG_CLASS_TALENTS_NOTIFY_VALIDATION_FAILED
Definition Opcodes.h:242
@ CMSG_KEYBOUND_OVERRIDE
Definition Opcodes.h:519
@ CMSG_SET_FACTION_INACTIVE
Definition Opcodes.h:914
@ CMSG_MOVE_INERTIA_DISABLE_ACK
Definition Opcodes.h:621
@ CMSG_LIST_INVENTORY
Definition Opcodes.h:537
@ CMSG_RECLAIM_CORPSE
Definition Opcodes.h:818
@ CMSG_SPECTATE_CHANGE
Definition Opcodes.h:953
@ CMSG_GUILD_BANK_DEPOSIT_MONEY
Definition Opcodes.h:411
@ CMSG_SUBMIT_USER_FEEDBACK
Definition Opcodes.h:970
@ CMSG_GUILD_LEAVE
Definition Opcodes.h:431
@ CMSG_GUILD_SET_ACHIEVEMENT_TRACKING
Definition Opcodes.h:445
@ CMSG_TOGGLE_DIFFICULTY
Definition Opcodes.h:992
@ CMSG_GUILD_REQUEST_RENAME_NAME_CHECK
Definition Opcodes.h:442
@ CMSG_ARTIFACT_SET_APPEARANCE
Definition Opcodes.h:64
@ CMSG_GARRISON_ASSIGN_FOLLOWER_TO_BUILDING
Definition Opcodes.h:353
@ CMSG_LFG_LIST_GET_STATUS
Definition Opcodes.h:529
@ CMSG_CHANGE_SUB_GROUP
Definition Opcodes.h:184
@ CMSG_MOVE_SET_CAN_FLY_ACK
Definition Opcodes.h:648
@ CMSG_CLOSE_TRAIT_SYSTEM_INTERACTION
Definition Opcodes.h:254
@ CMSG_PET_BATTLE_REQUEST_UPDATE
Definition Opcodes.h:745
@ CMSG_CHAT_MESSAGE_GUILD
Definition Opcodes.h:220
@ CMSG_CONTRIBUTION_CONTRIBUTE
Definition Opcodes.h:292
@ CMSG_SET_DIFFICULTY_ID
Definition Opcodes.h:908
@ CMSG_SET_BACKPACK_AUTOSORT_DISABLED
Definition Opcodes.h:903
@ CMSG_RAF_RECRUIT_PRESENCE_SUBSCRIBE
Definition Opcodes.h:811
@ CMSG_CALENDAR_GET_EVENT
Definition Opcodes.h:155
@ CMSG_GUILD_SET_GUILD_MASTER
Definition Opcodes.h:447
@ CMSG_DF_GET_SYSTEM_INFO
Definition Opcodes.h:325
@ CMSG_REQUEST_CURRENCY_DATA_FOR_ACCOUNT_CHARACTERS
Definition Opcodes.h:838
@ CMSG_TRANSMOGRIFY_ITEMS
Definition Opcodes.h:1049
@ CMSG_CONVERT_RAID
Definition Opcodes.h:297
@ CMSG_GUILD_BANK_WITHDRAW_MONEY
Definition Opcodes.h:418
@ CMSG_SET_ALLOW_RECENT_ALLIES_SEE_LOCATION
Definition Opcodes.h:901
@ CMSG_REPORT_STUCK_IN_COMBAT
Definition Opcodes.h:829
@ CMSG_LOW_LEVEL_RAID1
Definition Opcodes.h:566
@ CMSG_SET_CONTACT_NOTES
Definition Opcodes.h:906
@ CMSG_MOVE_FORCE_SWIM_SPEED_CHANGE_ACK
Definition Opcodes.h:612
@ CMSG_BUY_BACK_ITEM
Definition Opcodes.h:146
@ CMSG_SORT_ACCOUNT_BANK_BAGS
Definition Opcodes.h:949
@ CMSG_CRAFTING_ORDER_REJECT
Definition Opcodes.h:307
@ CMSG_SET_TRADE_GOLD
Definition Opcodes.h:939
@ CMSG_DF_BOOT_PLAYER_VOTE
Definition Opcodes.h:322
@ CMSG_CALENDAR_REMOVE_INVITE
Definition Opcodes.h:160
@ CMSG_CHROMIE_TIME_SELECT_EXPANSION
Definition Opcodes.h:238
@ CMSG_GENERATE_RANDOM_CHARACTER_NAME
Definition Opcodes.h:379
@ CMSG_REQUEST_CHARACTER_GUILD_FOLLOW_INFO
Definition Opcodes.h:834
@ CMSG_BATTLEMASTER_JOIN
Definition Opcodes.h:106
@ CMSG_BLACK_MARKET_REQUEST_ITEMS
Definition Opcodes.h:139
@ CMSG_SORT_BAGS
Definition Opcodes.h:950
@ CMSG_NEIGHBORHOOD_MOVE_HOUSE
Definition Opcodes.h:699
@ CMSG_GUILD_DELETE_RANK
Definition Opcodes.h:423
@ CMSG_SET_ACTION_BAR_TOGGLES
Definition Opcodes.h:897
@ CMSG_CHAT_LEAVE_CHANNEL
Definition Opcodes.h:213
@ CMSG_NEIGHBORHOOD_GET_INVITES
Definition Opcodes.h:695
@ CMSG_CALENDAR_EVENT_SIGN_UP
Definition Opcodes.h:153
@ CMSG_HOUSING_PHOTO_SHARING_CLEAR_AUTHORIZATION
Definition Opcodes.h:477
@ CMSG_MOVE_APPLY_MOVEMENT_FORCE_ACK
Definition Opcodes.h:588
@ CMSG_NPC_CRAFTING_ORDER_REQUEST
Definition Opcodes.h:709
@ CMSG_SAVE_EQUIPMENT_SET
Definition Opcodes.h:876
@ CMSG_MOVE_SET_ADV_FLYING_AIR_FRICTION_ACK
Definition Opcodes.h:632
@ CMSG_USE_ITEM
Definition Opcodes.h:1029
@ CMSG_UPDATE_SPELL_VISUAL
Definition Opcodes.h:1022
@ CMSG_HOUSING_SVCS_GET_PLAYER_HOUSES_INFO
Definition Opcodes.h:494
@ CMSG_QUEST_POI_QUERY
Definition Opcodes.h:797
@ CMSG_BATTLE_PAY_CONFIRM_PURCHASE_RESPONSE
Definition Opcodes.h:116
@ CMSG_READY_CHECK_RESPONSE
Definition Opcodes.h:814
@ CMSG_BATTLE_PET_REQUEST_JOURNAL
Definition Opcodes.h:128
@ CMSG_CONVERSATION_LINE_STARTED
Definition Opcodes.h:295
@ CMSG_MOVE_STOP_SWIM
Definition Opcodes.h:678
@ CMSG_SIGN_PETITION
Definition Opcodes.h:945
@ CMSG_QUERY_PLAYER_NAMES_FOR_COMMUNITY
Definition Opcodes.h:774
@ CMSG_GUILD_REQUEST_RENAME_REFUND
Definition Opcodes.h:443
@ CMSG_PERKS_PROGRAM_GET_RECENT_PURCHASES
Definition Opcodes.h:724
@ CMSG_TRANSMOG_OUTFIT_NEW
Definition Opcodes.h:1003
@ CMSG_WORLD_LOOT_OBJECT_CLICK
Definition Opcodes.h:1041
@ CMSG_REQUEST_WEEKLY_REWARDS
Definition Opcodes.h:866
@ CMSG_OPEN_ITEM
Definition Opcodes.h:714
@ CMSG_QUERY_COUNTDOWN_TIMER
Definition Opcodes.h:761
@ CMSG_HOUSING_SVCS_RELINQUISH_HOUSE
Definition Opcodes.h:501
@ CMSG_LIVE_REGION_GET_ACCOUNT_CHARACTER_LIST
Definition Opcodes.h:540
@ CMSG_NEIGHBORHOOD_UPDATE_NAME
Definition Opcodes.h:706
@ CMSG_READ_ITEM
Definition Opcodes.h:815
@ CMSG_SOCKET_GEMS
Definition Opcodes.h:948
@ CMSG_QUERY_CREATURE
Definition Opcodes.h:762
@ CMSG_COMMERCE_TOKEN_GET_COUNT
Definition Opcodes.h:275
@ CMSG_CANCEL_GROWTH_AURA
Definition Opcodes.h:168
@ CMSG_SET_TITLE
Definition Opcodes.h:937
@ CMSG_QUEST_SESSION_BEGIN_RESPONSE
Definition Opcodes.h:799
@ CMSG_AUCTIONABLE_TOKEN_SELL
Definition Opcodes.h:68
@ CMSG_MOVE_START_SWIM
Definition Opcodes.h:671
@ CMSG_NEIGHBORHOOD_CHARTER_OPEN_CONFIRMATION_UI
Definition Opcodes.h:692
@ CMSG_MOVE_DISMISS_VEHICLE
Definition Opcodes.h:595
@ CMSG_CALENDAR_INVITE
Definition Opcodes.h:157
@ CMSG_DB_QUERY_BULK
Definition Opcodes.h:313
@ CMSG_OPEN_MISSION_NPC
Definition Opcodes.h:715
@ CMSG_MOVE_SET_ADV_FLYING_SURFACE_FRICTION_ACK
Definition Opcodes.h:642
@ CMSG_SUPPORT_TICKET_SUBMIT_COMPLAINT
Definition Opcodes.h:973
@ CMSG_MOVE_HEARTBEAT
Definition Opcodes.h:619
@ CMSG_GARRISON_ADD_FOLLOWER_HEALTH
Definition Opcodes.h:352
@ CMSG_MOVE_FORCE_GRAVITY_MODIFIER_CHANGE_ACK
Definition Opcodes.h:606
@ CMSG_MOVE_REMOVE_MOVEMENT_FORCE_ACK
Definition Opcodes.h:629
@ CMSG_BATTLEMASTER_JOIN_SKIRMISH
Definition Opcodes.h:111
@ CMSG_CRAFTING_ORDER_CREATE
Definition Opcodes.h:302
@ CMSG_QUERY_BATTLE_PET_NAME
Definition Opcodes.h:758
@ CMSG_SWAP_ITEM_WITH_GUILD_BANK_ITEM
Definition Opcodes.h:980
@ CMSG_TIME_ADJUSTMENT_RESPONSE
Definition Opcodes.h:988
@ CMSG_OBJECT_UPDATE_RESCUED
Definition Opcodes.h:711
@ CMSG_TOY_CLEAR_FANFARE
Definition Opcodes.h:995
@ CMSG_LOGOUT_INSTANT
Definition Opcodes.h:556
@ CMSG_SAVE_ACCOUNT_DATA_EXPORT
Definition Opcodes.h:874
@ CMSG_AUTO_DEPOSIT_CHARACTER_BANK
Definition Opcodes.h:91
@ CMSG_MOVE_SET_ADV_FLYING_LAUNCH_SPEED_COEFFICIENT_ACK
Definition Opcodes.h:636
@ CMSG_REFRESH_ENTITLEMENTS_ON_ORDER_COMPLETE
Definition Opcodes.h:819
@ CMSG_PET_BATTLE_REPLACE_FRONT_PET
Definition Opcodes.h:743
@ CMSG_START_CHALLENGE_MODE
Definition Opcodes.h:965
@ CMSG_CHAT_MESSAGE_INSTANCE_CHAT
Definition Opcodes.h:221
@ CMSG_COLLECTION_ITEM_SET_FAVORITE
Definition Opcodes.h:266
@ CMSG_TUTORIAL
Definition Opcodes.h:1008
@ CMSG_DUEL_RESPONSE
Definition Opcodes.h:337
@ CMSG_SET_FACTION_NOT_AT_WAR
Definition Opcodes.h:915
@ CMSG_GET_TROPHY_LIST
Definition Opcodes.h:397
@ CMSG_ENTER_ENCRYPTED_MODE_ACK
Definition Opcodes.h:344
@ CMSG_GET_PVP_OPTIONS_ENABLED
Definition Opcodes.h:393
@ CMSG_GARRISON_GET_MISSION_REWARD
Definition Opcodes.h:361
@ CMSG_REQUEST_BATTLEFIELD_STATUS
Definition Opcodes.h:832
@ CMSG_QUICK_JOIN_REQUEST_INVITE_WITH_CONFIRMATION
Definition Opcodes.h:805
@ CMSG_QUICK_JOIN_RESPOND_TO_INVITE
Definition Opcodes.h:806
@ CMSG_HOUSING_RESET_KIOSK_MODE
Definition Opcodes.h:479
@ CMSG_MOVE_TIME_SKIPPED
Definition Opcodes.h:681
@ CMSG_ACCOUNT_STORE_BEGIN_PURCHASE_OR_REFUND
Definition Opcodes.h:47
@ CMSG_MOVE_FORCE_TURN_RATE_CHANGE_ACK
Definition Opcodes.h:613
@ CMSG_MOVE_SET_ADV_FLYING_DOUBLE_JUMP_VEL_MOD_ACK
Definition Opcodes.h:634
@ CMSG_TRANSMOG_OUTFIT_UPDATE_SITUATIONS
Definition Opcodes.h:1005
@ CMSG_QUEST_GIVER_QUERY_QUEST
Definition Opcodes.h:792
@ CMSG_DF_READY_CHECK_RESPONSE
Definition Opcodes.h:329
@ CMSG_QUERY_TREASURE_PICKER
Definition Opcodes.h:783
@ CMSG_MAIL_TAKE_MONEY
Definition Opcodes.h:574
@ CMSG_SEND_TEXT_EMOTE
Definition Opcodes.h:893
@ CMSG_COMPLETE_CINEMATIC
Definition Opcodes.h:279
@ CMSG_QUEST_GIVER_REQUEST_REWARD
Definition Opcodes.h:793
@ CMSG_CALENDAR_GET_NUM_PENDING
Definition Opcodes.h:156
@ CMSG_CLASS_TALENTS_RENAME_CONFIG
Definition Opcodes.h:243
@ CMSG_CRAFTING_ORDER_LIST_CRAFTER_ORDERS
Definition Opcodes.h:305
@ CMSG_SELF_RES
Definition Opcodes.h:885
@ CMSG_CLEAR_NEW_APPEARANCE
Definition Opcodes.h:247
@ CMSG_ACTIVATE_TAXI
Definition Opcodes.h:49
@ CMSG_REQUEST_VEHICLE_NEXT_SEAT
Definition Opcodes.h:863
@ CMSG_CRAFTING_ORDER_REPORT_PLAYER
Definition Opcodes.h:309
@ CMSG_SERVER_VALIDATION_SIGNATURE_REQUEST
Definition Opcodes.h:895
@ CMSG_MOUNT_SET_FAVORITE
Definition Opcodes.h:584
@ CMSG_GARRISON_GET_CLASS_SPEC_CATEGORY_INFO
Definition Opcodes.h:359
@ CMSG_PET_BATTLE_FINAL_NOTIFY
Definition Opcodes.h:739
@ CMSG_CAN_REDEEM_TOKEN_FOR_BALANCE
Definition Opcodes.h:176
@ CMSG_QUICK_JOIN_AUTO_ACCEPT_REQUESTS
Definition Opcodes.h:803
@ CMSG_MOVE_START_TURN_RIGHT
Definition Opcodes.h:673
@ CMSG_HOUSING_FIXTURE_SET_HOUSE_TYPE
Definition Opcodes.h:473
@ CMSG_CANCEL_CAST
Definition Opcodes.h:166
@ CMSG_GOSSIP_SELECT_OPTION
Definition Opcodes.h:405
@ CMSG_CHAT_REPORT_IGNORED
Definition Opcodes.h:231
@ CMSG_GUILD_ADD_BATTLENET_FRIEND
Definition Opcodes.h:406
@ CMSG_QUERY_SCENARIO_POI
Definition Opcodes.h:780
@ CMSG_ADVENTURE_MAP_START_QUEST
Definition Opcodes.h:58
@ CMSG_REQUEST_STABLED_PETS
Definition Opcodes.h:858
@ CMSG_REQUEST_VEHICLE_PREV_SEAT
Definition Opcodes.h:864
@ CMSG_AUCTION_LIST_BIDDED_ITEMS
Definition Opcodes.h:75
@ CMSG_NEIGHBORHOOD_INVITE_RESIDENT
Definition Opcodes.h:698
@ CMSG_NEIGHBORHOOD_ADD_SECONDARY_OWNER
Definition Opcodes.h:685
@ CMSG_TRANSMOG_OUTFIT_UPDATE_INFO
Definition Opcodes.h:1004
@ CMSG_RANDOM_ROLL
Definition Opcodes.h:813
@ CMSG_LIVE_REGION_KEY_BINDINGS_COPY
Definition Opcodes.h:541
@ CMSG_LOBBY_MATCHMAKER_SET_PARTY_PLAYLIST_ENTRY
Definition Opcodes.h:553
@ CMSG_SET_EMPOWER_MIN_HOLD_STAGE_PERCENT
Definition Opcodes.h:910
@ CMSG_CHAT_CHANNEL_DISPLAY_LIST
Definition Opcodes.h:198
@ CMSG_SWAP_SUB_GROUPS
Definition Opcodes.h:981
@ CMSG_DECLINE_PETITION
Definition Opcodes.h:316
@ CMSG_REQUEST_VEHICLE_EXIT
Definition Opcodes.h:862
@ CMSG_CHALLENGE_MODE_REQUEST_LEADERS
Definition Opcodes.h:179
@ CMSG_CONFIRM_PROFESSION_RESPEC
Definition Opcodes.h:282
@ CMSG_MOVE_SET_ADV_FLYING_TURN_VELOCITY_THRESHOLD_ACK
Definition Opcodes.h:643
@ CMSG_AREA_TRIGGER
Definition Opcodes.h:62
@ CMSG_GET_LAST_CATALOG_FETCH
Definition Opcodes.h:391
@ CMSG_NEIGHBORHOOD_CHARTER_SEND_SIGNATURE_REQUEST
Definition Opcodes.h:693
@ CMSG_UNLEARN_SPECIALIZATION
Definition Opcodes.h:1013
@ CMSG_EMOTE
Definition Opcodes.h:339
@ CMSG_BLACK_MARKET_OPEN
Definition Opcodes.h:138
@ CMSG_SOCIAL_CONTRACT_REQUEST
Definition Opcodes.h:947
@ CMSG_BATTLE_PET_SUMMON
Definition Opcodes.h:132
@ CMSG_SET_STOP_CONVERSATION
Definition Opcodes.h:935
@ CMSG_AUTO_STORE_BAG_ITEM
Definition Opcodes.h:95
@ CMSG_AUCTION_BROWSE_QUERY
Definition Opcodes.h:70
@ CMSG_GUILD_QUERY_RECIPES
Definition Opcodes.h:439
@ CMSG_MOVE_INITIAL_OBJECT_UPDATE_COMPLETE_ACK
Definition Opcodes.h:623
@ CMSG_MOVE_START_STRAFE_RIGHT
Definition Opcodes.h:670
@ CMSG_USE_CRITTER_ITEM
Definition Opcodes.h:1027
@ CMSG_DECLINE_GUILD_INVITES
Definition Opcodes.h:314
@ CMSG_MAIL_CREATE_TEXT_ITEM
Definition Opcodes.h:568
@ CMSG_MOVE_START_PITCH_DOWN
Definition Opcodes.h:667
@ CMSG_UI_MAP_QUEST_LINES_REQUEST
Definition Opcodes.h:1009
@ CMSG_ENGINE_SURVEY
Definition Opcodes.h:343
@ CMSG_CLUB_FINDER_REQUEST_SUBSCRIBED_CLUB_POSTING_IDS
Definition Opcodes.h:262
@ CMSG_BATTLE_PAY_GET_PURCHASE_LIST
Definition Opcodes.h:120
@ CMSG_LATENCY_REPORT
Definition Opcodes.h:521
@ CMSG_MOVE_SET_RUN_MODE
Definition Opcodes.h:657
@ CMSG_ITEM_TEXT_QUERY
Definition Opcodes.h:515
@ CMSG_LEARN_PVP_TALENTS
Definition Opcodes.h:522
@ CMSG_MOVE_STOP_TURN
Definition Opcodes.h:679
@ CMSG_PERKS_PROGRAM_REQUEST_CART_CHECKOUT
Definition Opcodes.h:726
@ CMSG_SET_ASSISTANT_LEADER
Definition Opcodes.h:902
@ CMSG_UPGRADE_RUNEFORGE_LEGENDARY
Definition Opcodes.h:1025
@ CMSG_BATTLENET_CHALLENGE_RESPONSE
Definition Opcodes.h:112
@ CMSG_UNDELETE_CHARACTER
Definition Opcodes.h:1011
@ CMSG_CHAT_MESSAGE_RAID_WARNING
Definition Opcodes.h:225
@ CMSG_CANCEL_TRADE
Definition Opcodes.h:174
@ CMSG_PET_BATTLE_REQUEST_WILD
Definition Opcodes.h:746
@ CMSG_MOVE_FORCE_WALK_SPEED_CHANGE_ACK
Definition Opcodes.h:615
@ CMSG_NEIGHBORHOOD_SET_PUBLIC_FLAG
Definition Opcodes.h:705
@ CMSG_LOBBY_MATCHMAKER_PARTY_INVITE
Definition Opcodes.h:549
@ CMSG_CONSUMABLE_TOKEN_CAN_VETERAN_BUY
Definition Opcodes.h:287
@ CMSG_ACCEPT_GUILD_INVITE
Definition Opcodes.h:40
@ CMSG_MOVE_SET_WALK_MODE
Definition Opcodes.h:660
@ CMSG_CHECK_CHARACTER_NAME_AVAILABILITY
Definition Opcodes.h:235
@ CMSG_PET_SET_ACTION
Definition Opcodes.h:751
@ CMSG_GET_VAS_TRANSFER_TARGET_REALM_LIST
Definition Opcodes.h:400
@ CMSG_COMMENTATOR_ENABLE
Definition Opcodes.h:267
@ CMSG_SET_SORT_BAGS_RIGHT_TO_LEFT
Definition Opcodes.h:934
@ CMSG_AUCTION_CANCEL_COMMODITIES_PURCHASE
Definition Opcodes.h:71
@ CMSG_GARRISON_RESEARCH_TALENT
Definition Opcodes.h:371
@ CMSG_SETUP_WARBAND_GROUPS
Definition Opcodes.h:896
@ CMSG_GARRISON_REMOVE_FOLLOWER
Definition Opcodes.h:366
@ CMSG_CLAIM_WEEKLY_REWARD
Definition Opcodes.h:239
@ CMSG_CLEAR_TRADE_ITEM
Definition Opcodes.h:249
@ CMSG_BATTLE_PET_DELETE_PET
Definition Opcodes.h:126
@ CMSG_GUILD_BANK_ACTIVATE
Definition Opcodes.h:409
@ CMSG_PERKS_PROGRAM_REQUEST_PURCHASE
Definition Opcodes.h:728
@ CMSG_OPT_OUT_OF_LOOT
Definition Opcodes.h:718
@ CMSG_DEL_IGNORE
Definition Opcodes.h:320
@ CMSG_QUERY_NEIGHBORHOOD_INFO
Definition Opcodes.h:767
@ CMSG_SORT_BANK_BAGS
Definition Opcodes.h:951
@ CMSG_MOVE_FORCE_FLIGHT_SPEED_CHANGE_ACK
Definition Opcodes.h:605
@ CMSG_AREA_SPIRIT_HEALER_QUEUE
Definition Opcodes.h:61
@ CMSG_BONUS_ROLL
Definition Opcodes.h:140
@ CMSG_UPDATE_ACCOUNT_BANK_TAB_SETTINGS
Definition Opcodes.h:1015
@ CMSG_SCENE_PLAYBACK_CANCELED
Definition Opcodes.h:879
@ CMSG_DF_TELEPORT
Definition Opcodes.h:331
@ CMSG_DO_READY_CHECK
Definition Opcodes.h:336
@ CMSG_CHAT_LOBBY_MATCHMAKER_MESSAGE_PARTY
Definition Opcodes.h:215
@ CMSG_CALENDAR_COMPLAIN
Definition Opcodes.h:151
@ CMSG_BATTLE_PAY_DISTRIBUTION_ASSIGN_VAS
Definition Opcodes.h:118
@ CMSG_HOUSING_FIXTURE_SET_HOUSE_SIZE
Definition Opcodes.h:472
@ CMSG_SPECTATE_END
Definition Opcodes.h:954
@ CMSG_ACCEPT_WARGAME_INVITE
Definition Opcodes.h:43
@ CMSG_LOBBY_MATCHMAKER_REJECT_PARTY_INVITE
Definition Opcodes.h:552
@ CMSG_MOVE_FEATHER_FALL_ACK
Definition Opcodes.h:603
@ CMSG_ENABLE_NAGLE
Definition Opcodes.h:340
@ CMSG_DF_CONFIRM_EXPAND_SEARCH
Definition Opcodes.h:323
@ CMSG_OFFER_PETITION
Definition Opcodes.h:712
@ CMSG_CHAT_CHANNEL_SET_OWNER
Definition Opcodes.h:206
@ CMSG_HOUSING_DECOR_REMOVE
Definition Opcodes.h:464
@ CMSG_MOVE_WATER_WALK_ACK
Definition Opcodes.h:683
@ CMSG_NEIGHBORHOOD_CHARTER_CREATE
Definition Opcodes.h:689
@ CMSG_MOVE_SET_ADV_FLYING_BANKING_RATE_ACK
Definition Opcodes.h:633
@ CMSG_SEND_PING_UNIT
Definition Opcodes.h:891
@ CMSG_MOVE_SET_CAN_DRIVE_ACK
Definition Opcodes.h:647
@ CMSG_UPGRADE_GARRISON
Definition Opcodes.h:1024
@ CMSG_TRAINER_LIST
Definition Opcodes.h:998
@ CMSG_NEIGHBORHOOD_GET_ROSTER
Definition Opcodes.h:696
@ CMSG_COMMENTATOR_SPECTATE
Definition Opcodes.h:273
@ CMSG_GET_VAS_ACCOUNT_CHARACTER_LIST
Definition Opcodes.h:399
@ CMSG_CHAT_MESSAGE_SAY
Definition Opcodes.h:226
@ CMSG_AUTOSTORE_BANK_ITEM
Definition Opcodes.h:89
@ CMSG_CHAT_MESSAGE_AFK
Definition Opcodes.h:216
@ CMSG_MOVE_SET_IGNORE_MOVEMENT_FORCES_ACK
Definition Opcodes.h:654
@ CMSG_SET_INSERT_ITEMS_LEFT_TO_RIGHT
Definition Opcodes.h:917
@ CMSG_USED_FOLLOW
Definition Opcodes.h:1026
@ CMSG_GUILD_ADD_RANK
Definition Opcodes.h:407
@ CMSG_CHAT_CHANNEL_MODERATOR
Definition Opcodes.h:203
@ CMSG_QUEUED_MESSAGES_END
Definition Opcodes.h:802
@ CMSG_QUEST_DRIVEN_SCENARIO_STATE_CHANGE
Definition Opcodes.h:786
@ CMSG_HOUSING_ROOM_ADD
Definition Opcodes.h:480
@ CMSG_DISMISS_CRITTER
Definition Opcodes.h:333
@ CMSG_BUG_REPORT
Definition Opcodes.h:141
@ CMSG_NEIGHBORHOOD_CHARTER_ADD_SIGNATURE
Definition Opcodes.h:688
@ CMSG_CONTENT_TRACKING_STOP_TRACKING
Definition Opcodes.h:291
@ CMSG_QUEST_GIVER_COMPLETE_QUEST
Definition Opcodes.h:790
@ CMSG_RAF_GENERATE_RECRUITMENT_LINK
Definition Opcodes.h:810
@ CMSG_HOUSING_SVCS_NEIGHBORHOOD_RESERVE_PLOT
Definition Opcodes.h:497
@ CMSG_RAF_CLAIM_ACTIVITY_REWARD
Definition Opcodes.h:808
@ CMSG_CHARACTER_UPGRADE_START
Definition Opcodes.h:188
@ CMSG_HOUSING_PHOTO_SHARING_COMPLETE_AUTHORIZATION
Definition Opcodes.h:478
@ CMSG_HOUSING_SVCS_REJECT_NEIGHBORHOOD_OWNERSHIP
Definition Opcodes.h:500
@ CMSG_CLIENT_PORT_GRAVEYARD
Definition Opcodes.h:250
@ CMSG_GARRISON_RECRUIT_FOLLOWER
Definition Opcodes.h:365
@ CMSG_SET_WAR_MODE
Definition Opcodes.h:942
@ CMSG_QUICK_JOIN_REQUEST_INVITE
Definition Opcodes.h:804
@ CMSG_JOIN_PET_BATTLE_QUEUE
Definition Opcodes.h:516
@ CMSG_MOVE_STOP_STRAFE
Definition Opcodes.h:677
@ CMSG_TIERED_ENTRANCE_OPEN
Definition Opcodes.h:987
@ CMSG_SHOW_TRADE_SKILL
Definition Opcodes.h:944
@ CMSG_HOUSING_DECOR_REQUEST_STORAGE
Definition Opcodes.h:465
@ CMSG_UPDATE_ACCOUNT_DATA
Definition Opcodes.h:1016
@ CMSG_PERKS_PROGRAM_REQUEST_PENDING_REWARDS
Definition Opcodes.h:727
@ CMSG_GUILD_CHANGE_NAME_REQUEST
Definition Opcodes.h:420
@ CMSG_CHAR_DELETE
Definition Opcodes.h:190
@ CMSG_DF_JOIN
Definition Opcodes.h:326
@ CMSG_MOVE_HOVER_ACK
Definition Opcodes.h:620
@ CMSG_BULK_PURCHASE
Definition Opcodes.h:142
@ CMSG_TIME_SYNC_RESPONSE_FAILED
Definition Opcodes.h:991
@ CMSG_LOOT_UNIT
Definition Opcodes.h:565
@ CMSG_MERGE_GUILD_BANK_ITEM_WITH_ITEM
Definition Opcodes.h:578
@ CMSG_MESSAGE_WHISPER
Definition Opcodes.h:580
@ CMSG_GARRISON_CANCEL_CONSTRUCTION
Definition Opcodes.h:354
@ CMSG_MOVE_STOP_ASCEND
Definition Opcodes.h:675
@ CMSG_PUSH_QUEST_TO_PARTY
Definition Opcodes.h:756
@ CMSG_SPECTATE_SET_NEXT_TARGET
Definition Opcodes.h:955
@ CMSG_AUCTION_REMOVE_ITEM
Definition Opcodes.h:81
@ CMSG_CHAT_UNREGISTER_ALL_ADDON_PREFIXES
Definition Opcodes.h:234
@ CMSG_BUSY_TRADE
Definition Opcodes.h:144
@ CMSG_CHAR_RACE_OR_FACTION_CHANGE
Definition Opcodes.h:191
@ CMSG_MOVE_UPDATE_FALL_SPEED
Definition Opcodes.h:682
@ CMSG_GARRISON_GENERATE_RECRUITS
Definition Opcodes.h:358
@ CMSG_SET_PLAYER_DECLINED_NAMES
Definition Opcodes.h:925
@ CMSG_STORE_GUILD_BANK_ITEM
Definition Opcodes.h:969
@ CMSG_GET_INITIATIVE_ACTIVITY_LOG_REQUEST
Definition Opcodes.h:388
@ CMSG_PET_BATTLE_QUEUE_PROPOSE_MATCH_RESULT
Definition Opcodes.h:741
@ CMSG_AUCTION_GET_COMMODITY_QUOTE
Definition Opcodes.h:73
@ CMSG_REQUEST_PARTY_ELIGIBILITY_FOR_DELVE_TIERS
Definition Opcodes.h:847
@ CMSG_MOVE_CHANGE_TRANSPORT
Definition Opcodes.h:589
@ CMSG_STAND_STATE_CHANGE
Definition Opcodes.h:964
@ CMSG_HOUSING_ROOM_ROTATE
Definition Opcodes.h:484
@ CMSG_ENUM_CHARACTERS_DELETED_BY_CLIENT
Definition Opcodes.h:346
@ CMSG_MAIL_MARK_AS_READ
Definition Opcodes.h:571
@ CMSG_TAXI_REQUEST_EARLY_LANDING
Definition Opcodes.h:986
@ CMSG_REQUEST_GUILD_REWARDS_LIST
Definition Opcodes.h:841
@ CMSG_CONFIRM_RESPEC_WIPE
Definition Opcodes.h:283
@ CMSG_MINIMAP_PING
Definition Opcodes.h:581
@ CMSG_CLUB_FINDER_REQUEST_PENDING_CLUBS_LIST
Definition Opcodes.h:261
@ CMSG_LEAVE_PET_BATTLE_QUEUE
Definition Opcodes.h:525
@ CMSG_OPEN_TRADESKILL_NPC
Definition Opcodes.h:717
@ CMSG_SPLIT_ITEM
Definition Opcodes.h:962
@ CMSG_AUTOBANK_ITEM
Definition Opcodes.h:88
@ CMSG_MOVE_FALL_RESET
Definition Opcodes.h:602
@ CMSG_PET_BATTLE_WILD_LOCATION_FAIL
Definition Opcodes.h:1046
@ CMSG_BINDER_ACTIVATE
Definition Opcodes.h:136
@ CMSG_GARRISON_START_MISSION
Definition Opcodes.h:377
@ CMSG_MOVE_SET_ADV_FLYING_GLIDE_START_MIN_HEIGHT_ACK
Definition Opcodes.h:635
@ CMSG_GARRISON_GET_MAP_DATA
Definition Opcodes.h:360
@ CMSG_RECENT_ALLY_REQUEST_DATA
Definition Opcodes.h:816
@ CMSG_REVERT_MONUMENT_APPEARANCE
Definition Opcodes.h:872
@ CMSG_VOICE_CHAT_LOGIN
Definition Opcodes.h:1037
@ CMSG_BATTLE_PAY_ACK_FAILED_RESPONSE
Definition Opcodes.h:114
@ CMSG_AUCTION_PLACE_BID
Definition Opcodes.h:80
@ CMSG_CHAT_DROP_CAUTIONARY_CHAT_MESSAGE
Definition Opcodes.h:211
@ CMSG_CONVERT_ITEM_TO_BIND_TO_ACCOUNT
Definition Opcodes.h:296
@ CMSG_COMPLAINT
Definition Opcodes.h:278
@ CMSG_GARRISON_RENAME_FOLLOWER
Definition Opcodes.h:368
@ CMSG_CLOSE_INTERACTION
Definition Opcodes.h:251
@ CMSG_HOUSING_SVCS_GET_HOUSE_FINDER_INFO
Definition Opcodes.h:492
@ CMSG_CHAR_CUSTOMIZE
Definition Opcodes.h:189
@ CMSG_BULK_REFUND
Definition Opcodes.h:143
@ CMSG_LOBBY_MATCHMAKER_ABANDON_QUEUE
Definition Opcodes.h:544
@ CMSG_SET_LOOT_SPECIALIZATION
Definition Opcodes.h:919
@ CMSG_CHAT_CHANNEL_BAN
Definition Opcodes.h:196
@ CMSG_BATTLE_PET_SET_BATTLE_SLOT
Definition Opcodes.h:130
@ CMSG_SAVE_PERSONAL_EMBLEM
Definition Opcodes.h:878
@ CMSG_PET_SPELL_AUTOCAST
Definition Opcodes.h:752
@ CMSG_CANCEL_TEMP_ENCHANTMENT
Definition Opcodes.h:173
@ CMSG_REQUEST_INSTANCE_ENCOUNTER_EVENT_SYNC
Definition Opcodes.h:842
@ CMSG_LOG_STREAMING_ERROR
Definition Opcodes.h:560
@ CMSG_PET_BATTLE_INPUT
Definition Opcodes.h:740
@ CMSG_SET_PARTY_LEADER
Definition Opcodes.h:921
@ CMSG_GUILD_BANK_REMAINING_WITHDRAW_MONEY_QUERY
Definition Opcodes.h:414
@ CMSG_MOVE_INIT_ACTIVE_MOVER_COMPLETE
Definition Opcodes.h:624
@ CMSG_RESET_CHALLENGE_MODE_CHEAT
Definition Opcodes.h:869
@ CMSG_AUCTION_LIST_BUCKETS_BY_BUCKET_KEYS
Definition Opcodes.h:76
@ CMSG_MASTER_LOOT_ITEM
Definition Opcodes.h:576
@ CMSG_SET_TAXI_BENCHMARK_MODE
Definition Opcodes.h:936
@ CMSG_DF_SET_ROLES
Definition Opcodes.h:330
@ CMSG_AUTO_STORE_GUILD_BANK_ITEM
Definition Opcodes.h:96
@ CMSG_CHAT_MESSAGE_RAID
Definition Opcodes.h:224
@ CMSG_BATTLEFIELD_LIST
Definition Opcodes.h:103
@ CMSG_SCENE_PLAYBACK_COMPLETE
Definition Opcodes.h:880
@ CMSG_CHARACTER_RENAME_REQUEST
Definition Opcodes.h:186
@ CMSG_BANKER_ACTIVATE
Definition Opcodes.h:101
@ CMSG_MOVE_FORCE_RUN_SPEED_CHANGE_ACK
Definition Opcodes.h:610
@ CMSG_MOVE_DOUBLE_JUMP
Definition Opcodes.h:596
@ CMSG_CLUB_PRESENCE_SUBSCRIBE
Definition Opcodes.h:265
@ CMSG_GET_CHARACTER_CURRENCY_TRANSFER_LOG
Definition Opcodes.h:384
@ CMSG_GUILD_GET_ROSTER
Definition Opcodes.h:429
@ CMSG_TRAITS_TALENT_TEST_UNLEARN_SPELLS
Definition Opcodes.h:1001
@ CMSG_LEAVE_GROUP
Definition Opcodes.h:524
@ CMSG_REQUEST_PVP_REWARDS
Definition Opcodes.h:852
@ CMSG_AUCTION_REPLICATE_ITEMS
Definition Opcodes.h:82
@ CMSG_CALENDAR_COPY_EVENT
Definition Opcodes.h:152
@ CMSG_GUILD_REPLACE_GUILD_MASTER
Definition Opcodes.h:440
@ CMSG_GUILD_GET_ACHIEVEMENT_MEMBERS
Definition Opcodes.h:426
@ CMSG_BATTLE_PET_UPDATE_NOTIFY
Definition Opcodes.h:134
@ CMSG_LOAD_SELECTED_TROPHY
Definition Opcodes.h:543
@ CMSG_MOVE_SET_CAN_ADV_FLY_ACK
Definition Opcodes.h:646
@ CMSG_CHAT_MESSAGE_DND
Definition Opcodes.h:218
@ CMSG_SUMMON_RESPONSE
Definition Opcodes.h:972
@ CMSG_PET_BATTLE_REQUEST_PVP
Definition Opcodes.h:744
@ CMSG_MOVE_FORCE_RUN_BACK_SPEED_CHANGE_ACK
Definition Opcodes.h:609
@ CMSG_REQUEST_TREASURE_PUNCH_LIST_ITEMS
Definition Opcodes.h:861
@ CMSG_REQUEST_PLAYED_TIME
Definition Opcodes.h:851
@ CMSG_MOVE_TELEPORT_ACK
Definition Opcodes.h:680
@ CMSG_MOVE_STOP
Definition Opcodes.h:674
@ CMSG_HOUSE_EXTERIOR_SET_HOUSE_POSITION
Definition Opcodes.h:457
@ CMSG_ADD_IGNORE
Definition Opcodes.h:54
@ CMSG_OPENING_CINEMATIC
Definition Opcodes.h:713
@ CMSG_MOVE_COLLISION_DISABLE_ACK
Definition Opcodes.h:591
@ CMSG_CALENDAR_STATUS
Definition Opcodes.h:162
@ CMSG_QUERY_INSPECT_ACHIEVEMENTS
Definition Opcodes.h:766
@ CMSG_UPDATE_LAST_CATALOG_FETCH
Definition Opcodes.h:1019
@ CMSG_START_INSTANCE_ABANDON_VOTE
Definition Opcodes.h:966
@ CMSG_CAN_DUEL
Definition Opcodes.h:175
@ CMSG_MOVE_SET_FACING
Definition Opcodes.h:651
@ CMSG_VAS_CHECK_TRANSFER_OK
Definition Opcodes.h:1031
@ CMSG_CONVERT_TIMERUNNING_CHARACTER
Definition Opcodes.h:298
@ CMSG_MERGE_GUILD_BANK_ITEM_WITH_GUILD_BANK_ITEM
Definition Opcodes.h:577
@ CMSG_MOVE_ENABLE_SWIM_TO_FLY_TRANS_ACK
Definition Opcodes.h:600
@ CMSG_LOOT_MONEY
Definition Opcodes.h:562
@ CMSG_GUILD_REQUEST_RENAME
Definition Opcodes.h:441
@ CMSG_SET_CURRENCY_FLAGS
Definition Opcodes.h:907
@ CMSG_MOVE_FORCE_SWIM_BACK_SPEED_CHANGE_ACK
Definition Opcodes.h:611
@ CMSG_MOVE_COLLISION_ENABLE_ACK
Definition Opcodes.h:592
@ CMSG_REQUEST_MYTHIC_PLUS_AFFIXES
Definition Opcodes.h:845
@ CMSG_MOVE_START_DESCEND
Definition Opcodes.h:664
@ CMSG_SET_USING_PARTY_GARRISON
Definition Opcodes.h:941
@ CMSG_CALENDAR_MODERATOR_STATUS
Definition Opcodes.h:158
@ CMSG_HOUSING_SVCS_GET_BNET_FRIEND_NEIGHBORHOODS
Definition Opcodes.h:491
@ CMSG_DO_MASTER_LOOT_ROLL
Definition Opcodes.h:335
@ CMSG_COVENANT_RENOWN_REQUEST_CATCHUP_STATE
Definition Opcodes.h:299
@ CMSG_ALTER_APPEARANCE
Definition Opcodes.h:59
@ CMSG_SET_PET_FAVORITE
Definition Opcodes.h:922
@ CMSG_SURRENDER_ARENA
Definition Opcodes.h:974
@ CMSG_MISSILE_TRAJECTORY_COLLISION
Definition Opcodes.h:582
@ CMSG_TAXI_NODE_STATUS_QUERY
Definition Opcodes.h:984
@ CMSG_AUCTION_SET_FAVORITE_ITEM
Definition Opcodes.h:85
@ CMSG_QUERY_QUEST_INFO
Definition Opcodes.h:777
@ CMSG_CLOSE_RUNEFORGE_INTERACTION
Definition Opcodes.h:253
@ CMSG_ASSIGN_EQUIPMENT_SET_SPEC
Definition Opcodes.h:65
@ CMSG_COMMENTATOR_GET_MAP_INFO
Definition Opcodes.h:270
@ CMSG_MOVE_SET_ADV_FLYING_PITCHING_RATE_DOWN_ACK
Definition Opcodes.h:640
@ CMSG_PETITION_SHOW_SIGNATURES
Definition Opcodes.h:735
@ CMSG_QUEST_GIVER_HELLO
Definition Opcodes.h:791
@ CMSG_QUEST_GIVER_CHOOSE_REWARD
Definition Opcodes.h:788
@ CMSG_AUCTION_SELL_COMMODITY
Definition Opcodes.h:83
@ CMSG_BATTLE_PAY_OPEN_CHECKOUT
Definition Opcodes.h:121
@ CMSG_GET_REMAINING_GAME_TIME
Definition Opcodes.h:396
@ CMSG_NEXT_CINEMATIC_CAMERA
Definition Opcodes.h:708
@ CMSG_MOVE_SPLINE_DONE
Definition Opcodes.h:661
@ CMSG_CLASS_TALENTS_NOTIFY_EMPTY_CONFIG
Definition Opcodes.h:241
@ CMSG_GUILD_UPDATE_MOTD_TEXT
Definition Opcodes.h:452
@ CMSG_MOVE_KNOCK_BACK_ACK
Definition Opcodes.h:626
@ CMSG_SET_ACTION_BUTTON
Definition Opcodes.h:898
@ CMSG_WRAP_ITEM
Definition Opcodes.h:1043
@ CMSG_MOVE_FORCE_ROOT_ACK
Definition Opcodes.h:608
@ CMSG_GARRISON_SET_FOLLOWER_INACTIVE
Definition Opcodes.h:374
@ CMSG_TRAINING_GROUNDS_JOIN
Definition Opcodes.h:999
@ CMSG_REQUEST_WORLD_QUEST_UPDATE
Definition Opcodes.h:867
@ CMSG_LOOT_ROLL
Definition Opcodes.h:564
@ CMSG_GUILD_DECLINE_INVITATION
Definition Opcodes.h:421
@ CMSG_CONSUMABLE_TOKEN_REDEEM
Definition Opcodes.h:288
@ CMSG_RIDE_VEHICLE_INTERACT
Definition Opcodes.h:873
@ CMSG_SPIRIT_HEALER_ACTIVATE
Definition Opcodes.h:959
@ CMSG_SET_TRADE_ITEM
Definition Opcodes.h:940
@ CMSG_CHAT_CHANNEL_DECLINE_INVITE
Definition Opcodes.h:197
@ CMSG_MOVE_CHANGE_VEHICLE_SEATS
Definition Opcodes.h:590
@ CMSG_BATTLE_PAY_GET_PRODUCT_LIST
Definition Opcodes.h:119
@ CMSG_REQUEST_PET_INFO
Definition Opcodes.h:850
@ CMSG_REQUEST_CROWD_CONTROL_SPELL
Definition Opcodes.h:837
@ CMSG_CAGE_BATTLE_PET
Definition Opcodes.h:148
@ CMSG_SUSPEND_COMMS_ACK
Definition Opcodes.h:975
@ CMSG_GET_ITEM_PURCHASE_DATA
Definition Opcodes.h:389
@ CMSG_QUEST_GIVER_ACCEPT_QUEST
Definition Opcodes.h:787
@ CMSG_GAME_OBJ_REPORT_USE
Definition Opcodes.h:350
@ CMSG_LFG_LIST_APPLY_TO_GROUP
Definition Opcodes.h:526
@ CMSG_VAS_GET_QUEUE_MINUTES
Definition Opcodes.h:1032
@ CMSG_GUILD_NEWS_UPDATE_STICKY
Definition Opcodes.h:432
@ CMSG_NEIGHBORHOOD_PLAYER_DECLINE_INVITE
Definition Opcodes.h:702
@ CMSG_KIOSK_ENABLE_GOD_MODE
Definition Opcodes.h:520
@ CMSG_VAS_GET_SERVICE_STATUS
Definition Opcodes.h:1033
@ CMSG_QUERY_PETITION
Definition Opcodes.h:771
@ CMSG_ISLAND_QUEUE
Definition Opcodes.h:513
@ CMSG_SET_TRADE_CURRENCY
Definition Opcodes.h:938
@ CMSG_SET_EXCLUDED_CHAT_CENSOR_SOURCES
Definition Opcodes.h:912
@ CMSG_BATTLE_PET_MODIFY_NAME
Definition Opcodes.h:127
@ CMSG_JOIN_RATED_BATTLEGROUND
Definition Opcodes.h:517
@ CMSG_SET_DUNGEON_DIFFICULTY
Definition Opcodes.h:909
@ CMSG_QUEST_PUSH_RESULT
Definition Opcodes.h:798
@ CMSG_HOUSING_FIXTURE_CREATE_FIXTURE
Definition Opcodes.h:468
@ CMSG_DECLINE_NEIGHBORHOOD_INVITES
Definition Opcodes.h:315
@ CMSG_GUILD_BANK_LOG_QUERY
Definition Opcodes.h:412
@ CMSG_ABANDON_NPE_RESPONSE
Definition Opcodes.h:39
@ CMSG_BEGIN_TRADE
Definition Opcodes.h:135
@ CMSG_MOVE_START_DRIVE_FORWARD
Definition Opcodes.h:665
@ CMSG_GARRISON_REMOVE_FOLLOWER_FROM_BUILDING
Definition Opcodes.h:367
@ CMSG_REPORT_SERVER_LAG
Definition Opcodes.h:828
@ CMSG_NEIGHBORHOOD_BUY_HOUSE
Definition Opcodes.h:686
@ CMSG_MOVE_FORCE_UNROOT_ACK
Definition Opcodes.h:614
@ CMSG_HOUSING_DECOR_SET_EDIT_MODE
Definition Opcodes.h:467
@ CMSG_REQUEST_LFG_LIST_BLACKLIST
Definition Opcodes.h:844
@ CMSG_INSPECT
Definition Opcodes.h:509
@ CMSG_REQUEST_AREA_POI_UPDATE
Definition Opcodes.h:831
@ CMSG_NEIGHBORHOOD_EVICT_PLOT
Definition Opcodes.h:694
@ CMSG_AUTO_DEPOSIT_ACCOUNT_BANK
Definition Opcodes.h:90
@ CMSG_ADVENTURE_JOURNAL_UPDATE_SUGGESTIONS
Definition Opcodes.h:57
@ CMSG_SET_ADVANCED_COMBAT_LOGGING
Definition Opcodes.h:900
@ CMSG_PING
Definition Opcodes.h:754
@ CMSG_INITIATIVE_UPDATE_ACTIVE_NEIGHBORHOOD
Definition Opcodes.h:508
@ CMSG_REQUEST_STORE_FRONT_INFO_UPDATE
Definition Opcodes.h:859
@ CMSG_GAME_EVENT_DEBUG_DISABLE
Definition Opcodes.h:348
@ CMSG_SELECT_DELVE_ENTRANCE_TIER
Definition Opcodes.h:883
@ CMSG_GUILD_ASSIGN_MEMBER_RANK
Definition Opcodes.h:408
@ CMSG_BATTLE_PAY_CANCEL_OPEN_CHECKOUT
Definition Opcodes.h:115
@ CMSG_MOVE_FORCE_PITCH_RATE_CHANGE_ACK
Definition Opcodes.h:607
@ CMSG_QUERY_NPC_TEXT
Definition Opcodes.h:769
@ CMSG_SET_EVERYONE_IS_ASSISTANT
Definition Opcodes.h:911
@ CMSG_QUEST_GIVER_STATUS_QUERY
Definition Opcodes.h:795
@ CMSG_AREA_SPIRIT_HEALER_QUERY
Definition Opcodes.h:60
@ CMSG_REQUEST_MYTHIC_PLUS_SEASON_DATA
Definition Opcodes.h:846
@ CMSG_SET_PARTY_ASSIGNMENT
Definition Opcodes.h:920
@ CMSG_MOVE_ADD_IMPULSE_ACK
Definition Opcodes.h:586
@ CMSG_CLEAR_RAID_MARKER
Definition Opcodes.h:248
@ CMSG_CREATE_SHIPMENT
Definition Opcodes.h:312
@ CMSG_GUILD_DEMOTE_MEMBER
Definition Opcodes.h:424
@ CMSG_TALK_TO_GOSSIP
Definition Opcodes.h:983
@ CMSG_MOVE_SET_MOD_MOVEMENT_FORCE_MAGNITUDE_ACK
Definition Opcodes.h:655
@ CMSG_ACCOUNT_NOTIFICATION_ACKNOWLEDGED
Definition Opcodes.h:46
@ CMSG_CHAT_CAN_LOCAL_WHISPER_TARGET_REQUEST
Definition Opcodes.h:194
@ CMSG_CHAT_CHANNEL_INVITE
Definition Opcodes.h:199
@ CMSG_GUILD_REQUEST_RENAME_STATUS
Definition Opcodes.h:444
@ CMSG_LFG_LIST_INVITE_APPLICANT
Definition Opcodes.h:530
@ CMSG_SPELL_EMPOWER_RELEASE
Definition Opcodes.h:957
@ CMSG_DEL_FRIEND
Definition Opcodes.h:319
@ CMSG_OBJECT_UPDATE_FAILED
Definition Opcodes.h:710
@ CMSG_BATTLE_PAY_DISTRIBUTION_ASSIGN_TO_TARGET
Definition Opcodes.h:117
@ CMSG_CLOSE_QUEST_CHOICE
Definition Opcodes.h:252
@ CMSG_CANCEL_CHANNELLING
Definition Opcodes.h:167
@ CMSG_CLUB_FINDER_GET_APPLICANTS_LIST
Definition Opcodes.h:256
@ CMSG_MOVE_SET_COLLISION_HEIGHT_ACK
Definition Opcodes.h:650
@ CMSG_HOUSING_SVCS_GUILD_CREATE_NEIGHBORHOOD
Definition Opcodes.h:496
@ CMSG_AUTO_EQUIP_ITEM_SLOT
Definition Opcodes.h:93
@ CMSG_GUILD_BANK_TEXT_QUERY
Definition Opcodes.h:416
@ CMSG_MOVE_REMOVE_MOVEMENT_FORCES
Definition Opcodes.h:628
@ CMSG_TAXI_QUERY_AVAILABLE_NODES
Definition Opcodes.h:985
@ CMSG_ARTIFACT_ADD_POWER
Definition Opcodes.h:63
@ CMSG_QUEST_LOG_REMOVE_QUEST
Definition Opcodes.h:796
@ CMSG_ENCOUNTER_JOURNAL_START_ARATHI_RPE
Definition Opcodes.h:342
@ CMSG_MOVE_SET_PITCH
Definition Opcodes.h:656
@ CMSG_MOVE_ENABLE_DOUBLE_JUMP_ACK
Definition Opcodes.h:597
@ CMSG_LOG_DISCONNECT
Definition Opcodes.h:559
@ CMSG_COMMERCE_TOKEN_GET_MARKET_PRICE
Definition Opcodes.h:277
@ CMSG_QUERY_NEXT_MAIL_TIME
Definition Opcodes.h:768
@ CMSG_GUILD_GET_OTHERS_OWNED_HOUSES
Definition Opcodes.h:427
@ CMSG_COMMERCE_TOKEN_GET_LOG
Definition Opcodes.h:276
@ CMSG_OVERRIDE_SCREEN_FLASH
Definition Opcodes.h:719
@ CMSG_GET_LANDING_PAGE_SHIPMENTS
Definition Opcodes.h:390
@ CMSG_QUEST_GIVER_STATUS_MULTIPLE_QUERY
Definition Opcodes.h:794
@ CMSG_DF_GET_JOIN_STATUS
Definition Opcodes.h:324
@ CMSG_MAKE_CONTITIONAL_APPEARANCE_PERMANENT
Definition Opcodes.h:575
@ CMSG_MOVE_FALL_LAND
Definition Opcodes.h:601
@ CMSG_MOVE_SET_ALWAYS_ALLOW_PITCHING_ACK
Definition Opcodes.h:644
@ CMSG_GUILD_EVENT_LOG_QUERY
Definition Opcodes.h:425
@ CMSG_SAVE_GUILD_EMBLEM
Definition Opcodes.h:877
@ CMSG_SPAWN_TRACKING_UPDATE
Definition Opcodes.h:952
@ CMSG_GARRISON_SOCKET_TALENT
Definition Opcodes.h:376
@ CMSG_IGNORE_TRADE
Definition Opcodes.h:505
@ CMSG_GUILD_SET_FOCUSED_ACHIEVEMENT
Definition Opcodes.h:446
@ CMSG_GARRISON_PURCHASE_BUILDING
Definition Opcodes.h:364
@ CMSG_ADDON_LIST
Definition Opcodes.h:50
@ CMSG_CHECK_IS_ADVENTURE_MAP_POI_VALID
Definition Opcodes.h:236
@ CMSG_CHAT_ADDON_MESSAGE
Definition Opcodes.h:192
@ CMSG_MAIL_DELETE
Definition Opcodes.h:569
@ CMSG_CHANGE_REALM_TICKET
Definition Opcodes.h:183
@ CMSG_REQUEST_CHAT_LOGIN
Definition Opcodes.h:835
@ CMSG_CHAT_MESSAGE_OFFICER
Definition Opcodes.h:222
@ CMSG_SET_ACTIVE_MOVER
Definition Opcodes.h:899
@ CMSG_RAF_CLAIM_NEXT_REWARD
Definition Opcodes.h:809
@ CMSG_CHAT_CHANNEL_UNMODERATOR
Definition Opcodes.h:209
@ CMSG_PARTY_INVITE_RESPONSE
Definition Opcodes.h:721
@ CMSG_QUERY_TIME
Definition Opcodes.h:782
@ CMSG_INITIATE_ROLE_POLL
Definition Opcodes.h:506
@ CMSG_QUEST_SESSION_REQUEST_START
Definition Opcodes.h:800
@ CMSG_TABARD_VENDOR_ACTIVATE
Definition Opcodes.h:982
@ CMSG_GUILD_QUERY_MEMBER_RECIPES
Definition Opcodes.h:437
@ CMSG_REQUEST_SURVEY
Definition Opcodes.h:860
@ CMSG_BATTLE_PET_CLEAR_FANFARE
Definition Opcodes.h:125
@ CMSG_SET_ROLE
Definition Opcodes.h:930
@ CMSG_CHANGE_BANK_BAG_SLOT_FLAG
Definition Opcodes.h:181
@ CMSG_HOUSING_GET_PLAYER_PERMISSIONS
Definition Opcodes.h:475
@ CMSG_LFG_LIST_JOIN
Definition Opcodes.h:532
@ CMSG_SET_GAME_EVENT_DEBUG_VIEW_STATE
Definition Opcodes.h:916
@ CMSG_ADD_FRIEND
Definition Opcodes.h:53
@ CMSG_SET_RAID_DIFFICULTY
Definition Opcodes.h:928
@ CMSG_MOVE_SET_FACING_HEARTBEAT
Definition Opcodes.h:652
@ CMSG_REQUEST_RAID_INFO
Definition Opcodes.h:853
@ CMSG_REQUEST_ACCOUNT_DATA
Definition Opcodes.h:830
@ CMSG_SET_BACKPACK_SELL_JUNK_DISABLED
Definition Opcodes.h:904
@ CMSG_AZERITE_EMPOWERED_ITEM_SELECT_POWER
Definition Opcodes.h:97
@ CMSG_CANCEL_MOD_SPEED_NO_CONTROL_AURAS
Definition Opcodes.h:170
@ CMSG_GUILD_BANK_SET_TAB_TEXT
Definition Opcodes.h:415
@ CMSG_RESURRECT_RESPONSE
Definition Opcodes.h:871
@ CMSG_SELL_ALL_JUNK_ITEMS
Definition Opcodes.h:886
@ CMSG_CONSUMABLE_TOKEN_BUY_AT_MARKET_PRICE
Definition Opcodes.h:286
@ CMSG_CALENDAR_GET
Definition Opcodes.h:154
@ CMSG_QUERY_PET_NAME
Definition Opcodes.h:772
@ CMSG_GET_DECOR_REFUND_LIST
Definition Opcodes.h:386
@ CMSG_LOGOUT_CANCEL
Definition Opcodes.h:555
@ CMSG_RECENT_ALLY_SET_NOTE
Definition Opcodes.h:817
@ CMSG_CRAFTING_ORDER_GET_NPC_REWARD_INFO
Definition Opcodes.h:304
@ CMSG_SERVER_TIME_OFFSET_REQUEST
Definition Opcodes.h:894
@ CMSG_UPDATE_VAS_PURCHASE_STATES
Definition Opcodes.h:1023
@ CMSG_VOICE_CHAT_JOIN_CHANNEL
Definition Opcodes.h:1036
@ CMSG_MOVE_SET_ADV_FLYING_ADD_IMPULSE_MAX_SPEED_ACK
Definition Opcodes.h:631
@ CMSG_CLASS_TALENTS_DELETE_CONFIG
Definition Opcodes.h:240
@ CMSG_CANCEL_AUTO_REPEAT_SPELL
Definition Opcodes.h:165
@ CMSG_SET_SELECTION
Definition Opcodes.h:932
@ CMSG_OPEN_SHIPMENT_NPC
Definition Opcodes.h:716
@ CMSG_SET_RESTRICT_PINGS_TO_ASSISTANTS
Definition Opcodes.h:929
@ CMSG_PETITION_RENAME_GUILD
Definition Opcodes.h:733
@ CMSG_SET_PVP
Definition Opcodes.h:927
@ CMSG_CHAT_JOIN_CHANNEL
Definition Opcodes.h:212
@ CMSG_BATTLEMASTER_JOIN_ARENA
Definition Opcodes.h:107
@ CMSG_WHO
Definition Opcodes.h:1039
@ CMSG_TRADE_SKILL_SET_FAVORITE
Definition Opcodes.h:996
@ CMSG_GUILD_INVITE_BY_NAME
Definition Opcodes.h:430
@ CMSG_HEARTH_AND_RESURRECT
Definition Opcodes.h:453
@ CMSG_RAF_UPDATE_RECRUITMENT_INFO
Definition Opcodes.h:812
@ CMSG_TIME_SYNC_RESPONSE_DROPPED
Definition Opcodes.h:990
@ CMSG_CHARACTER_CHECK_UPGRADE
Definition Opcodes.h:185
@ CMSG_AUCTION_LIST_ITEMS_BY_ITEM_ID
Definition Opcodes.h:78
@ CMSG_GUILD_UPDATE_INFO_TEXT
Definition Opcodes.h:451
@ CMSG_REQUEST_RATED_PVP_INFO
Definition Opcodes.h:854
@ CMSG_PLAYER_LOGIN
Definition Opcodes.h:755
@ CMSG_HOUSING_SVCS_GET_HOUSE_FINDER_NEIGHBORHOOD
Definition Opcodes.h:493
@ CMSG_HOUSING_SVCS_START_TUTORIAL
Definition Opcodes.h:502
@ CMSG_HOUSING_SVCS_GET_POTENTIAL_HOUSE_OWNERS
Definition Opcodes.h:495
@ CMSG_CREATE_CHARACTER
Definition Opcodes.h:311
@ CMSG_CALENDAR_UPDATE_EVENT
Definition Opcodes.h:163
@ CMSG_DESTROY_ITEM
Definition Opcodes.h:321
@ CMSG_CLUB_FINDER_APPLICATION_RESPONSE
Definition Opcodes.h:255
@ CMSG_MAIL_TAKE_ITEM
Definition Opcodes.h:573
@ CMSG_REMOVE_NEW_ITEM
Definition Opcodes.h:821
@ CMSG_ADVENTURE_JOURNAL_OPEN_QUEST
Definition Opcodes.h:56
@ CMSG_GARRISON_CHECK_UPGRADEABLE
Definition Opcodes.h:355
@ CMSG_SWAP_GUILD_BANK_ITEM_WITH_GUILD_BANK_ITEM
Definition Opcodes.h:977
@ CMSG_MOVE_INERTIA_ENABLE_ACK
Definition Opcodes.h:622
@ CMSG_START_WAR_GAME
Definition Opcodes.h:968
@ CMSG_MOVE_ENABLE_FULL_SPEED_TURNING_ACK
Definition Opcodes.h:599
@ CMSG_CHAT_MESSAGE_PARTY
Definition Opcodes.h:223
@ CMSG_LFG_LIST_UPDATE_REQUEST
Definition Opcodes.h:535
@ CMSG_MOVE_SET_ADV_FLYING_OVER_MAX_DECELERATION_ACK
Definition Opcodes.h:639
@ CMSG_RESET_INSTANCES
Definition Opcodes.h:870
@ CMSG_GAME_EVENT_DEBUG_ENABLE
Definition Opcodes.h:349
@ CMSG_GUILD_DELETE
Definition Opcodes.h:422
@ CMSG_MOVE_START_FORWARD
Definition Opcodes.h:666
@ CMSG_VOICE_CHANNEL_STT_TOKEN_REQUEST
Definition Opcodes.h:1035
@ CMSG_AUCTION_HELLO_REQUEST
Definition Opcodes.h:74
@ CMSG_CLUB_FINDER_RESPOND_TO_APPLICANT
Definition Opcodes.h:263
@ CMSG_LOBBY_MATCHMAKER_ENTER_QUEUE
Definition Opcodes.h:547
@ CMSG_CHAT_CHANNEL_KICK
Definition Opcodes.h:200
@ CMSG_BATTLEFIELD_PORT
Definition Opcodes.h:104
@ CMSG_MOVE_DISABLE_STRAFING_ACK
Definition Opcodes.h:594
@ CMSG_MAIL_RETURN_TO_SENDER
Definition Opcodes.h:572
@ CMSG_HOUSING_ROOM_REMOVE
Definition Opcodes.h:483
@ CMSG_HOTFIX_REQUEST
Definition Opcodes.h:455
@ CMSG_QUERY_WOW_LABS_AREA_INFO
Definition Opcodes.h:784
@ CMSG_CANCEL_MASTER_LOOT_ROLL
Definition Opcodes.h:169
@ CMSG_CONSUMABLE_TOKEN_BUY
Definition Opcodes.h:285
@ CMSG_REMOVE_RAF_RECRUIT
Definition Opcodes.h:822
@ CMSG_MOVE_STOP_PITCH
Definition Opcodes.h:676
@ CMSG_CATALOG_SHOP_LICENSE_GAME_DATA_REQUEST
Definition Opcodes.h:178
@ CMSG_CLASS_TALENTS_SET_STARTER_BUILD_ACTIVE
Definition Opcodes.h:245
@ CMSG_SPELL_EMPOWER_RESTART
Definition Opcodes.h:958
@ CMSG_DISCARDED_TIME_SYNC_ACKS
Definition Opcodes.h:332
@ CMSG_INVITE_PLAYER_TO_NEIGHBORHOOD
Definition Opcodes.h:512
@ CMSG_CHAT_CHANNEL_LIST
Definition Opcodes.h:201
@ CMSG_REQUEST_SCHEDULED_PVP_INFO
Definition Opcodes.h:857
@ CMSG_PARTY_INVITE
Definition Opcodes.h:720
@ CMSG_REQUEST_CEMETERY_LIST
Definition Opcodes.h:833
@ CMSG_BATTLEMASTER_JOIN_RATED_SOLO_SHUFFLE
Definition Opcodes.h:110
@ CMSG_GUILD_SET_MEMBER_NOTE
Definition Opcodes.h:448
@ CMSG_BATTLEFIELD_LEAVE
Definition Opcodes.h:102
@ CMSG_SEND_CHARACTER_CLUB_INVITATION
Definition Opcodes.h:888
@ CMSG_MOVE_START_STRAFE_LEFT
Definition Opcodes.h:669
@ CMSG_GARRISON_FULLY_HEAL_ALL_FOLLOWERS
Definition Opcodes.h:357
@ CMSG_PARTY_UNINVITE
Definition Opcodes.h:722
@ CMSG_TRANSMOG_OUTFIT_UPDATE_SLOTS
Definition Opcodes.h:1006
@ CMSG_SET_LOOT_METHOD
Definition Opcodes.h:918
@ CMSG_SWAP_INV_ITEM
Definition Opcodes.h:978
@ CMSG_DO_COUNTDOWN
Definition Opcodes.h:334
@ CMSG_PET_CANCEL_AURA
Definition Opcodes.h:748
@ CMSG_BUY_ACCOUNT_BANK_TAB
Definition Opcodes.h:145
@ CMSG_GET_RAF_ACCOUNT_INFO
Definition Opcodes.h:394
@ CMSG_CLUB_FINDER_REQUEST_CLUBS_DATA
Definition Opcodes.h:258
@ CMSG_CLUB_FINDER_REQUEST_CLUBS_LIST
Definition Opcodes.h:259
@ CMSG_SPLIT_GUILD_BANK_ITEM_TO_INVENTORY
Definition Opcodes.h:961
@ CMSG_ITEM_PURCHASE_REFUND
Definition Opcodes.h:514
@ CMSG_CRAFTING_ORDER_UPDATE_IGNORE_LIST
Definition Opcodes.h:310
@ CMSG_BATTLE_PET_SET_FLAGS
Definition Opcodes.h:131
@ CMSG_QUERY_PLAYER_NAME_BY_COMMUNITY_ID
Definition Opcodes.h:775
@ CMSG_TRAINER_BUY_SPELL
Definition Opcodes.h:997
@ CMSG_CONTRIBUTION_LAST_UPDATE_REQUEST
Definition Opcodes.h:293
@ CMSG_SWAP_ITEM
Definition Opcodes.h:979
@ CMSG_CANCEL_QUEUED_SPELL
Definition Opcodes.h:172
@ CMSG_SET_SAVED_INSTANCE_EXTEND
Definition Opcodes.h:931
@ CMSG_QUERY_QUEST_ITEM_USABILITY
Definition Opcodes.h:778
@ CMSG_UNLEARN_SKILL
Definition Opcodes.h:1012
@ CMSG_INITIATE_TRADE
Definition Opcodes.h:507
@ CMSG_HOUSING_SVCS_ACCEPT_NEIGHBORHOOD_OWNERSHIP
Definition Opcodes.h:489
@ CMSG_PERKS_PROGRAM_SET_FROZEN_VENDOR_ITEM
Definition Opcodes.h:730
@ CMSG_NEIGHBORHOOD_OPEN_CORNERSTONE_UI
Definition Opcodes.h:701
@ CMSG_INSTANCE_LOCK_RESPONSE
Definition Opcodes.h:511
@ CMSG_PERKS_PROGRAM_ITEMS_REFRESHED
Definition Opcodes.h:725
@ CMSG_CLUB_FINDER_WHISPER_APPLICANT_REQUEST
Definition Opcodes.h:264
@ CMSG_PET_ABANDON_BY_NUMBER
Definition Opcodes.h:737
@ CMSG_GUILD_PROMOTE_MEMBER
Definition Opcodes.h:435
@ CMSG_GUILD_QUERY_NEWS
Definition Opcodes.h:438
@ CMSG_HOUSING_FIXTURE_SET_CORE_FIXTURE
Definition Opcodes.h:470
@ CMSG_QUERY_GUILD_INFO
Definition Opcodes.h:765
@ CMSG_WORLD_PORT_RESPONSE
Definition Opcodes.h:1042
@ CMSG_GET_AVAILABLE_INITIATIVE_REQUEST
Definition Opcodes.h:383
@ CMSG_HOUSING_DECOR_REDEEM_DEFERRED_DECOR
Definition Opcodes.h:463
@ CMSG_KEEP_ALIVE
Definition Opcodes.h:518
@ CMSG_GUILD_QUERY_MEMBERS_FOR_RECIPE
Definition Opcodes.h:436
@ CMSG_ENABLE_TAXI_NODE
Definition Opcodes.h:341
@ CMSG_LOBBY_MATCHMAKER_QUEUE_PROPSAL_RESPONSE
Definition Opcodes.h:551
@ CMSG_NEUTRAL_PLAYER_SELECT_FACTION
Definition Opcodes.h:707
@ CMSG_GARRISON_SWAP_BUILDINGS
Definition Opcodes.h:378
@ CMSG_GM_TICKET_ACKNOWLEDGE_SURVEY
Definition Opcodes.h:401
@ CMSG_CONFIRM_ARTIFACT_RESPEC
Definition Opcodes.h:281
@ CMSG_QUERY_CORPSE_LOCATION_FROM_CLIENT
Definition Opcodes.h:759
@ CMSG_HOUSING_FIXTURE_SET_EDIT_MODE
Definition Opcodes.h:471
@ CMSG_WHO_IS
Definition Opcodes.h:1040
@ CMSG_INSTANCE_ABANDON_VOTE_RESPONSE
Definition Opcodes.h:510
@ CMSG_PETITION_SHOW_LIST
Definition Opcodes.h:734
@ CMSG_REQUEST_COVENANT_CALLINGS
Definition Opcodes.h:836
@ CMSG_HOUSING_SVCS_DELETE_ALL_NEIGHBORHOOD_INVITES
Definition Opcodes.h:490
@ CMSG_SPELL_CLICK
Definition Opcodes.h:956
@ CMSG_GM_TICKET_GET_CASE_STATUS
Definition Opcodes.h:402
@ CMSG_GET_ACCOUNT_CHARACTER_LIST
Definition Opcodes.h:380
@ CMSG_LFG_LIST_DECLINE_APPLICANT
Definition Opcodes.h:528
@ CMSG_CHAT_LOBBY_MATCHMAKER_MESSAGE_INSTANCE_CHAT
Definition Opcodes.h:214
@ CMSG_MOVE_GUILD_BANK_ITEM
Definition Opcodes.h:618
@ CMSG_RESET_CHALLENGE_MODE
Definition Opcodes.h:868
@ CMSG_BATTLE_PAY_START_VAS_PURCHASE
Definition Opcodes.h:124
@ CMSG_MOVE_START_TURN_LEFT
Definition Opcodes.h:672
@ CMSG_GARRISON_MISSION_BONUS_ROLL
Definition Opcodes.h:363
@ CMSG_LOBBY_MATCHMAKER_PARTY_UNINVITE
Definition Opcodes.h:550
@ CMSG_PERKS_PROGRAM_REQUEST_REFUND
Definition Opcodes.h:729
@ CMSG_BATTLE_PET_UPDATE_DISPLAY_NOTIFY
Definition Opcodes.h:133
@ CMSG_DELVE_TELEPORT_OUT
Definition Opcodes.h:318
@ CMSG_CALENDAR_COMMUNITY_INVITE
Definition Opcodes.h:150
@ CMSG_HOUSING_DECOR_DELETE_FROM_STORAGE
Definition Opcodes.h:459
@ CMSG_SELECT_WOW_LABS_AREA
Definition Opcodes.h:884
@ CMSG_QUERY_PLAYER_NAMES
Definition Opcodes.h:773
@ CMSG_CALENDAR_REMOVE_EVENT
Definition Opcodes.h:159
@ CMSG_AUCTION_CONFIRM_COMMODITIES_PURCHASE
Definition Opcodes.h:72
@ CMSG_MOVE_JUMP
Definition Opcodes.h:625
@ CMSG_REQUEST_LATEST_SPLASH_SCREEN
Definition Opcodes.h:843
@ CMSG_USE_EQUIPMENT_SET
Definition Opcodes.h:1028
@ CMSG_SET_BANK_AUTOSORT_DISABLED
Definition Opcodes.h:905
@ CMSG_UPDATE_RAID_TARGET
Definition Opcodes.h:1021
@ CMSG_MOVE_GRAVITY_DISABLE_ACK
Definition Opcodes.h:616
@ CMSG_MOVE_SET_ADV_FLYING_LIFT_COEFFICIENT_ACK
Definition Opcodes.h:637
@ CMSG_REQUEST_GARRISON_TALENT_WORLD_QUEST_UNLOCKS
Definition Opcodes.h:839
@ CMSG_COMMENTATOR_START_WARGAME
Definition Opcodes.h:274
@ CMSG_SEAMLESS_TRANSFER_COMPLETE
Definition Opcodes.h:882
@ CMSG_MOVE_SET_CANNOT_SWIM_ACK
Definition Opcodes.h:645
@ CMSG_CAST_SPELL
Definition Opcodes.h:177
@ CMSG_GET_GARRISON_INFO
Definition Opcodes.h:387
@ CMSG_CHAT_CHANNEL_OWNER
Definition Opcodes.h:204
@ CMSG_REPORT_PVP_PLAYER_AFK
Definition Opcodes.h:827
@ CMSG_SELL_ITEM
Definition Opcodes.h:887
@ CMSG_GUILD_BANK_BUY_TAB
Definition Opcodes.h:410
@ CMSG_SPLIT_GUILD_BANK_ITEM
Definition Opcodes.h:960
@ CMSG_CHAT_CHANNEL_UNSILENCE_ALL
Definition Opcodes.h:210
@ CMSG_GET_REGIONWIDE_CHARACTER_RESTRICTION_AND_MAIL_DATA
Definition Opcodes.h:395
@ CMSG_PET_BATTLE_QUIT_NOTIFY
Definition Opcodes.h:742
@ CMSG_HOUSING_ROOM_MOVE
Definition Opcodes.h:482
@ CMSG_SET_PET_SLOT
Definition Opcodes.h:923
@ CMSG_GOSSIP_REFRESH_OPTIONS
Definition Opcodes.h:404
@ CMSG_NEIGHBORHOOD_CHARTER_EDIT
Definition Opcodes.h:690
@ CMSG_BATTLE_PET_DELETE_PET_CHEAT
Definition Opcodes.h:1045
@ CMSG_CONSUMABLE_TOKEN_REDEEM_CONFIRMATION
Definition Opcodes.h:289
@ CMSG_MOVE_SET_VEHICLE_REC_ID_ACK
Definition Opcodes.h:659
@ CMSG_HOUSING_ROOM_SET_CEILING_TYPE
Definition Opcodes.h:485
@ CMSG_BATTLEMASTER_JOIN_BRAWL
Definition Opcodes.h:108
@ CMSG_QUERY_CORPSE_TRANSPORT
Definition Opcodes.h:760
@ CMSG_SILENCE_PARTY_TALKER
Definition Opcodes.h:946
@ CMSG_PETITION_BUY
Definition Opcodes.h:732
@ CMSG_UPDATE_AADC_STATUS
Definition Opcodes.h:1014
@ CMSG_LFG_LIST_LEAVE
Definition Opcodes.h:533
@ CMSG_CHAT_CHANNEL_MODERATE
Definition Opcodes.h:202
@ CMSG_CANCEL_MOUNT_AURA
Definition Opcodes.h:171
@ CMSG_GARRISON_REQUEST_BLUEPRINT_AND_SPECIALIZATION_DATA
Definition Opcodes.h:369
@ CMSG_MOVE_SET_ADV_FLYING_PITCHING_RATE_UP_ACK
Definition Opcodes.h:641
@ CMSG_HOUSING_DECOR_MOVE
Definition Opcodes.h:461
@ CMSG_COMMENTATOR_ENTER_INSTANCE
Definition Opcodes.h:268
@ CMSG_GUILD_GET_RANKS
Definition Opcodes.h:428
@ CMSG_ADD_ACCOUNT_COSMETIC
Definition Opcodes.h:51
@ CMSG_ATTACK_SWING
Definition Opcodes.h:67
@ CMSG_MOVE_SET_CAN_TURN_WHILE_FALLING_ACK
Definition Opcodes.h:649
@ CMSG_AUTH_SESSION
Definition Opcodes.h:87
@ CMSG_VIOLENCE_LEVEL
Definition Opcodes.h:1034
@ CMSG_BATTLEMASTER_JOIN_RATED_BG_BLITZ
Definition Opcodes.h:109
@ CMSG_CHARACTER_UPGRADE_MANUAL_UNREVOKE_REQUEST
Definition Opcodes.h:187
@ CMSG_HOUSE_EXTERIOR_LOCK
Definition Opcodes.h:456
@ CMSG_CONTENT_TRACKING_START_TRACKING
Definition Opcodes.h:290
@ CMSG_SEND_PING_WORLD_POINT
Definition Opcodes.h:892
@ CMSG_ACCEPT_SOCIAL_CONTRACT
Definition Opcodes.h:41
@ CMSG_WARDEN3_DATA
Definition Opcodes.h:1038
@ CMSG_AZERITE_EMPOWERED_ITEM_VIEWED
Definition Opcodes.h:98
@ CMSG_CRAFTING_ORDER_LIST_MY_ORDERS
Definition Opcodes.h:306
@ CMSG_GARRISON_COMPLETE_MISSION
Definition Opcodes.h:356
@ CMSG_COMMENTATOR_GET_PLAYER_COOLDOWNS
Definition Opcodes.h:271
@ CMSG_GUILD_BANK_QUERY_TAB
Definition Opcodes.h:413
@ CMSG_GUILD_CHALLENGE_UPDATE_REQUEST
Definition Opcodes.h:419
@ CMSG_LEARN_TALENTS
Definition Opcodes.h:523
@ CMSG_CLASS_TALENTS_REQUEST_NEW_CONFIG
Definition Opcodes.h:244
@ CMSG_PERKS_PROGRAM_STATUS_REQUEST
Definition Opcodes.h:731
@ CMSG_MOVE_START_PITCH_UP
Definition Opcodes.h:668
@ CMSG_MOVE_SET_ADV_FLYING_MAX_VEL_ACK
Definition Opcodes.h:638
@ CMSG_DF_PROPOSAL_RESPONSE
Definition Opcodes.h:328
@ CMSG_BATTLEMASTER_HELLO
Definition Opcodes.h:105
@ CMSG_AUCTION_LIST_OWNED_ITEMS
Definition Opcodes.h:79
@ CMSG_UPDATE_AREA_TRIGGER_VISUAL
Definition Opcodes.h:1017
@ CMSG_REQUEST_PARTY_MEMBER_STATS
Definition Opcodes.h:849
@ CMSG_REORDER_CHARACTERS
Definition Opcodes.h:823
@ CMSG_MOVE_SET_TURN_RATE_CHEAT
Definition Opcodes.h:658
@ CMSG_REQUEST_SCHEDULED_AREA_POI_UPDATE
Definition Opcodes.h:856
@ CMSG_GET_CLIENT_CHECKOUT_LICENSES
Definition Opcodes.h:385
@ CMSG_PET_BATTLE_SCRIPT_ERROR_NOTIFY
Definition Opcodes.h:747
@ CMSG_CHAT_REGISTER_ADDON_PREFIXES
Definition Opcodes.h:229
@ CMSG_GET_ACCOUNT_NOTIFICATIONS
Definition Opcodes.h:381
@ CMSG_START_SPECTATOR_WAR_GAME
Definition Opcodes.h:967
@ CMSG_CHOICE_RESPONSE
Definition Opcodes.h:237
@ CMSG_BLACK_MARKET_BID_ON_ITEM
Definition Opcodes.h:137
@ CMSG_ADD_TOY
Definition Opcodes.h:55
@ CMSG_SCENE_TRIGGER_EVENT
Definition Opcodes.h:881
@ CMSG_GUILD_BANK_UPDATE_TAB
Definition Opcodes.h:417
@ CMSG_GAME_OBJ_USE
Definition Opcodes.h:351
@ CMSG_LOBBY_MATCHMAKER_SET_PLAYER_READY
Definition Opcodes.h:554
@ CMSG_SET_PREFERRED_CEMETERY
Definition Opcodes.h:926
@ CMSG_LOGOUT_LOBBY_MATCHMAKER
Definition Opcodes.h:557
@ CMSG_MOVE_SET_FLY
Definition Opcodes.h:653
@ CMSG_HOUSING_SVCS_PLAYER_VIEW_HOUSES_BY_PLAYER
Definition Opcodes.h:499
@ CMSG_MOVE_REMOVE_INERTIA_ACK
Definition Opcodes.h:627
@ CMSG_MOVE_FORCE_FLIGHT_BACK_SPEED_CHANGE_ACK
Definition Opcodes.h:604
@ CMSG_QUICK_JOIN_SIGNAL_TOAST_DISPLAYED
Definition Opcodes.h:807
@ CMSG_CHAT_CHANNEL_ANNOUNCEMENTS
Definition Opcodes.h:195
@ CMSG_MOVE_ENABLE_FULL_SPEED_PITCHING_ACK
Definition Opcodes.h:598
@ CMSG_SUSPEND_TOKEN_RESPONSE
Definition Opcodes.h:976
@ CMSG_CRAFTING_ORDER_RELEASE
Definition Opcodes.h:308
@ CMSG_SPLIT_ITEM_TO_GUILD_BANK
Definition Opcodes.h:963
@ CMSG_HOUSING_DECOR_SET_DYE_SLOTS
Definition Opcodes.h:466
@ CMSG_NEIGHBORHOOD_CANCEL_INVITATION
Definition Opcodes.h:687
@ CMSG_TRANSFER_CURRENCY_FROM_ACCOUNT_CHARACTER
Definition Opcodes.h:1002
@ CMSG_GARRISON_REQUEST_SHIPMENT_INFO
Definition Opcodes.h:370
@ CMSG_SAVE_CUF_PROFILES
Definition Opcodes.h:875
void ValidateAndSetClientOpcode(OpcodeClient opcode, char const *name, SessionStatus status, ClientOpcodeHandler::HandlerFunction call, PacketProcessing processing)
Definition Opcodes.cpp:78
std::array< std::unique_ptr< ClientOpcodeHandler >, NUM_CMSG_OPCODES > _internalTableClient
Definition Opcodes.h:2646
bool IsValid(OpcodeClient index) const
Definition Opcodes.h:2614
ClientOpcodeHandler const * operator[](OpcodeClient index) const
Definition Opcodes.h:2626
ServerOpcodeHandler const * operator[](OpcodeServer index) const
Definition Opcodes.h:2631
void InitializeServerOpcodes()
Definition Opcodes.cpp:1160
bool IsValid(OpcodeServer index) const
Definition Opcodes.h:2620
bool ValidateServerOpcode(OpcodeServer opcode, char const *name, ConnectionType conIdx) const
Definition Opcodes.cpp:91
void Initialize()
Correspondence between opcodes and their names.
Definition Opcodes.cpp:136
void InitializeClientOpcodes()
Definition Opcodes.cpp:142
bool ValidateClientOpcode(OpcodeClient opcode, char const *name) const
Definition Opcodes.cpp:54
std::array< std::unique_ptr< ServerOpcodeHandler >, NUM_SMSG_OPCODES > _internalTableServer
Definition Opcodes.h:2647
void ValidateAndSetServerOpcode(OpcodeServer opcode, char const *name, SessionStatus status, ConnectionType conIdx)
Definition Opcodes.cpp:127
Player session in the World.
HandlerFunction Call
Definition Opcodes.h:2571
void(*)(WorldSession *session, WorldPacket &packet) HandlerFunction
Definition Opcodes.h:2567
SessionStatus Status
Definition Opcodes.h:2570
char const * Name
Definition Opcodes.h:2569
PacketProcessing ProcessingPlace
Definition Opcodes.h:2572
OpcodeEnum Opcode
Definition Opcodes.h:2585
char const * Name
Definition Opcodes.h:2577
SessionStatus Status
Definition Opcodes.h:2578
ConnectionType ConnectionIndex
Definition Opcodes.h:2579
FormatContext::iterator format(FormattedOpcodeName< OpcodeClient > const &opcode, FormatContext &ctx) const
FormatContext::iterator format(FormattedOpcodeName< OpcodeServer > const &opcode, FormatContext &ctx) const