Project SkyFire Core
SkyFire 5.4.8 server core API documentation
Loading...
Searching...
No Matches
Opcodes.h
Go to the documentation of this file.
1/*
2* This file is part of Project SkyFire https://www.projectskyfire.org.
3* See LICENSE.md file for Copyright information
4*/
5
9
10#ifndef SF_OPCODES_H
11#define SF_OPCODES_H
12
13#include "Common.h"
14
15#define MAX_OPCODE 0x1FFF
16#define NUM_OPCODE_HANDLERS 0x7FFF
17#define COMPRESSED_OPCODE_MASK 0x8000
18
21{
22 NULL_OPCODE, // Leave this on on top
23
475
503
1071
1074};
1075
1078{
1079 STATUS_AUTHED = 0, // Player authenticated (_player == NULL, m_playerRecentlyLogout = false or will be reset before handler call, m_GUID have garbage)
1080 STATUS_LOGGEDIN, // Player in game (_player != NULL, m_GUID == _player->GetGUID(), inWorld())
1081 STATUS_TRANSFER, // Player transferring to another map (_player != NULL, m_GUID == _player->GetGUID(), !inWorld())
1082 STATUS_LOGGEDIN_OR_RECENTLY_LOGGOUT, // _player != NULL or _player == NULL && m_playerRecentlyLogout && m_playerLogout, m_GUID store last _player guid)
1083 STATUS_NEVER, // Opcode not accepted from client (deprecated or server side only)
1084 STATUS_UNHANDLED // Opcode not handled yet
1085};
1086
1088{
1089 PROCESS_INPLACE = 0, // Process packet whenever we receive it - mostly for non-handled or non-implemented packets
1090 PROCESS_THREADUNSAFE, // Packet is not thread-safe - process it in World::UpdateSessions()
1091 PROCESS_THREADSAFE // Packet is thread-safe - process it in Map::Update()
1092};
1093
1094class WorldPacket;
1095class WorldSession;
1096
1097typedef void(WorldSession::* pOpcodeHandler)(WorldPacket& recvPacket);
1098
1100{
1101 OpcodeHandler(uint16 opcodeNumber, char const* _name, SessionStatus _status, PacketProcessing _processing, pOpcodeHandler _handler)
1102 : Handler(_handler), Name(_name), Status(_status), ProcessingPlace(_processing), OpcodeNumber(opcodeNumber) { }
1103
1105 char const* Name;
1109};
1110
1112{
1113public:
1115 {
1116 memset(_internalTable, 0, sizeof(_internalTable));
1117 memset(_opcodeTable, 0, sizeof(_opcodeTable));
1118 }
1119
1121 {
1122 for (uint16 i = 0; i < NUM_OPCODES; ++i)
1123 delete _internalTable[i];
1124 }
1125
1126 void InitializeClientTable();
1127 void InitializeServerTable();
1128
1129 inline Opcodes GetOpcodeByNumber(uint16 number) const { return _opcodeTable[number]; }
1130
1131 OpcodeHandler const* operator[](uint32 index) const
1132 {
1133 return _internalTable[index];
1134 }
1135
1136private:
1137 template<bool isInValidRange, bool isNonZero>
1138 void ValidateAndSetOpcode(uint16 opcode, uint16 opcodeNumber, char const* name, SessionStatus status, PacketProcessing processing, pOpcodeHandler handler = 0);
1139
1140 // Prevent copying this structure
1143
1145
1146 // Store opcode / number list - for speed
1148};
1149
1152
1155
1157inline std::string GetOpcodeNameForLogging(Opcodes id, bool isServerOpcode, uint16 opcodeNumber = 0)
1158{
1160 uint16 opcode = opcodeNumber ? opcodeNumber : uint16(id);
1161
1162 std::ostringstream ss;
1163 ss << '[';
1164
1165 if (id < UNKNOWN_OPCODE)
1166 {
1167 if (OpcodeHandler const* handler = table[id])
1168 {
1169 ss << handler->Name;
1170 opcode = handler->OpcodeNumber;
1171 if (opcode & COMPRESSED_OPCODE_MASK)
1172 ss << "_COMPRESSED";
1173 }
1174 else
1175 ss << "UNKNOWN OPCODE";
1176 }
1177 else
1178 ss << "INVALID OPCODE";
1179
1180 ss << " 0x" << std::hex << std::uppercase << opcode << std::nouppercase << " (" << std::dec << opcode << ")]";
1181 return ss.str();
1182}
1183
1184#endif
const AuthHandler table[]
@ STATUS_AUTHED
std::uint32_t uint32
Definition Define.h:77
std::uint16_t uint16
Definition Define.h:78
OpcodeTable & operator=(OpcodeTable const &)
OpcodeHandler * _internalTable[NUM_OPCODES]
Definition Opcodes.h:1144
void InitializeServerTable()
Definition Opcodes.cpp:532
Opcodes GetOpcodeByNumber(uint16 number) const
Definition Opcodes.h:1129
OpcodeTable(OpcodeTable const &)
OpcodeHandler const * operator[](uint32 index) const
Definition Opcodes.h:1131
void ValidateAndSetOpcode(uint16 opcode, uint16 opcodeNumber, char const *name, SessionStatus status, PacketProcessing processing, pOpcodeHandler handler=0)
Definition Opcodes.cpp:13
void InitializeClientTable()
Correspondence between opcodes and their names.
Definition Opcodes.cpp:44
Opcodes _opcodeTable[NUM_OPCODE_HANDLERS]
Definition Opcodes.h:1147
Player session in the World.
#define COMPRESSED_OPCODE_MASK
Definition Opcodes.h:17
std::string GetOpcodeNameForLogging(Opcodes id, bool isServerOpcode, uint16 opcodeNumber=0)
Lookup opcode name for human understandable logging.
Definition Opcodes.h:1157
OpcodeTable clientOpcodeTable
Definition Opcodes.cpp:10
OpcodeTable serverOpcodeTable
Definition Opcodes.cpp:9
SessionStatus
Player state.
Definition Opcodes.h:1078
Opcodes
List of Opcodes.
Definition Opcodes.h:21
void(WorldSession::* pOpcodeHandler)(WorldPacket &recvPacket)
Definition Opcodes.h:1097
void InitializeServerTable()
PacketProcessing
Definition Opcodes.h:1088
#define NUM_OPCODE_HANDLERS
Definition Opcodes.h:16
void InitializeClientTable()
@ STATUS_LOGGEDIN
Definition Opcodes.h:1080
@ STATUS_LOGGEDIN_OR_RECENTLY_LOGGOUT
Definition Opcodes.h:1082
@ STATUS_TRANSFER
Definition Opcodes.h:1081
@ STATUS_NEVER
Definition Opcodes.h:1083
@ STATUS_UNHANDLED
Definition Opcodes.h:1084
@ SMSG_VOID_TRANSFER_RESULT
Definition Opcodes.h:1063
@ SMSG_SET_FACTION_VISIBLE
Definition Opcodes.h:953
@ CMSG_TIME_SYNC_RESPONSE
Definition Opcodes.h:452
@ CMSG_PET_CAST_SPELL
Definition Opcodes.h:341
@ CMSG_QUERY_GUILD_REWARDS
Definition Opcodes.h:351
@ CMSG_CALENDAR_EVENT_MODERATOR_STATUS
Definition Opcodes.h:90
@ SMSG_PET_BATTLE_FIRST_ROUND
Definition Opcodes.h:859
@ SMSG_RAID_READY_CHECK_COMPLETED
Definition Opcodes.h:921
@ SMSG_LOOT_CLEAR_MONEY
Definition Opcodes.h:767
@ CMSG_TURN_IN_PETITION
Definition Opcodes.h:458
@ CMSG_CALENDAR_ADD_EVENT
Definition Opcodes.h:86
@ CMSG_ACCEPT_TRADE
Definition Opcodes.h:25
@ CMSG_AUCTION_SELL_ITEM
Definition Opcodes.h:44
@ SMSG_GUILD_SET_GUILD_MASTER
Definition Opcodes.h:713
@ SMSG_ZONE_UNDER_ATTACK
Definition Opcodes.h:1070
@ CMSG_RAID_READY_CHECK
Definition Opcodes.h:369
@ SMSG_REALM_NAME_QUERY_RESPONSE
Definition Opcodes.h:929
@ CMSG_LFD_LOCK_INFO_REQUEST
Definition Opcodes.h:239
@ SMSG_READ_ITEM_RESULT_FAILED
Definition Opcodes.h:927
@ CMSG_ATTACKSWING
Definition Opcodes.h:36
@ SMSG_GUILD_ROSTER
Definition Opcodes.h:712
@ CMSG_CALENDAR_EVENT_REMOVE_INVITE
Definition Opcodes.h:91
@ SMSG_MOVE_SET_FLIGHT_SPEED
Definition Opcodes.h:802
@ CMSG_GUILD_SET_NOTE
Definition Opcodes.h:224
@ SMSG_USE_EQUIPMENT_SET_RESULT
Definition Opcodes.h:1059
@ CMSG_SUGGESTION_SUBMIT
Definition Opcodes.h:446
@ CMSG_SPELLCLICK
Definition Opcodes.h:441
@ CMSG_MESSAGECHAT_ADDON_GUILD
Definition Opcodes.h:270
@ CMSG_COMPLAIN
Definition Opcodes.h:134
@ SMSG_PET_UPDATE_COMBO_POINTS
Definition Opcodes.h:874
@ SMSG_PET_BATTLE_CHAT_RESTRICTED
Definition Opcodes.h:854
@ SMSG_MOVE_SET_FLIGHT_BACK_SPEED
Definition Opcodes.h:801
@ SMSG_AUCTION_HELLO
Definition Opcodes.h:526
@ SMSG_VOID_STORAGE_TRANSFER_CHANGES
Definition Opcodes.h:1062
@ SMSG_CHAT_WRONG_FACTION
Definition Opcodes.h:613
@ MSG_MOVE_SET_FACING
Definition Opcodes.h:479
@ CMSG_PETITION_DECLINE
Definition Opcodes.h:323
@ SMSG_LOAD_EQUIPMENT_SET
Definition Opcodes.h:759
@ CMSG_GUILD_DEL_RANK
Definition Opcodes.h:204
@ SMSG_PET_BATTLE_ROUND_RESULT
Definition Opcodes.h:866
@ SMSG_ITEM_EXPIRE_PURCHASE_REFUND
Definition Opcodes.h:730
@ SMSG_CHAT_PLAYER_NOT_FOUND
Definition Opcodes.h:611
@ SMSG_MOVE_LAND_WALK
Definition Opcodes.h:792
@ SMSG_SPLINE_MOVE_STOP_SWIM
Definition Opcodes.h:1012
@ CMSG_ADDON_REGISTERED_PREFIXES
Definition Opcodes.h:28
@ CMSG_ENUM_CHARACTERS
Definition Opcodes.h:153
@ CMSG_FAR_SIGHT
Definition Opcodes.h:157
@ MSG_MOVE_START_BACKWARD
Definition Opcodes.h:484
@ CMSG_EJECT_PASSENGER
Definition Opcodes.h:149
@ SMSG_ADDON_INFO
Definition Opcodes.h:509
@ CMSG_LOGOUT_REQUEST
Definition Opcodes.h:255
@ CMSG_SET_WATCHED_FACTION
Definition Opcodes.h:437
@ SMSG_PARTY_COMMAND_RESULT
Definition Opcodes.h:844
@ SMSG_PARTYKILLLOG
Definition Opcodes.h:843
@ CMSG_PET_RENAME
Definition Opcodes.h:343
@ CMSG_UNREGISTER_ALL_ADDON_PREFIXES
Definition Opcodes.h:464
@ CMSG_QUEST_QUERY
Definition Opcodes.h:368
@ CMSG_GM_SURVEY_SUBMIT
Definition Opcodes.h:168
@ SMSG_NEW_WORLD
Definition Opcodes.h:834
@ CMSG_GUILD_SET_RANK_PERMISSIONS
Definition Opcodes.h:225
@ SMSG_MOVE_UPDATE_PITCH_RATE
Definition Opcodes.h:823
@ CMSG_MESSAGECHAT_YELL
Definition Opcodes.h:285
@ SMSG_QUESTGIVER_QUEST_LIST
Definition Opcodes.h:903
@ CMSG_REPORT_PVP_AFK
Definition Opcodes.h:382
@ CMSG_MESSAGECHAT_CHANNEL
Definition Opcodes.h:275
@ CMSG_REPAIR_ITEM
Definition Opcodes.h:380
@ SMSG_QUESTUPDATE_ADD_CREDIT
Definition Opcodes.h:907
@ SMSG_PET_BATTLE_PVP_CHALLENGE
Definition Opcodes.h:862
@ CMSG_QUERY_GUILD_XP
Definition Opcodes.h:352
@ CMSG_GET_MIRROR_IMAGE_DATA
Definition Opcodes.h:166
@ SMSG_SPELL_CHANNEL_UPDATE
Definition Opcodes.h:978
@ SMSG_CALENDAR_SEND_EVENT
Definition Opcodes.h:590
@ SMSG_PLAY_SCENE
Definition Opcodes.h:882
@ CMSG_LEARN_TALENT
Definition Opcodes.h:235
@ SMSG_SPELL_EXECUTE_LOG
Definition Opcodes.h:982
@ CMSG_REQUEST_VEHICLE_SWITCH_SEAT
Definition Opcodes.h:400
@ CMSG_CHANNEL_BAN
Definition Opcodes.h:112
@ SMSG_BATTLEFIELD_LIST
Definition Opcodes.h:536
@ CMSG_SEND_MAIL
Definition Opcodes.h:410
@ SMSG_BATTLE_PET_JOURNAL_LOCK_ACQUIRED
Definition Opcodes.h:557
@ CMSG_PET_STOP_ATTACK
Definition Opcodes.h:346
@ CMSG_CHANNEL_KICK
Definition Opcodes.h:115
@ SMSG_CHALLENGE_MODE_REWARDS
Definition Opcodes.h:599
@ SMSG_LOOT_REMOVED
Definition Opcodes.h:772
@ CMSG_MESSAGECHAT_ADDON_WHISPER
Definition Opcodes.h:274
@ SMSG_TOTEM_CREATED
Definition Opcodes.h:1032
@ SMSG_CHAR_RENAME
Definition Opcodes.h:609
@ SMSG_INSTANCE_RESET
Definition Opcodes.h:724
@ CMSG_GUILD_ROSTER
Definition Opcodes.h:222
@ CMSG_GM_TICKET_DELETE_TICKET
Definition Opcodes.h:171
@ CMSG_LOOT
Definition Opcodes.h:257
@ CMSG_PET_ACTION
Definition Opcodes.h:330
@ SMSG_AE_LOOT_TARGETS
Definition Opcodes.h:511
@ SMSG_GM_TICKET_CASE_STATUS
Definition Opcodes.h:662
@ CMSG_LFD_TELEPORT
Definition Opcodes.h:242
@ CMSG_GUILD_BANK_QUERY_TEXT
Definition Opcodes.h:199
@ SMSG_CALENDAR_SEND_NUM_PENDING
Definition Opcodes.h:591
@ SMSG_ACHIEVEMENT_EARNED
Definition Opcodes.h:507
@ SMSG_GUILD_RANKS_UPDATE
Definition Opcodes.h:708
@ SMSG_MOVE_ROOT
Definition Opcodes.h:795
@ CMSG_REPOP_REQUEST
Definition Opcodes.h:381
@ SMSG_RESEARCH_COMPLETE
Definition Opcodes.h:937
@ CMSG_UNACCEPT_TRADE
Definition Opcodes.h:462
@ SMSG_SET_VEHICLE_REC_ID
Definition Opcodes.h:965
@ SMSG_ACCOUNT_DATA_TIMES
Definition Opcodes.h:505
@ MSG_MOVE_STOP_PITCH
Definition Opcodes.h:496
@ SMSG_MOVE_FEATHER_FALL
Definition Opcodes.h:788
@ CMSG_TOTEM_DESTROYED
Definition Opcodes.h:454
@ SMSG_MOVE_SET_HOVER
Definition Opcodes.h:803
@ CMSG_PETITION_QUERY
Definition Opcodes.h:324
@ MSG_MOVE_SET_RUN_MODE
Definition Opcodes.h:481
@ CMSG_BATTLE_PET_SUMMON_COMPANION
Definition Opcodes.h:74
@ CMSG_PET_ABANDON
Definition Opcodes.h:329
@ CMSG_BUY_ITEM
Definition Opcodes.h:85
@ SMSG_VOID_STORAGE_CONTENTS
Definition Opcodes.h:1061
@ CMSG_SHOWING_HELM
Definition Opcodes.h:439
@ SMSG_BATTLEFIELD_STATUS_ACTIVE
Definition Opcodes.h:545
@ CMSG_PVP_LOG_DATA
Definition Opcodes.h:350
@ SMSG_PVP_SEASON
Definition Opcodes.h:894
@ SMSG_SPELL_CHANNEL_START
Definition Opcodes.h:977
@ SMSG_CREATURE_QUERY_RESPONSE
Definition Opcodes.h:628
@ SMSG_CHAR_CREATE
Definition Opcodes.h:605
@ CMSG_CANCEL_AURA
Definition Opcodes.h:100
@ SMSG_AREA_SPIRIT_HEALER_TIME
Definition Opcodes.h:515
@ SMSG_LFD_UPDATE_STATUS
Definition Opcodes.h:747
@ CMSG_MOVE_GRAVITY_ENABLE_ACK
Definition Opcodes.h:302
@ MSG_MOVE_START_TURN_RIGHT
Definition Opcodes.h:493
@ SMSG_PLAY_SPELL_VISUAL
Definition Opcodes.h:884
@ CMSG_QUEST_CONFIRM_ACCEPT
Definition Opcodes.h:356
@ SMSG_GUILD_QUERY_RESPONSE
Definition Opcodes.h:706
@ CMSG_AUTH_CONTINUED_SESSION
Definition Opcodes.h:45
@ CMSG_CHANNEL_PASSWORD
Definition Opcodes.h:120
@ SMSG_MOVE_SET_VEHICLE_REC_ID
Definition Opcodes.h:810
@ CMSG_ENABLE_TAXI
Definition Opcodes.h:152
@ SMSG_CHANNEL_LIST
Definition Opcodes.h:600
@ CMSG_CHANNEL_SET_OWNER
Definition Opcodes.h:121
@ SMSG_MOVE_UNROOT
Definition Opcodes.h:813
@ SMSG_CHAR_FACTION_CHANGE
Definition Opcodes.h:608
@ SMSG_ENCHANTMENT_LOG
Definition Opcodes.h:649
@ SMSG_PAGE_TEXT_QUERY_RESPONSE
Definition Opcodes.h:842
@ CMSG_LOADING_SCREEN_NOTIFY
Definition Opcodes.h:253
@ CMSG_LOOT_RELEASE
Definition Opcodes.h:260
@ SMSG_BATTLEFIELD_STATUS
Definition Opcodes.h:544
@ SMSG_LFD_DISABLED
Definition Opcodes.h:738
@ CMSG_MAIL_QUERY_NEXT_TIME
Definition Opcodes.h:265
@ CMSG_AUTOSTORE_BAG_ITEM
Definition Opcodes.h:50
@ CMSG_RANDOMIZE_CHAR_NAME
Definition Opcodes.h:372
@ CMSG_TOGGLE_PVP
Definition Opcodes.h:453
@ SMSG_MOVE_SET_RUN_BACK_SPEED
Definition Opcodes.h:805
@ CMSG_CALENDAR_EVENT_INVITE
Definition Opcodes.h:89
@ SMSG_GROUP_LIST
Definition Opcodes.h:674
@ CMSG_GUILD_ACCEPT
Definition Opcodes.h:188
@ CMSG_SET_FACTION_INACTIVE
Definition Opcodes.h:421
@ SMSG_DEFENSE_MESSAGE
Definition Opcodes.h:634
@ CMSG_LIST_INVENTORY
Definition Opcodes.h:252
@ CMSG_RECLAIM_CORPSE
Definition Opcodes.h:377
@ SMSG_SPLINE_MOVE_START_SWIM
Definition Opcodes.h:1011
@ SMSG_RESPEC_WIPE_CONFIRM
Definition Opcodes.h:940
@ CMSG_BATTLEFIELD_STATUS
Definition Opcodes.h:62
@ CMSG_GUILD_BANK_DEPOSIT_MONEY
Definition Opcodes.h:194
@ CMSG_MOUNTSPECIAL_ANIM
Definition Opcodes.h:287
@ SMSG_GM_TICKET_SYSTEM_STATUS
Definition Opcodes.h:666
@ SMSG_PETITION_SHOWLIST
Definition Opcodes.h:849
@ SMSG_SPELLLOGMISS
Definition Opcodes.h:974
@ SMSG_SPLINE_MOVE_SET_RUN_MODE
Definition Opcodes.h:1003
@ CMSG_GUILD_LEAVE
Definition Opcodes.h:210
@ SMSG_CALENDAR_CLEAR_PENDING_ACTION
Definition Opcodes.h:574
@ SMSG_CALENDAR_COMMAND_RESULT
Definition Opcodes.h:575
@ CMSG_CREATURE_QUERY
Definition Opcodes.h:140
@ SMSG_BATTLE_PAY_BOOST_ITEMS
Definition Opcodes.h:551
@ SMSG_PET_ACTION_FEEDBACK
Definition Opcodes.h:852
@ CMSG_MOVE_SET_CAN_FLY_ACK
Definition Opcodes.h:306
@ CMSG_PET_BATTLE_REQUEST_UPDATE
Definition Opcodes.h:336
@ SMSG_SPELL_FAILURE
Definition Opcodes.h:984
@ SMSG_SET_FACTION_STANDING
Definition Opcodes.h:952
@ SMSG_PET_SPELLS_MESSAGE
Definition Opcodes.h:872
@ SMSG_PET_BATTLE_INITIAL_UPDATE
Definition Opcodes.h:860
@ SMSG_RAID_INSTANCE_MESSAGE
Definition Opcodes.h:919
@ SMSG_BATTLEFIELD_STATUS_NEEDCONFIRMATION
Definition Opcodes.h:547
@ SMSG_BLACKMARKET_OUT_BID
Definition Opcodes.h:567
@ SMSG_UPDATE_CURRENCY
Definition Opcodes.h:1048
@ SMSG_COOLDOWN_EVENT
Definition Opcodes.h:623
@ SMSG_BUY_ITEM
Definition Opcodes.h:572
@ CMSG_CALENDAR_GET_EVENT
Definition Opcodes.h:96
@ CMSG_GUILD_SET_GUILD_MASTER
Definition Opcodes.h:223
@ CMSG_LEAVE_CHANNEL
Definition Opcodes.h:236
@ CMSG_CALENDAR_EVENT_STATUS
Definition Opcodes.h:94
@ SMSG_LFD_BOOT_PROPOSAL_UPDATE
Definition Opcodes.h:737
@ CMSG_TRANSMOGRIFY_ITEMS
Definition Opcodes.h:457
@ SMSG_CORPSE_MAP_POSITION_QUERY_RESPONSE
Definition Opcodes.h:624
@ SMSG_LOOT_MASTER_LIST
Definition Opcodes.h:769
@ SMSG_BATTLEFIELD_MGR_EJECTED
Definition Opcodes.h:537
@ SMSG_MOVE_WATER_WALK
Definition Opcodes.h:832
@ CMSG_GUILD_BANK_WITHDRAW_MONEY
Definition Opcodes.h:202
@ MSG_MOVE_STOP_ASCEND
Definition Opcodes.h:495
@ SMSG_UPDATE_INSTANCE_ENCOUNTER_UNIT
Definition Opcodes.h:1050
@ CMSG_SET_CONTACT_NOTES
Definition Opcodes.h:416
@ SMSG_PET_BATTLE_QUEUE_PROPOSE_MATCH
Definition Opcodes.h:863
@ CMSG_TUTORIAL_FLAG
Definition Opcodes.h:460
@ CMSG_CHANNEL_UNMUTE
Definition Opcodes.h:124
@ SMSG_QUESTUPDATE_ADD_PVP_KILL
Definition Opcodes.h:908
@ CMSG_MOVE_FORCE_SWIM_SPEED_CHANGE_ACK
Definition Opcodes.h:298
@ SMSG_GM_TICKET_RESOLVE_RESPONSE
Definition Opcodes.h:664
@ SMSG_SPLINE_MOVE_GRAVITY_DISABLE
Definition Opcodes.h:991
@ SMSG_SPLINE_MOVE_SET_RUN_SPEED
Definition Opcodes.h:1004
@ SMSG_USERLIST_REMOVE
Definition Opcodes.h:1057
@ CMSG_SET_FACTION_NOTATWAR
Definition Opcodes.h:422
@ CMSG_GM_TICKET_CREATE
Definition Opcodes.h:170
@ SMSG_SPELLORDAMAGE_IMMUNE
Definition Opcodes.h:975
@ CMSG_SET_TRADE_GOLD
Definition Opcodes.h:434
@ SMSG_QUESTLOG_FULL
Definition Opcodes.h:906
@ CMSG_REALM_NAME_QUERY
Definition Opcodes.h:376
@ MSG_MOVE_SET_PITCH
Definition Opcodes.h:480
@ CMSG_PETITION_SHOWLIST
Definition Opcodes.h:326
@ SMSG_CHALLENGE_MODE_ALL_MAP_STATS
Definition Opcodes.h:597
@ CMSG_BATTLEMASTER_JOIN
Definition Opcodes.h:63
@ CMSG_AUCTION_LIST_ITEMS
Definition Opcodes.h:39
@ CMSG_GROUP_SET_ROLES
Definition Opcodes.h:186
@ CMSG_CHANNEL_OWNER
Definition Opcodes.h:119
@ SMSG_TITLE_LOST
Definition Opcodes.h:1031
@ SMSG_LFD_QUEUE_STATUS
Definition Opcodes.h:744
@ SMSG_GOSSIP_MESSAGE
Definition Opcodes.h:669
@ SMSG_PAGETEXT
Definition Opcodes.h:841
@ CMSG_MOVE_APPLY_MOVEMENT_FORCE_ACK
Definition Opcodes.h:288
@ SMSG_TIME_SYNC_REQUEST
Definition Opcodes.h:1029
@ SMSG_SET_PROFICIENCY
Definition Opcodes.h:961
@ SMSG_GUILD_CHALLENGE_UPDATED
Definition Opcodes.h:686
@ CMSG_CHALLENGE_MODE_REQUEST_MAP_STATS
Definition Opcodes.h:109
@ SMSG_QUERY_PLAYER_NAME_RESPONSE
Definition Opcodes.h:895
@ SMSG_MOVE_UPDATE_REMOVE_MOVEMENT_FORCE
Definition Opcodes.h:824
@ CMSG_USE_ITEM
Definition Opcodes.h:466
@ CMSG_QUEST_POI_QUERY
Definition Opcodes.h:366
@ CMSG_BATTLE_PET_REQUEST_JOURNAL
Definition Opcodes.h:71
@ SMSG_MOVE_UPDATE_TELEPORT
Definition Opcodes.h:829
@ SMSG_BATTLE_PET_CAGE_DATE_ERROR
Definition Opcodes.h:553
@ SMSG_SERVER_FIRST_ACHIEVEMENT
Definition Opcodes.h:948
@ SMSG_GUILD_BANK_LIST
Definition Opcodes.h:682
@ SMSG_GUILD_EVENT_BANK_MONEY_CHANGED
Definition Opcodes.h:692
@ CMSG_LFD_JOIN
Definition Opcodes.h:237
@ SMSG_MISSILE_CANCEL
Definition Opcodes.h:783
@ CMSG_MESSAGECHAT_RAID_WARNING
Definition Opcodes.h:282
@ CMSG_OPEN_ITEM
Definition Opcodes.h:319
@ SMSG_GAMEOBJECT_DESPAWN_ANIM
Definition Opcodes.h:660
@ MSG_MOVE_START_TURN_LEFT
Definition Opcodes.h:492
@ CMSG_BATTLEFIELD_MGR_EXIT_REQUEST
Definition Opcodes.h:58
@ CMSG_READ_ITEM
Definition Opcodes.h:375
@ SMSG_GUILD_EVENT_BANK_TAB_ADDED
Definition Opcodes.h:693
@ SMSG_INITIALIZE_FACTIONS
Definition Opcodes.h:719
@ SMSG_ITEM_PUSH_RESULT
Definition Opcodes.h:732
@ CMSG_SOCKET_GEMS
Definition Opcodes.h:440
@ SMSG_SET_PROJECTILE_POSITION
Definition Opcodes.h:962
@ MSG_MOVE_START_SWIM
Definition Opcodes.h:491
@ SMSG_LFD_JOIN_RESULT
Definition Opcodes.h:739
@ SMSG_MOVE_KNOCK_BACK
Definition Opcodes.h:791
@ SMSG_MOVE_UPDATE_APPLY_MOVEMENT_FORCE
Definition Opcodes.h:818
@ SMSG_GUILD_ACHIEVEMENT_EARNED
Definition Opcodes.h:681
@ CMSG_SET_TITLE
Definition Opcodes.h:433
@ MSG_VERIFY_CONNECTIVITY
Definition Opcodes.h:502
@ SMSG_SPELLINTERRUPTLOG
Definition Opcodes.h:973
@ CMSG_GUILD_DEMOTE
Definition Opcodes.h:205
@ SMSG_DESTROY_OBJECT
Definition Opcodes.h:635
@ SMSG_SPLINE_MOVE_SET_PITCH_RATE
Definition Opcodes.h:1001
@ SMSG_PLAY_SPELL_VISUAL_KIT
Definition Opcodes.h:885
@ SMSG_QUEST_NPC_QUERY_RESPONSE
Definition Opcodes.h:913
@ SMSG_ACCOUNT_CRITERIA_UPDATE
Definition Opcodes.h:504
@ SMSG_TRIGGER_CINEMATIC
Definition Opcodes.h:1039
@ SMSG_BLACKMARKET_REQUEST_ITEMS_RESULT
Definition Opcodes.h:568
@ CMSG_MOVE_REMOVE_MOVEMENT_FORCE_ACK
Definition Opcodes.h:305
@ SMSG_SOCKET_GEMS_RESULT
Definition Opcodes.h:969
@ SMSG_TABARD_VENDOR_ACTIVATE
Definition Opcodes.h:1023
@ SMSG_BATTLE_PET_SLOT_UPDATE
Definition Opcodes.h:561
@ SMSG_BUY_FAILED
Definition Opcodes.h:571
@ SMSG_AURA_UPDATE
Definition Opcodes.h:532
@ CMSG_AUTOSTORE_LOOT_ITEM
Definition Opcodes.h:52
@ SMSG_ARENA_TEAM_STATS
Definition Opcodes.h:517
@ SMSG_SET_DUNGEON_DIFFICULTY
Definition Opcodes.h:951
@ CMSG_MESSAGECHAT_ADDON_BATTLEGROUND
Definition Opcodes.h:269
@ SMSG_PET_BATTLE_FINALIZE_LOCATION
Definition Opcodes.h:856
@ SMSG_GUILD_PARTY_STATE_RESPONSE
Definition Opcodes.h:704
@ SMSG_COMPLAIN_RESULT
Definition Opcodes.h:619
@ MSG_MOVE_STOP_STRAFE
Definition Opcodes.h:497
@ SMSG_TRAINER_BUY_FAILED
Definition Opcodes.h:1035
@ SMSG_DUEL_INBOUNDS
Definition Opcodes.h:642
@ SMSG_WHO
Definition Opcodes.h:1067
@ CMSG_DUEL_RESPONSE
Definition Opcodes.h:148
@ SMSG_BATTLEFIELD_MGR_ENTRY_INVITE
Definition Opcodes.h:539
@ SMSG_SET_PLAYER_DECLINED_NAMES_RESULT
Definition Opcodes.h:960
@ SMSG_SPLINE_MOVE_SET_FLIGHT_SPEED
Definition Opcodes.h:996
@ SMSG_CHANNEL_NOTIFY
Definition Opcodes.h:602
@ SMSG_QUESTGIVER_STATUS
Definition Opcodes.h:905
@ SMSG_SELL_RESPONSE
Definition Opcodes.h:944
@ CMSG_MOVE_TIME_SKIPPED
Definition Opcodes.h:312
@ SMSG_GUILD_NEWS_UPDATE
Definition Opcodes.h:703
@ SMSG_CALENDAR_EVENT_UPDATED_ALERT
Definition Opcodes.h:585
@ SMSG_PROCRESIST
Definition Opcodes.h:889
@ SMSG_BLACKMARKET_BID_WON
Definition Opcodes.h:565
@ CMSG_MOVE_FORCE_TURN_RATE_CHANGE_ACK
Definition Opcodes.h:299
@ SMSG_LOOT_RESPONSE
Definition Opcodes.h:773
@ CMSG_CHANNEL_MUTE
Definition Opcodes.h:118
@ CMSG_QUEST_GIVER_QUERY_QUEST
Definition Opcodes.h:361
@ CMSG_CHANNEL_UNBAN
Definition Opcodes.h:122
@ SMSG_QUESTGIVER_QUEST_FAILED
Definition Opcodes.h:901
@ CMSG_MAIL_TAKE_MONEY
Definition Opcodes.h:268
@ SMSG_DUEL_WINNER
Definition Opcodes.h:645
@ CMSG_SEND_TEXT_EMOTE
Definition Opcodes.h:411
@ MSG_SAVE_GUILD_EMBLEM
Definition Opcodes.h:501
@ SMSG_CALENDAR_SEND_CALENDAR
Definition Opcodes.h:589
@ SMSG_CROSSED_INEBRIATION_THRESHOLD
Definition Opcodes.h:631
@ CMSG_COMPLETE_CINEMATIC
Definition Opcodes.h:135
@ CMSG_QUEST_GIVER_REQUEST_REWARD
Definition Opcodes.h:362
@ CMSG_CALENDAR_GET_NUM_PENDING
Definition Opcodes.h:97
@ SMSG_READ_ITEM_RESULT_OK
Definition Opcodes.h:928
@ CMSG_SELF_RES
Definition Opcodes.h:408
@ CMSG_ACTIVATE_TAXI
Definition Opcodes.h:26
@ CMSG_REQUEST_VEHICLE_NEXT_SEAT
Definition Opcodes.h:398
@ SMSG_NOTIFICATION
Definition Opcodes.h:835
@ SMSG_CALENDAR_EVENT_INVITE
Definition Opcodes.h:577
@ UNKNOWN_OPCODE
Definition Opcodes.h:1073
@ SMSG_PETITION_SHOW_SIGNATURES
Definition Opcodes.h:850
@ SMSG_TRIGGER_MOVIE
Definition Opcodes.h:1040
@ SMSG_DISPLAY_GAME_ERROR
Definition Opcodes.h:639
@ SMSG_LIST_INVENTORY
Definition Opcodes.h:757
@ SMSG_RESPOND_INSPECT_ACHIEVEMENTS
Definition Opcodes.h:941
@ CMSG_PET_BATTLE_STOP_PVP_MATCHMAKING
Definition Opcodes.h:339
@ SMSG_MESSAGECHAT
Definition Opcodes.h:779
@ SMSG_MOUNTSPECIAL_ANIM
Definition Opcodes.h:786
@ SMSG_CALENDAR_EVENT_INVITE_REMOVED
Definition Opcodes.h:579
@ CMSG_GROUP_ASSISTANT_LEADER
Definition Opcodes.h:178
@ CMSG_TUTORIAL_RESET
Definition Opcodes.h:461
@ CMSG_PET_BATTLE_FINAL_NOTIFY
Definition Opcodes.h:331
@ SMSG_BATTLE_PAY_DISTRIBUTION_UPDATE
Definition Opcodes.h:552
@ SMSG_CANCEL_COMBAT
Definition Opcodes.h:593
@ CMSG_CANCEL_CAST
Definition Opcodes.h:102
@ SMSG_LOOT_START_ROLL
Definition Opcodes.h:776
@ CMSG_GM_TICKET_GET_TICKET
Definition Opcodes.h:172
@ CMSG_GOSSIP_SELECT_OPTION
Definition Opcodes.h:176
@ CMSG_BLACKMARKET_REQUEST_ITEMS
Definition Opcodes.h:80
@ SMSG_PET_NAME_INVALID
Definition Opcodes.h:869
@ SMSG_SET_FORCED_REACTIONS
Definition Opcodes.h:955
@ SMSG_SPELL_NON_MELEE_DAMAGE_LOG
Definition Opcodes.h:987
@ SMSG_BREAK_TARGET
Definition Opcodes.h:569
@ SMSG_GUILD_REWARDS_LIST
Definition Opcodes.h:711
@ CMSG_REQUEST_STABLED_PETS
Definition Opcodes.h:396
@ CMSG_REQUEST_VEHICLE_PREV_SEAT
Definition Opcodes.h:399
@ SMSG_CLEAR_TARGET
Definition Opcodes.h:616
@ SMSG_AUCTION_BIDDER_LIST_RESULT
Definition Opcodes.h:523
@ SMSG_RAID_READY_CHECK_CONFIRM
Definition Opcodes.h:922
@ CMSG_INSPECT_HONOR_STATS
Definition Opcodes.h:230
@ SMSG_RECEIVED_MAIL
Definition Opcodes.h:931
@ CMSG_MESSAGECHAT_ADDON_PARTY
Definition Opcodes.h:272
@ CMSG_RANDOM_ROLL
Definition Opcodes.h:373
@ SMSG_GOSSIP_POI
Definition Opcodes.h:670
@ SMSG_LOG_XPGAIN
Definition Opcodes.h:765
@ CMSG_GUILD_QUERY_RANKS
Definition Opcodes.h:217
@ SMSG_PVP_CREDIT
Definition Opcodes.h:891
@ SMSG_RANDOM_ROLL
Definition Opcodes.h:926
@ CMSG_RAID_READY_CHECK_CONFIRM
Definition Opcodes.h:370
@ SMSG_GROUP_UNINVITE
Definition Opcodes.h:678
@ SMSG_INSPECT_HONOR_STATS
Definition Opcodes.h:721
@ CMSG_AUTOEQUIP_ITEM_SLOT
Definition Opcodes.h:49
@ SMSG_TRADE_STATUS
Definition Opcodes.h:1033
@ SMSG_SETUP_CURRENCY
Definition Opcodes.h:950
@ SMSG_WHOIS
Definition Opcodes.h:1068
@ CMSG_CHANNEL_LIST
Definition Opcodes.h:116
@ CMSG_REQUEST_VEHICLE_EXIT
Definition Opcodes.h:397
@ CMSG_CHALLENGE_MODE_REQUEST_LEADERS
Definition Opcodes.h:108
@ CMSG_CORPSE_QUERY
Definition Opcodes.h:139
@ SMSG_LF_GUILD_MEMBERSHIP_LIST_UPDATED
Definition Opcodes.h:754
@ CMSG_QUEST_NPC_QUERY
Definition Opcodes.h:365
@ SMSG_LFD_PLAYER_INFO
Definition Opcodes.h:742
@ SMSG_CALENDAR_EVENT_REMOVED_ALERT
Definition Opcodes.h:584
@ SMSG_SPLINE_MOVE_SET_NORMAL_FALL
Definition Opcodes.h:1000
@ SMSG_WORLD_SERVER_INFO
Definition Opcodes.h:1069
@ CMSG_GUILD_INVITE
Definition Opcodes.h:209
@ CMSG_BATTLEFIELD_MGR_ENTRY_INVITE_RESPONSE
Definition Opcodes.h:57
@ SMSG_LOOT_ALL_PASSED
Definition Opcodes.h:766
@ CMSG_EMOTE
Definition Opcodes.h:150
@ SMSG_AUCTION_BIDDER_NOTIFICATION
Definition Opcodes.h:524
@ CMSG_WORLD_STATE_UI_TIMER_UPDATE
Definition Opcodes.h:474
@ MSG_MOVE_STOP_TURN
Definition Opcodes.h:499
@ CMSG_GUILD_DECLINE
Definition Opcodes.h:203
@ CMSG_MESSAGECHAT_DND
Definition Opcodes.h:276
@ SMSG_UPDATE_ACCOUNT_DATA
Definition Opcodes.h:1044
@ CMSG_LFD_LEAVE
Definition Opcodes.h:238
@ SMSG_LFG_ROLE_CHOSEN
Definition Opcodes.h:749
@ SMSG_CHALLENGE_MODE_REQUEST_LEADERS_RESULT
Definition Opcodes.h:598
@ CMSG_GROUP_INVITE
Definition Opcodes.h:182
@ SMSG_MOVE_UPDATE_FLIGHT_SPEED
Definition Opcodes.h:821
@ CMSG_MAIL_CREATE_TEXT_ITEM
Definition Opcodes.h:262
@ CMSG_NAME_QUERY
Definition Opcodes.h:314
@ SMSG_SHOW_NEURTRAL_PLAYER_FACTION_SELECT_UI
Definition Opcodes.h:967
@ CMSG_ATTACKSTOP
Definition Opcodes.h:35
@ SMSG_MOVE_SET_PITCH_RATE
Definition Opcodes.h:804
@ SMSG_GROUP_ROLE_POLL_INFORM
Definition Opcodes.h:675
@ SMSG_SPELL_PERIODIC_AURA_LOG
Definition Opcodes.h:988
@ SMSG_MOVE_SET_COLLISION_HEIGHT
Definition Opcodes.h:800
@ CMSG_ITEM_TEXT_QUERY
Definition Opcodes.h:233
@ SMSG_PLAY_OBJECT_SOUND
Definition Opcodes.h:880
@ SMSG_MOVE_GRAVITY_DISABLE
Definition Opcodes.h:789
@ SMSG_REFER_A_FRIEND_FAILURE
Definition Opcodes.h:932
@ SMSG_PET_REMOVED_SPELL
Definition Opcodes.h:871
@ SMSG_BLACKMARKET_HELLO
Definition Opcodes.h:566
@ SMSG_ATTACKER_STATE_UPDATE
Definition Opcodes.h:519
@ MSG_MOVE_JUMP
Definition Opcodes.h:478
@ CMSG_CANCEL_TRADE
Definition Opcodes.h:106
@ SMSG_CONVERT_RUNE
Definition Opcodes.h:622
@ SMSG_LOGOUT_RESPONSE
Definition Opcodes.h:764
@ CMSG_MOVE_FORCE_WALK_SPEED_CHANGE_ACK
Definition Opcodes.h:300
@ SMSG_REFORGE_RESULT
Definition Opcodes.h:933
@ CMSG_LF_GUILD_ADD_APPLICATION
Definition Opcodes.h:245
@ SMSG_CRITERIA_DELETED
Definition Opcodes.h:629
@ CMSG_PET_SET_ACTION
Definition Opcodes.h:344
@ SMSG_CORPSE_NOT_IN_INSTANCE
Definition Opcodes.h:625
@ SMSG_BATTLE_PET_HEALED
Definition Opcodes.h:555
@ SMSG_DISPEL_FAILED
Definition Opcodes.h:638
@ SMSG_MOVE_UPDATE_FLIGHT_BACK_SPEED
Definition Opcodes.h:820
@ SMSG_LOOT_LIST
Definition Opcodes.h:768
@ SMSG_MODIFY_COOLDOWN
Definition Opcodes.h:784
@ SMSG_BATTLE_PET_JOURNAL
Definition Opcodes.h:556
@ SMSG_MOVE_UPDATE_WALK_SPEED
Definition Opcodes.h:831
@ CMSG_SET_FACTION_ATWAR
Definition Opcodes.h:420
@ CMSG_CLEAR_TRADE_ITEM
Definition Opcodes.h:133
@ SMSG_PRE_RESURRECT
Definition Opcodes.h:888
@ CMSG_SET_ACTIONBAR_TOGGLES
Definition Opcodes.h:413
@ SMSG_MOVE_SET_CAN_TURN_WHILE_FALLING
Definition Opcodes.h:799
@ SMSG_GUILD_RANKS
Definition Opcodes.h:707
@ CMSG_BLACKMARKET_HELLO
Definition Opcodes.h:79
@ CMSG_BATTLE_PET_DELETE_PET
Definition Opcodes.h:67
@ SMSG_SPELLSTEALLOG
Definition Opcodes.h:976
@ CMSG_LF_GUILD_REMOVE_APPLICATION
Definition Opcodes.h:250
@ CMSG_GM_TICKET_UPDATE_TEXT
Definition Opcodes.h:174
@ CMSG_OPT_OUT_OF_LOOT
Definition Opcodes.h:320
@ CMSG_DEL_IGNORE
Definition Opcodes.h:142
@ SMSG_GROUP_DESTROYED
Definition Opcodes.h:672
@ SMSG_CALENDAR_RAID_LOCKOUT_ADDED
Definition Opcodes.h:586
@ CMSG_RETURN_TO_GRAVEYARD
Definition Opcodes.h:403
@ CMSG_MOVE_FORCE_FLIGHT_SPEED_CHANGE_ACK
Definition Opcodes.h:293
@ SMSG_RAID_INSTANCE_INFO
Definition Opcodes.h:918
@ CMSG_LFG_GET_STATUS
Definition Opcodes.h:243
@ CMSG_AREA_SPIRIT_HEALER_QUEUE
Definition Opcodes.h:34
@ NUM_OPCODES
Definition Opcodes.h:1072
@ CMSG_EQUIPMENT_SET_SAVE
Definition Opcodes.h:155
@ CMSG_CALENDAR_COMPLAIN
Definition Opcodes.h:87
@ SMSG_REQUEST_CEMETERY_LIST_RESPONSE
Definition Opcodes.h:935
@ SMSG_PROPOSE_LEVEL_GRANT
Definition Opcodes.h:890
@ SMSG_DUEL_OUTOFBOUNDS
Definition Opcodes.h:643
@ SMSG_SPLINE_MOVE_SET_LAND_WALK
Definition Opcodes.h:999
@ SMSG_BATTLEFIELD_RATED_INFO
Definition Opcodes.h:543
@ CMSG_MOVE_FEATHER_FALL_ACK
Definition Opcodes.h:291
@ CMSG_ENABLE_NAGLE
Definition Opcodes.h:151
@ CMSG_OFFER_PETITION
Definition Opcodes.h:317
@ SMSG_PET_BATTLE_MAX_GAME_LENGTH_WARNING
Definition Opcodes.h:861
@ CMSG_MOVE_WATER_WALK_ACK
Definition Opcodes.h:313
@ CMSG_VOID_SWAP_ITEM
Definition Opcodes.h:472
@ SMSG_RAID_TARGET_UPDATE_SINGLE
Definition Opcodes.h:924
@ SMSG_QUEST_GIVER_STATUS_MULTIPLE
Definition Opcodes.h:912
@ SMSG_GUILD_CRITERIA_DELETED
Definition Opcodes.h:689
@ CMSG_CALENDAR_EVENT_SIGNUP
Definition Opcodes.h:93
@ CMSG_TRAINER_LIST
Definition Opcodes.h:456
@ SMSG_ITEM_COOLDOWN
Definition Opcodes.h:728
@ MSG_MOVE_START_STRAFE_RIGHT
Definition Opcodes.h:490
@ SMSG_TRANSFER_PENDING
Definition Opcodes.h:1038
@ CMSG_GUILD_PERMISSIONS
Definition Opcodes.h:213
@ SMSG_MOVE_GRAVITY_ENABLE
Definition Opcodes.h:790
@ SMSG_ARENA_TEAM_EVENT
Definition Opcodes.h:516
@ CMSG_AUTOSTORE_BANK_ITEM
Definition Opcodes.h:51
@ CMSG_PET_BATTLE_SET_FRONT_PET
Definition Opcodes.h:337
@ SMSG_REMOVED_SPELL
Definition Opcodes.h:934
@ SMSG_MOVE_UPDATE_SWIM_SPEED
Definition Opcodes.h:828
@ CMSG_CHAT_MESSAGE_AFK
Definition Opcodes.h:132
@ CMSG_GROUP_CHANGE_SUB_GROUP
Definition Opcodes.h:179
@ SMSG_PETITION_QUERY_RESPONSE
Definition Opcodes.h:847
@ CMSG_GUILD_ADD_RANK
Definition Opcodes.h:190
@ SMSG_GUILD_CRITERIA_DATA
Definition Opcodes.h:688
@ CMSG_DISMISS_CRITTER
Definition Opcodes.h:146
@ SMSG_SPELL_ENERGIZE_LOG
Definition Opcodes.h:981
@ SMSG_GUILD_EVENT_LOG_QUERY_RESULT
Definition Opcodes.h:696
@ SMSG_SUMMON_REQUEST
Definition Opcodes.h:1021
@ SMSG_THREAT_UPDATE
Definition Opcodes.h:1028
@ CMSG_QUEST_GIVER_COMPLETE_QUEST
Definition Opcodes.h:359
@ MSG_MOVE_START_FORWARD
Definition Opcodes.h:486
@ SMSG_SET_MOVEMENT_ANIM_KIT
Definition Opcodes.h:957
@ SMSG_SPELL_COOLDOWN
Definition Opcodes.h:979
@ SMSG_SPLINE_MOVE_SET_WALK_SPEED
Definition Opcodes.h:1009
@ SMSG_GAMEOBJECT_CUSTOM_ANIM
Definition Opcodes.h:659
@ SMSG_SPELL_DELAYED
Definition Opcodes.h:980
@ CMSG_CHAR_FACTION_OR_RACE_CHANGE
Definition Opcodes.h:128
@ SMSG_HIGHEST_THREAT_UPDATE
Definition Opcodes.h:717
@ SMSG_VOID_ITEM_SWAP_RESPONSE
Definition Opcodes.h:1060
@ SMSG_LFD_TELEPORT_DENIED
Definition Opcodes.h:746
@ CMSG_CALENDAR_GET_CALENDAR
Definition Opcodes.h:95
@ SMSG_LOGIN_SET_TIME_SPEED
Definition Opcodes.h:760
@ SMSG_TURN_IN_PETITION_RESULTS
Definition Opcodes.h:1041
@ CMSG_UPDATE_ACCOUNT_DATA
Definition Opcodes.h:465
@ SMSG_USERLIST_UPDATE
Definition Opcodes.h:1058
@ CMSG_CHAR_DELETE
Definition Opcodes.h:127
@ SMSG_UPDATE_INSTANCE_OWNERSHIP
Definition Opcodes.h:1051
@ CMSG_MOVE_HOVER_ACK
Definition Opcodes.h:303
@ SMSG_ITEM_PURCHASE_REFUND_RESULT
Definition Opcodes.h:731
@ CMSG_AUCTION_REMOVE_ITEM
Definition Opcodes.h:43
@ CMSG_MESSAGECHAT_ADDON_OFFICER
Definition Opcodes.h:271
@ SMSG_BATTLE_PET_JOURNAL_LOCK_DENINED
Definition Opcodes.h:558
@ CMSG_BUSY_TRADE
Definition Opcodes.h:82
@ SMSG_NPC_TEXT_UPDATE
Definition Opcodes.h:836
@ CMSG_SET_PLAYER_DECLINED_NAMES
Definition Opcodes.h:427
@ SMSG_QUESTGIVER_QUEST_INVALID
Definition Opcodes.h:902
@ CMSG_PET_BATTLE_QUEUE_PROPOSE_MATCH_RESULT
Definition Opcodes.h:333
@ CMSG_STAND_STATE_CHANGE
Definition Opcodes.h:444
@ CMSG_PET_NAME_QUERY
Definition Opcodes.h:342
@ SMSG_THREAT_CLEAR
Definition Opcodes.h:1026
@ SMSG_MOVE_REMOVE_MOVEMENT_FORCE
Definition Opcodes.h:794
@ CMSG_GOSSIP_HELLO
Definition Opcodes.h:175
@ CMSG_MAIL_MARK_AS_READ
Definition Opcodes.h:264
@ SMSG_RAID_TARGET_UPDATE_ALL
Definition Opcodes.h:923
@ SMSG_PHASE_SHIFT_CHANGE
Definition Opcodes.h:875
@ SMSG_TUTORIAL_FLAGS
Definition Opcodes.h:1042
@ CMSG_CONFIRM_RESPEC_WIPE
Definition Opcodes.h:136
@ SMSG_MOVE_NORMAL_FALL
Definition Opcodes.h:793
@ CMSG_MINIMAP_PING
Definition Opcodes.h:286
@ SMSG_QUERY_QUESTS_COMPLETED_RESPONSE
Definition Opcodes.h:896
@ SMSG_CANCEL_SCENE
Definition Opcodes.h:594
@ CMSG_BATTLE_PET_LEARN
Definition Opcodes.h:68
@ SMSG_CALENDAR_EVENT_INVITE_REMOVED_ALERT
Definition Opcodes.h:580
@ CMSG_SPLIT_ITEM
Definition Opcodes.h:443
@ CMSG_AUTOBANK_ITEM
Definition Opcodes.h:47
@ CMSG_MOVE_FALL_RESET
Definition Opcodes.h:290
@ SMSG_PET_STABLE_LIST
Definition Opcodes.h:873
@ SMSG_RANDOMIZE_CHAR_NAME
Definition Opcodes.h:925
@ SMSG_UPDATE_WORLD_STATE
Definition Opcodes.h:1055
@ CMSG_BINDER_ACTIVATE
Definition Opcodes.h:77
@ CMSG_GROUP_SET_LEADER
Definition Opcodes.h:185
@ SMSG_INSTANCE_LOCK_WARNING_QUERY
Definition Opcodes.h:723
@ MSG_MOVE_START_PITCH_DOWN
Definition Opcodes.h:487
@ CMSG_AUCTION_PLACE_BID
Definition Opcodes.h:42
@ SMSG_SHOW_TAXI_NODES
Definition Opcodes.h:968
@ SMSG_EMOTE
Definition Opcodes.h:647
@ CMSG_CHAR_CUSTOMIZE
Definition Opcodes.h:126
@ SMSG_PET_ACTION_SOUND
Definition Opcodes.h:853
@ CMSG_SET_LOOT_SPECIALIZATION
Definition Opcodes.h:424
@ SMSG_PARTY_MEMBER_STATE
Definition Opcodes.h:845
@ CMSG_BATTLE_PET_SET_BATTLE_SLOT
Definition Opcodes.h:72
@ SMSG_BIND_POINT_UPDATE
Definition Opcodes.h:563
@ CMSG_PET_SPELL_AUTOCAST
Definition Opcodes.h:345
@ SMSG_CAST_FAILED
Definition Opcodes.h:595
@ SMSG_CORPSE_RECLAIM_DELAY
Definition Opcodes.h:627
@ CMSG_CANCEL_TEMP_ENCHANTMENT
Definition Opcodes.h:105
@ SMSG_GAMEOBJECT_QUERY_RESPONSE
Definition Opcodes.h:661
@ CMSG_BUG
Definition Opcodes.h:81
@ SMSG_INSTANCE_RESET_FAILED
Definition Opcodes.h:725
@ SMSG_GUILD_DECLINE
Definition Opcodes.h:690
@ CMSG_PET_BATTLE_INPUT
Definition Opcodes.h:332
@ SMSG_MOVE_UNSET_CAN_TRANSITION_BETWEEN_SWIM_AND_FLY
Definition Opcodes.h:815
@ CMSG_SHOWING_CLOAK
Definition Opcodes.h:438
@ SMSG_QUESTGIVER_REQUEST_ITEMS
Definition Opcodes.h:904
@ CMSG_MESSAGECHAT_SAY
Definition Opcodes.h:283
@ CMSG_MESSAGECHAT_RAID
Definition Opcodes.h:281
@ SMSG_ADD_RUNE_POWER
Definition Opcodes.h:510
@ CMSG_SET_TAXI_BENCHMARK_MODE
Definition Opcodes.h:432
@ CMSG_BATTLEFIELD_LIST
Definition Opcodes.h:56
@ SMSG_PET_BATTLE_REQUEST_FAILED
Definition Opcodes.h:865
@ SMSG_CALENDAR_EVENT_INITIAL_INVITE
Definition Opcodes.h:576
@ CMSG_BANKER_ACTIVATE
Definition Opcodes.h:54
@ SMSG_AUCTION_LIST_RESULT
Definition Opcodes.h:528
@ CMSG_MOVE_FORCE_RUN_SPEED_CHANGE_ACK
Definition Opcodes.h:296
@ CMSG_REQUEST_PVP_REWARDS
Definition Opcodes.h:393
@ SMSG_WEATHER
Definition Opcodes.h:1065
@ CMSG_ITEM_REFUND
Definition Opcodes.h:232
@ SMSG_SET_RAID_DIFFICULTY
Definition Opcodes.h:963
@ CMSG_CALENDAR_COPY_EVENT
Definition Opcodes.h:88
@ CMSG_SET_PRIMARY_TALENT_TREE
Definition Opcodes.h:428
@ SMSG_AUCTION_COMMAND_RESULT
Definition Opcodes.h:525
@ CMSG_GUILD_REPLACE_GUILD_MASTER
Definition Opcodes.h:219
@ CMSG_GUILD_REMOVE
Definition Opcodes.h:218
@ SMSG_CLIENTCACHE_VERSION
Definition Opcodes.h:617
@ CMSG_LF_GUILD_DECLINE_RECRUIT
Definition Opcodes.h:247
@ SMSG_MOVE_UPDATE_TURN_RATE
Definition Opcodes.h:830
@ SMSG_SPELL_GO
Definition Opcodes.h:985
@ CMSG_GUILD_DISBAND
Definition Opcodes.h:206
@ CMSG_BATTLE_PET_CAGE
Definition Opcodes.h:66
@ CMSG_SUMMON_RESPONSE
Definition Opcodes.h:447
@ SMSG_CLEAR_COOLDOWN
Definition Opcodes.h:614
@ CMSG_PET_BATTLE_REQUEST_PVP
Definition Opcodes.h:335
@ CMSG_AREATRIGGER
Definition Opcodes.h:32
@ CMSG_MOVE_FORCE_RUN_BACK_SPEED_CHANGE_ACK
Definition Opcodes.h:295
@ SMSG_SPLINE_MOVE_SET_HOVER
Definition Opcodes.h:998
@ CMSG_REQUEST_PLAYED_TIME
Definition Opcodes.h:391
@ CMSG_MOVE_TELEPORT_ACK
Definition Opcodes.h:311
@ CMSG_REQUEST_PVP_OPTIONS_ENABLED
Definition Opcodes.h:392
@ CMSG_ADD_IGNORE
Definition Opcodes.h:30
@ SMSG_BATTLEFIELD_MGR_ENTERED
Definition Opcodes.h:538
@ SMSG_PLAY_MUSIC
Definition Opcodes.h:879
@ CMSG_OPENING_CINEMATIC
Definition Opcodes.h:318
@ CMSG_QUERY_INSPECT_ACHIEVEMENTS
Definition Opcodes.h:353
@ SMSG_UPDATE_COMBO_POINTS
Definition Opcodes.h:1047
@ SMSG_GUILD_MAX_DAILY_XP
Definition Opcodes.h:700
@ CMSG_CONTACT_LIST
Definition Opcodes.h:137
@ CMSG_MESSAGECHAT_WHISPER
Definition Opcodes.h:284
@ CMSG_BATTLE_PET_QUERY_NAME
Definition Opcodes.h:70
@ CMSG_MESSAGECHAT_ADDON_RAID
Definition Opcodes.h:273
@ CMSG_CHAR_RENAME
Definition Opcodes.h:129
@ SMSG_LF_GUILD_BROWSE_UPDATED
Definition Opcodes.h:753
@ SMSG_SPLINE_MOVE_SET_FLYING
Definition Opcodes.h:997
@ SMSG_SPELLDAMAGESHIELD
Definition Opcodes.h:970
@ SMSG_MOTD
Definition Opcodes.h:785
@ CMSG_GUILD_BANKER_ACTIVATE
Definition Opcodes.h:192
@ CMSG_CALENDAR_EVENT_RSVP
Definition Opcodes.h:92
@ CMSG_SET_VEHICLE_REC_ID_ACK
Definition Opcodes.h:436
@ CMSG_LOOT_MONEY
Definition Opcodes.h:259
@ SMSG_SET_ITEM_PURCHASE_DATA
Definition Opcodes.h:956
@ CMSG_SET_CURRENCY_FLAGS
Definition Opcodes.h:417
@ SMSG_MOVE_SET_TURN_RATE
Definition Opcodes.h:809
@ SMSG_SPLINE_MOVE_UNSET_HOVER
Definition Opcodes.h:1015
@ CMSG_MOVE_FORCE_SWIM_BACK_SPEED_CHANGE_ACK
Definition Opcodes.h:297
@ SMSG_OPEN_LFG_DUNGEON_FINDER
Definition Opcodes.h:839
@ SMSG_GUILD_EVENT
Definition Opcodes.h:691
@ CMSG_LF_GUILD_SET_GUILD_POST
Definition Opcodes.h:251
@ SMSG_INVENTORY_CHANGE_FAILURE
Definition Opcodes.h:727
@ CMSG_AUCTION_LIST_BIDDER_ITEMS
Definition Opcodes.h:38
@ CMSG_REQUEST_CONQUEST_FORMULA_CONSTANTS
Definition Opcodes.h:386
@ SMSG_GUILD_ACHIEVEMENT_DELETED
Definition Opcodes.h:680
@ SMSG_FISH_ESCAPED
Definition Opcodes.h:656
@ SMSG_SPLINE_MOVE_SET_TURN_RATE
Definition Opcodes.h:1007
@ CMSG_GROUP_DISBAND
Definition Opcodes.h:180
@ CMSG_MESSAGECHAT_OFFICER
Definition Opcodes.h:279
@ SMSG_UPDATE_ACCOUNT_DATA_COMPLETE
Definition Opcodes.h:1045
@ CMSG_ALTER_APPEARANCE
Definition Opcodes.h:31
@ MSG_MOVE_HEARTBEAT
Definition Opcodes.h:477
@ SMSG_GUILD_ACHIEVEMENT_DATA
Definition Opcodes.h:679
@ CMSG_TAXI_NODE_STATUS_QUERY
Definition Opcodes.h:450
@ SMSG_ALL_ACHIEVEMENT_DATA
Definition Opcodes.h:513
@ CMSG_PETITION_SHOW_SIGNATURES
Definition Opcodes.h:327
@ SMSG_HOTFIX_NOTIFY_BLOB
Definition Opcodes.h:718
@ CMSG_QUEST_GIVER_HELLO
Definition Opcodes.h:360
@ CMSG_QUEST_GIVER_CHOOSE_REWARD
Definition Opcodes.h:358
@ CMSG_TUTORIAL_CLEAR
Definition Opcodes.h:459
@ CMSG_CHANNEL_DISPLAY_LIST
Definition Opcodes.h:113
@ CMSG_MOVE_SPLINE_DONE
Definition Opcodes.h:310
@ CMSG_MOVE_CHNG_TRANSPORT
Definition Opcodes.h:289
@ SMSG_PLAY_SOUND
Definition Opcodes.h:883
@ SMSG_PETITION_SIGN_RESULTS
Definition Opcodes.h:851
@ CMSG_GROUP_INITIATE_ROLE_POLL
Definition Opcodes.h:181
@ SMSG_LOGOUT_COMPLETE
Definition Opcodes.h:763
@ CMSG_MOVE_KNOCK_BACK_ACK
Definition Opcodes.h:304
@ CMSG_SET_ACTION_BUTTON
Definition Opcodes.h:414
@ SMSG_LF_GUILD_APPLICANT_LIST_UPDATED
Definition Opcodes.h:751
@ CMSG_GET_CHALLENGE_MODE_REWARDS
Definition Opcodes.h:163
@ SMSG_LF_GUILD_POST_UPDATED
Definition Opcodes.h:755
@ CMSG_LOOT_ROLL
Definition Opcodes.h:261
@ CMSG_GAMEOBJECT_QUERY
Definition Opcodes.h:160
@ SMSG_MOVE_SET_SWIM_SPEED
Definition Opcodes.h:808
@ SMSG_THREAT_REMOVE
Definition Opcodes.h:1027
@ CMSG_RIDE_VEHICLE_INTERACT
Definition Opcodes.h:404
@ CMSG_SPIRIT_HEALER_ACTIVATE
Definition Opcodes.h:442
@ SMSG_UPDATE_OBJECT
Definition Opcodes.h:1053
@ CMSG_SET_TRADE_ITEM
Definition Opcodes.h:435
@ CMSG_REQUEST_PET_INFO
Definition Opcodes.h:390
@ CMSG_GET_ITEM_PURCHASE_DATA
Definition Opcodes.h:164
@ CMSG_QUEST_GIVER_ACCEPT_QUEST
Definition Opcodes.h:357
@ CMSG_GAME_OBJ_REPORT_USE
Definition Opcodes.h:161
@ CMSG_GM_RESPONSE_RESOLVE
Definition Opcodes.h:167
@ SMSG_START_MIRROR_TIMER
Definition Opcodes.h:1018
@ MSG_MOVE_FALL_LAND
Definition Opcodes.h:476
@ CMSG_GUILD_NEWS_UPDATE_STICKY
Definition Opcodes.h:212
@ CMSG_MESSAGECHAT_PARTY
Definition Opcodes.h:280
@ CMSG_LOOT_METHOD
Definition Opcodes.h:258
@ SMSG_HEALTH_UPDATE
Definition Opcodes.h:716
@ SMSG_SET_FLAT_SPELL_MODIFIER
Definition Opcodes.h:954
@ SMSG_INSPECT_RESULTS
Definition Opcodes.h:722
@ SMSG_MOVE_UPDATE_RUN_SPEED
Definition Opcodes.h:826
@ CMSG_LF_GUILD_GET_RECRUITS
Definition Opcodes.h:249
@ SMSG_LEVELUP_INFO
Definition Opcodes.h:736
@ SMSG_GROUP_SET_ROLE
Definition Opcodes.h:677
@ SMSG_CHARACTER_LOGIN_FAILED
Definition Opcodes.h:603
@ CMSG_BATTLE_PET_MODIFY_NAME
Definition Opcodes.h:69
@ SMSG_EXPLORATION_EXPERIENCE
Definition Opcodes.h:653
@ CMSG_SET_DUNGEON_DIFFICULTY
Definition Opcodes.h:418
@ SMSG_GROUP_INVITE
Definition Opcodes.h:673
@ SMSG_CALENDAR_ARENA_TEAM
Definition Opcodes.h:573
@ CMSG_FORCE_MOVE_ROOT_ACK
Definition Opcodes.h:158
@ CMSG_QUEST_PUSH_RESULT
Definition Opcodes.h:367
@ SMSG_BATTLEFIELD_MGR_QUEUE_REQUEST_RESPONSE
Definition Opcodes.h:541
@ CMSG_MESSAGECHAT_GUILD
Definition Opcodes.h:278
@ CMSG_GUILD_BANK_LOG_QUERY
Definition Opcodes.h:195
@ SMSG_RESYNC_RUNES
Definition Opcodes.h:943
@ CMSG_BEGIN_TRADE
Definition Opcodes.h:76
@ SMSG_SHOW_BANK
Definition Opcodes.h:966
@ SMSG_SET_PCT_SPELL_MODIFIER
Definition Opcodes.h:958
@ SMSG_UPDATE_ACTION_BUTTONS
Definition Opcodes.h:1046
@ CMSG_GUILD_QUERY
Definition Opcodes.h:215
@ CMSG_VOICE_SESSION_ENABLE
Definition Opcodes.h:468
@ CMSG_INSPECT
Definition Opcodes.h:229
@ SMSG_MOVE_SET_WALK_SPEED
Definition Opcodes.h:811
@ CMSG_GROUP_UNINVITE_GUID
Definition Opcodes.h:187
@ SMSG_SPLINE_MOVE_UNROOT
Definition Opcodes.h:1013
@ SMSG_USERLIST_ADD
Definition Opcodes.h:1056
@ SMSG_LOOT_MONEY_NOTIFY
Definition Opcodes.h:770
@ SMSG_TEXT_EMOTE
Definition Opcodes.h:1025
@ SMSG_GM_TICKET_RESPONSE
Definition Opcodes.h:665
@ CMSG_PING
Definition Opcodes.h:347
@ SMSG_GUILD_REPUTATION_WEEKLY_CAP
Definition Opcodes.h:710
@ SMSG_TITLE_EARNED
Definition Opcodes.h:1030
@ SMSG_BATTLEFIELD_STATUS_QUEUED
Definition Opcodes.h:548
@ CMSG_GUILD_ASSIGN_MEMBER_RANK
Definition Opcodes.h:191
@ SMSG_DUEL_COUNTDOWN
Definition Opcodes.h:641
@ CMSG_GUILD_ACHIEVEMENT_PROGRESS_QUERY
Definition Opcodes.h:189
@ SMSG_CANCEL_AUTO_REPEAT
Definition Opcodes.h:592
@ CMSG_CHANNEL_INVITE
Definition Opcodes.h:114
@ CMSG_MOVE_FORCE_PITCH_RATE_CHANGE_ACK
Definition Opcodes.h:294
@ SMSG_RAID_GROUP_ONLY
Definition Opcodes.h:917
@ SMSG_LOGIN_VERIFY_WORLD
Definition Opcodes.h:761
@ CMSG_SET_EVERYONE_IS_ASSISTANT
Definition Opcodes.h:419
@ CMSG_QUEST_GIVER_STATUS_QUERY
Definition Opcodes.h:364
@ CMSG_AREA_SPIRIT_HEALER_QUERY
Definition Opcodes.h:33
@ CMSG_SET_PARTY_ASSIGNMENT
Definition Opcodes.h:425
@ SMSG_PET_BATTLE_QUEUE_STATUS
Definition Opcodes.h:864
@ SMSG_PVP_LOG_DATA
Definition Opcodes.h:892
@ SMSG_SPELL_FAILED_OTHER
Definition Opcodes.h:983
@ CMSG_DISMISS_CONTROLLED_VEHICLE
Definition Opcodes.h:145
@ SMSG_BATTLE_PET_QUERY_NAME_RESPONSE
Definition Opcodes.h:560
@ CMSG_DEL_FRIEND
Definition Opcodes.h:141
@ CMSG_OBJECT_UPDATE_FAILED
Definition Opcodes.h:316
@ SMSG_FEATURE_SYSTEM_STATUS_GLUE_SCREEN
Definition Opcodes.h:655
@ CMSG_CANCEL_CHANNELLING
Definition Opcodes.h:103
@ CMSG_GUILD_INFO_TEXT
Definition Opcodes.h:208
@ CMSG_MOVE_SET_COLLISION_HEIGHT_ACK
Definition Opcodes.h:308
@ CMSG_AUCTION_LIST_OWNER_ITEMS
Definition Opcodes.h:40
@ CMSG_TAXI_QUERY_AVAILABLE_NODES
Definition Opcodes.h:451
@ SMSG_PETITION_ALREADY_SIGNED
Definition Opcodes.h:846
@ SMSG_ATTACKSTOP
Definition Opcodes.h:520
@ CMSG_GUILD_REQUEST_PARTY_STATE
Definition Opcodes.h:221
@ CMSG_LOG_DISCONNECT
Definition Opcodes.h:256
@ SMSG_STABLE_RESULT
Definition Opcodes.h:1016
@ SMSG_PLAYERBOUND
Definition Opcodes.h:877
@ CMSG_QUEST_GIVER_STATUS_MULTIPLE_QUERY
Definition Opcodes.h:363
@ CMSG_CHANGE_SEATS_ON_CONTROLLED_VEHICLE
Definition Opcodes.h:110
@ SMSG_SET_TIME_ZONE_INFORMATION
Definition Opcodes.h:964
@ CMSG_REQUEST_RESEARCH_HISTORY
Definition Opcodes.h:395
@ SMSG_MOVE_UNSET_HOVER
Definition Opcodes.h:817
@ CMSG_GUILD_EVENT_LOG_QUERY
Definition Opcodes.h:207
@ SMSG_BATTLE_PET_PET_UPDATES
Definition Opcodes.h:559
@ SMSG_MOVE_SET_CAN_TRANSITION_BETWEEN_SWIM_AND_FLY
Definition Opcodes.h:798
@ CMSG_IGNORE_TRADE
Definition Opcodes.h:227
@ SMSG_PONG
Definition Opcodes.h:886
@ SMSG_GOSSIP_COMPLETE
Definition Opcodes.h:668
@ SMSG_MOVE_APPLY_MOVEMENT_FORCE
Definition Opcodes.h:787
@ SMSG_REQUEST_PVP_REWARDS_RESPONSE
Definition Opcodes.h:936
@ SMSG_ARENA_UNIT_DESTROYED
Definition Opcodes.h:518
@ SMSG_INIT_WORLD_STATES
Definition Opcodes.h:720
@ SMSG_DISMOUNT
Definition Opcodes.h:637
@ SMSG_GUILD_RENAMED
Definition Opcodes.h:709
@ SMSG_DURABILITY_DAMAGE_DEATH
Definition Opcodes.h:646
@ CMSG_MAIL_DELETE
Definition Opcodes.h:263
@ SMSG_RESURRECT_REQUEST
Definition Opcodes.h:942
@ SMSG_BINDER_CONFIRM
Definition Opcodes.h:562
@ SMSG_UI_TIME
Definition Opcodes.h:1043
@ SMSG_GROUP_DECLINE
Definition Opcodes.h:671
@ SMSG_AUTH_CHALLENGE
Definition Opcodes.h:533
@ SMSG_MOVE_SET_CAN_FLY
Definition Opcodes.h:797
@ SMSG_QUERY_TIME_RESPONSE
Definition Opcodes.h:897
@ SMSG_BARBER_SHOP_RESULT
Definition Opcodes.h:535
@ SMSG_LFD_PROPOSAL_UPDATE
Definition Opcodes.h:743
@ SMSG_MAIL_LIST_RESULT
Definition Opcodes.h:777
@ CMSG_SET_ACTIVE_MOVER
Definition Opcodes.h:415
@ MSG_MOVE_WORLDPORT_ACK
Definition Opcodes.h:500
@ SMSG_ATTACK_START
Definition Opcodes.h:522
@ CMSG_LFD_PROPOSAL_RESULT
Definition Opcodes.h:240
@ CMSG_QUERY_TIME
Definition Opcodes.h:354
@ CMSG_QUESTLOG_REMOVE_QUEST
Definition Opcodes.h:355
@ SMSG_ENABLE_BARBER_SHOP
Definition Opcodes.h:648
@ SMSG_CHAR_DELETE
Definition Opcodes.h:607
@ SMSG_LFD_ROLE_CHECK_UPDATE
Definition Opcodes.h:745
@ SMSG_PETITION_RENAME_RESULT
Definition Opcodes.h:848
@ CMSG_ACCEPT_LEVEL_GRANT
Definition Opcodes.h:24
@ SMSG_SPLINE_MOVE_SET_WATER_WALK
Definition Opcodes.h:1010
@ SMSG_SPELL_HEAL_LOG
Definition Opcodes.h:986
@ CMSG_CHANNEL_ANNOUNCEMENTS
Definition Opcodes.h:111
@ CMSG_ADD_FRIEND
Definition Opcodes.h:29
@ SMSG_MINIMAP_PING
Definition Opcodes.h:780
@ CMSG_SET_RAID_DIFFICULTY
Definition Opcodes.h:430
@ CMSG_INSTANCE_LOCK_WARNING_RESPONSE
Definition Opcodes.h:231
@ CMSG_FORCE_MOVE_UNROOT_ACK
Definition Opcodes.h:159
@ CMSG_REQUEST_RAID_INFO
Definition Opcodes.h:394
@ CMSG_PAGE_TEXT_QUERY
Definition Opcodes.h:321
@ SMSG_ITEM_TIME_UPDATE
Definition Opcodes.h:734
@ SMSG_GUILD_BANK_LOG_QUERY_RESULT
Definition Opcodes.h:683
@ CMSG_REQUEST_ACCOUNT_DATA
Definition Opcodes.h:383
@ SMSG_SPLINE_MOVE_SET_SWIM_SPEED
Definition Opcodes.h:1006
@ CMSG_BATTLE_CHAR_BOOST
Definition Opcodes.h:65
@ CMSG_RESURRECT_RESPONSE
Definition Opcodes.h:402
@ CMSG_MESSAGECHAT_EMOTE
Definition Opcodes.h:277
@ CMSG_PETITION_RENAME
Definition Opcodes.h:325
@ SMSG_GM_TICKET_UPDATE
Definition Opcodes.h:667
@ SMSG_DB_REPLY
Definition Opcodes.h:632
@ SMSG_SEND_KNOWN_SPELLS
Definition Opcodes.h:945
@ SMSG_GUILD_MEMBER_UPDATE_NOTE
Definition Opcodes.h:702
@ CMSG_LOGOUT_CANCEL
Definition Opcodes.h:254
@ SMSG_UPDATE_CURRENCY_WEEK_LIMIT
Definition Opcodes.h:1049
@ SMSG_CALENDAR_RAID_LOCKOUT_UPDATED
Definition Opcodes.h:588
@ SMSG_MOVE_SET_ACTIVE_MOVER
Definition Opcodes.h:796
@ CMSG_GM_TICKET_SYSTEM_STATUS
Definition Opcodes.h:173
@ CMSG_AUTO_DECLINE_GUILD_INVITES
Definition Opcodes.h:53
@ CMSG_GROUP_RAID_CONVERT
Definition Opcodes.h:184
@ CMSG_CHANNEL_UNMODERATOR
Definition Opcodes.h:123
@ SMSG_RAID_READY_CHECK
Definition Opcodes.h:920
@ CMSG_READY_FOR_ACCOUNT_DATA_TIMES
Definition Opcodes.h:374
@ SMSG_LFG_PLAYER_REWARD
Definition Opcodes.h:748
@ CMSG_CHAR_CREATE
Definition Opcodes.h:125
@ SMSG_BATTLE_PET_DELETED
Definition Opcodes.h:554
@ SMSG_RESET_FAILED_NOTIFY
Definition Opcodes.h:939
@ CMSG_CANCEL_AUTO_REPEAT_SPELL
Definition Opcodes.h:101
@ CMSG_SET_SELECTION
Definition Opcodes.h:431
@ CMSG_PUSHQUESTTOPARTY
Definition Opcodes.h:349
@ SMSG_GUILD_XP
Definition Opcodes.h:714
@ SMSG_CHAT_RESTRICTED
Definition Opcodes.h:612
@ CMSG_SET_PVP
Definition Opcodes.h:429
@ SMSG_LF_GUILD_RECRUIT_LIST_UPDATED
Definition Opcodes.h:756
@ SMSG_SPLINE_MOVE_ROOT
Definition Opcodes.h:993
@ CMSG_CHAT_JOIN_CHANNEL
Definition Opcodes.h:131
@ SMSG_LOOT_RELEASE_RESPONSE
Definition Opcodes.h:771
@ SMSG_MOVE_UPDATE_SWIM_BACK_SPEED
Definition Opcodes.h:827
@ SMSG_BATTLEGROUND_PLAYER_LEFT
Definition Opcodes.h:550
@ CMSG_BATTLEMASTER_JOIN_ARENA
Definition Opcodes.h:64
@ CMSG_WHO
Definition Opcodes.h:473
@ SMSG_AUCTION_REMOVED_NOTIFICATION
Definition Opcodes.h:531
@ SMSG_SERVER_MESSAGE
Definition Opcodes.h:949
@ SMSG_REALM_SPLIT
Definition Opcodes.h:930
@ CMSG_HEARTH_AND_RESURRECT
Definition Opcodes.h:226
@ SMSG_CALENDAR_EVENT_INVITE_STATUS
Definition Opcodes.h:581
@ SMSG_SUPERCEDED_SPELL
Definition Opcodes.h:1022
@ SMSG_CHAT_PLAYER_AMBIGUOUS
Definition Opcodes.h:610
@ SMSG_PET_BATTLE_FINAL_ROUND
Definition Opcodes.h:857
@ SMSG_CALENDAR_EVENT_MODERATOR_STATUS
Definition Opcodes.h:583
@ CMSG_CORPSE_MAP_POSITION_QUERY
Definition Opcodes.h:138
@ SMSG_BATTLEFIELD_MGR_QUEUE_INVITE
Definition Opcodes.h:540
@ SMSG_CALENDAR_EVENT_INVITE_STATUS_ALERT
Definition Opcodes.h:582
@ CMSG_PLAYER_LOGIN
Definition Opcodes.h:348
@ CMSG_SELECT_FACTION
Definition Opcodes.h:407
@ SMSG_SPLINE_MOVE_SET_WALK_MODE
Definition Opcodes.h:1008
@ CMSG_VOID_STORAGE_UNLOCK
Definition Opcodes.h:471
@ SMSG_CHAR_CUSTOMIZE
Definition Opcodes.h:606
@ CMSG_SCENE_COMPLETED
Definition Opcodes.h:406
@ SMSG_CRITERIA_UPDATE
Definition Opcodes.h:630
@ CMSG_NPC_TEXT_QUERY
Definition Opcodes.h:315
@ CMSG_CALENDAR_UPDATE_EVENT
Definition Opcodes.h:99
@ CMSG_DESTROY_ITEM
Definition Opcodes.h:143
@ SMSG_SPLINE_MOVE_GRAVITY_ENABLE
Definition Opcodes.h:992
@ CMSG_MAIL_TAKE_ITEM
Definition Opcodes.h:267
@ CMSG_LFD_SET_BOOT_VOTE
Definition Opcodes.h:241
@ SMSG_SPLINE_MOVE_UNSET_FLYING
Definition Opcodes.h:1014
@ SMSG_ACHIEVEMENT_DELETED
Definition Opcodes.h:506
@ CMSG_GROUP_INVITE_RESPONSE
Definition Opcodes.h:183
@ SMSG_PVP_OPTIONS_ENABLED
Definition Opcodes.h:893
@ SMSG_GROUP_SET_LEADER
Definition Opcodes.h:676
@ SMSG_MAIL_QUERY_NEXT_TIME_RESULT
Definition Opcodes.h:778
@ CMSG_RESET_INSTANCES
Definition Opcodes.h:401
@ SMSG_GUILD_COMMAND_RESULT
Definition Opcodes.h:687
@ CMSG_BLACKMARKET_BID
Definition Opcodes.h:78
@ CMSG_VOID_STORAGE_QUERY
Definition Opcodes.h:469
@ CMSG_AUCTION_HELLO_REQUEST
Definition Opcodes.h:37
@ SMSG_ENUM_CHARACTERS_RESULT
Definition Opcodes.h:650
@ SMSG_ATTACKSWING_ERROR
Definition Opcodes.h:521
@ SMSG_SPLINE_MOVE_SET_RUN_BACK_SPEED
Definition Opcodes.h:1002
@ CMSG_BATTLEFIELD_PORT
Definition Opcodes.h:60
@ CMSG_MAIL_RETURN_TO_SENDER
Definition Opcodes.h:266
@ SMSG_RESEARCH_SETUP_HISTORY
Definition Opcodes.h:938
@ CMSG_REQUEST_CATEGORY_COOLDOWNS
Definition Opcodes.h:384
@ SMSG_BUY_BANK_SLOT_RESULT
Definition Opcodes.h:570
@ SMSG_ACTIVATE_TAXI_REPLY
Definition Opcodes.h:508
@ SMSG_CATEGORY_COOLDOWN
Definition Opcodes.h:596
@ SMSG_AI_REACTION
Definition Opcodes.h:512
@ CMSG_LFG_SET_ROLES
Definition Opcodes.h:244
@ SMSG_MOVE_UNSET_CAN_FLY
Definition Opcodes.h:814
@ MSG_MOVE_SET_WALK_MODE
Definition Opcodes.h:482
@ CMSG_DISCARDED_TIME_SYNC_ACKS
Definition Opcodes.h:144
@ SMSG_CHARACTER_UPGRADE_STARTED
Definition Opcodes.h:604
@ MSG_MOVE_START_PITCH_UP
Definition Opcodes.h:488
@ SMSG_SEND_UNLEARN_SPELLS
Definition Opcodes.h:947
@ SMSG_LOOT_ROLL
Definition Opcodes.h:774
@ CMSG_REQUEST_CEMETERY_LIST
Definition Opcodes.h:385
@ CMSG_BATTLEFIELD_LEAVE
Definition Opcodes.h:55
@ SMSG_SET_PET_SPEC
Definition Opcodes.h:959
@ SMSG_GUILD_PERMISSIONS_QUERY_RESULTS
Definition Opcodes.h:705
@ SMSG_CALENDAR_EVENT_INVITE_ALERT
Definition Opcodes.h:578
@ SMSG_LOGOUT_CANCEL_ACK
Definition Opcodes.h:762
@ SMSG_CHANNEL_MEMBER_COUNT
Definition Opcodes.h:601
@ CMSG_SETSHEATHED
Definition Opcodes.h:412
@ CMSG_SWAP_INV_ITEM
Definition Opcodes.h:448
@ SMSG_SPELLINSTAKILLLOG
Definition Opcodes.h:972
@ CMSG_PET_CANCEL_AURA
Definition Opcodes.h:340
@ SMSG_PET_CAST_FAILED
Definition Opcodes.h:867
@ SMSG_QUESTUPDATE_COMPLETE
Definition Opcodes.h:909
@ SMSG_GUILD_XP_GAIN
Definition Opcodes.h:715
@ CMSG_RAID_TARGET_UPDATE
Definition Opcodes.h:371
@ CMSG_GUILD_BANK_MONEY_WITHDRAWN_QUERY
Definition Opcodes.h:196
@ SMSG_AUCTION_OWNER_LIST_RESULT
Definition Opcodes.h:529
@ SMSG_MOVE_UPDATE_RUN_BACK_SPEED
Definition Opcodes.h:825
@ MSG_MOVE_START_ASCEND
Definition Opcodes.h:483
@ CMSG_BATTLE_PET_SET_FLAGS
Definition Opcodes.h:73
@ SMSG_CORPSE_QUERY
Definition Opcodes.h:626
@ CMSG_TRAINER_BUY_SPELL
Definition Opcodes.h:455
@ SMSG_LFD_OFFER_CONTINUE
Definition Opcodes.h:740
@ CMSG_LF_GUILD_BROWSE
Definition Opcodes.h:246
@ CMSG_SWAP_ITEM
Definition Opcodes.h:449
@ SMSG_GUILD_INVITE
Definition Opcodes.h:698
@ CMSG_BATTLEFIELD_RATED_INFO_REQUEST
Definition Opcodes.h:61
@ MSG_MOVE_START_STRAFE_LEFT
Definition Opcodes.h:489
@ SMSG_MOVE_SET_SWIM_BACK_SPEED
Definition Opcodes.h:807
@ SMSG_SPELL_START
Definition Opcodes.h:989
@ SMSG_QUESTGIVER_QUEST_DETAILS
Definition Opcodes.h:900
@ CMSG_UNLEARN_SKILL
Definition Opcodes.h:463
@ CMSG_INITIATE_TRADE
Definition Opcodes.h:228
@ SMSG_ITEM_TEXT_QUERY_RESPONSE
Definition Opcodes.h:733
@ CMSG_PET_BATTLE_START_PVP_MATCHMAKING
Definition Opcodes.h:338
@ CMSG_EQUIPMENT_SET_DELETE
Definition Opcodes.h:154
@ SMSG_STANDSTATE_UPDATE
Definition Opcodes.h:1017
@ CMSG_ACTIVATE_TAXI_EXPRESS
Definition Opcodes.h:27
@ SMSG_LOOT_ROLL_WON
Definition Opcodes.h:775
@ MSG_MOVE_STOP
Definition Opcodes.h:494
@ SMSG_MOVE_UNSET_CAN_TURN_WHILE_FALLING
Definition Opcodes.h:816
@ SMSG_UPDATE_LAST_INSTANCE
Definition Opcodes.h:1052
@ SMSG_AUCTION_LIST_PENDING_SALES
Definition Opcodes.h:527
@ SMSG_CALENDAR_RAID_LOCKOUT_REMOVED
Definition Opcodes.h:587
@ SMSG_GUILD_BANK_QUERY_TEXT_RESULT
Definition Opcodes.h:685
@ SMSG_MOVE_SET_RUN_SPEED
Definition Opcodes.h:806
@ SMSG_ARCHAEOLOGY_SURVERY_CAST
Definition Opcodes.h:514
@ NULL_OPCODE
Definition Opcodes.h:22
@ CMSG_GUILD_QUERY_NEWS
Definition Opcodes.h:216
@ SMSG_TRAINER_LIST
Definition Opcodes.h:1036
@ SMSG_GUILD_MEMBER_DAILY_RESET
Definition Opcodes.h:701
@ SMSG_LFG_UPDATE_SEARCH
Definition Opcodes.h:750
@ CMSG_KEEP_ALIVE
Definition Opcodes.h:234
@ CMSG_AUTOEQUIP_ITEM
Definition Opcodes.h:48
@ SMSG_QUEST_POI_QUERY_RESPONSE
Definition Opcodes.h:914
@ SMSG_MOVE_UPDATE_KNOCK_BACK
Definition Opcodes.h:822
@ SMSG_AUCTION_OWNER_NOTIFICATION
Definition Opcodes.h:530
@ CMSG_GUILD_BANK_SWAP_ITEMS
Definition Opcodes.h:200
@ SMSG_BATTLEFIELD_STATUS_FAILED
Definition Opcodes.h:546
@ CMSG_CHAT_IGNORED
Definition Opcodes.h:130
@ CMSG_EQUIPMENT_SET_USE
Definition Opcodes.h:156
@ SMSG_MOVE_UPDATE_COLLISION_HEIGHT
Definition Opcodes.h:819
@ SMSG_AUTH_RESPONSE
Definition Opcodes.h:534
@ SMSG_PET_BATTLE_DEBUG_QUEUE_DUMP_RESPONSE
Definition Opcodes.h:855
@ SMSG_PET_BATTLE_FINISHED
Definition Opcodes.h:858
@ SMSG_CLEAR_COOLDOWNS
Definition Opcodes.h:615
@ SMSG_DEATH_RELEASE_LOC
Definition Opcodes.h:633
@ SMSG_GUILD_INVITE_CANCEL
Definition Opcodes.h:699
@ SMSG_DUEL_COMPLETE
Definition Opcodes.h:640
@ SMSG_BATTLEGROUND_PLAYER_JOINED
Definition Opcodes.h:549
@ SMSG_BATTLEFIELD_PLAYER_POSITIONS
Definition Opcodes.h:542
@ SMSG_ON_MONSTER_MOVE
Definition Opcodes.h:838
@ SMSG_GUILD_EVENT_BANK_TAB_TEXT_CHANGED
Definition Opcodes.h:695
@ SMSG_CONTACT_LIST
Definition Opcodes.h:621
@ SMSG_SEND_MAIL_RESULT
Definition Opcodes.h:946
@ CMSG_BATTLE_PET_WILD_REQUEST
Definition Opcodes.h:75
@ CMSG_CALENDAR_REMOVE_EVENT
Definition Opcodes.h:98
@ SMSG_SPLINE_MOVE_SET_FEATHER_FALL
Definition Opcodes.h:994
@ CMSG_SUBMIT_BUG
Definition Opcodes.h:445
@ SMSG_START_TIMER
Definition Opcodes.h:1019
@ CMSG_BUYBACK_ITEM
Definition Opcodes.h:83
@ SMSG_QUESTUPDATE_FAILEDTIMER
Definition Opcodes.h:910
@ SMSG_SPIRIT_HEALER_CONFIRM
Definition Opcodes.h:990
@ SMSG_UPDATE_TALENT_DATA
Definition Opcodes.h:1054
@ SMSG_FRIEND_STATUS
Definition Opcodes.h:658
@ CMSG_GUILD_REQUEST_CHALLENGE_UPDATE
Definition Opcodes.h:220
@ SMSG_ENVIRONMENTALDAMAGELOG
Definition Opcodes.h:651
@ CMSG_GUILD_BANK_NOTE
Definition Opcodes.h:197
@ CMSG_MOVE_GRAVITY_DISABLE_ACK
Definition Opcodes.h:301
@ SMSG_PLAYER_MOVE
Definition Opcodes.h:878
@ CMSG_GET_MAIL_LIST
Definition Opcodes.h:165
@ SMSG_LF_GUILD_APPLICATIONS_LIST_CHANGED
Definition Opcodes.h:752
@ CMSG_SET_LFG_BONUS_FACTION_ID
Definition Opcodes.h:423
@ CMSG_CAST_SPELL
Definition Opcodes.h:107
@ SMSG_DESTRUCTIBLE_BUILDING_DAMAGE
Definition Opcodes.h:636
@ SMSG_QUEST_QUERY_RESPONSE
Definition Opcodes.h:916
@ SMSG_SPELLDISPELLOG
Definition Opcodes.h:971
@ SMSG_BLACKMARKET_BID_RESULT
Definition Opcodes.h:564
@ CMSG_REFORGE_ITEM
Definition Opcodes.h:378
@ SMSG_GM_TICKET_GET_TICKET
Definition Opcodes.h:663
@ CMSG_SELL_ITEM
Definition Opcodes.h:409
@ SMSG_SPLINE_MOVE_SET_SWIM_BACK_SPEED
Definition Opcodes.h:1005
@ CMSG_GUILD_BANK_BUY_TAB
Definition Opcodes.h:193
@ SMSG_ITEM_ENCHANT_TIME_UPDATE
Definition Opcodes.h:729
@ SMSG_NEW_TAXI_PATH
Definition Opcodes.h:833
@ CMSG_PET_BATTLE_QUIT_NOTIFY
Definition Opcodes.h:334
@ CMSG_DUEL_PROPOSED
Definition Opcodes.h:147
@ SMSG_TRANSFER_ABORTED
Definition Opcodes.h:1037
@ SMSG_WARDEN_DATA
Definition Opcodes.h:1064
@ SMSG_LEARNED_SPELL
Definition Opcodes.h:735
@ CMSG_CHANNEL_MODERATOR
Definition Opcodes.h:117
@ SMSG_INSTANCE_SAVE_CREATED
Definition Opcodes.h:726
@ SMSG_OVERRIDE_LIGHT
Definition Opcodes.h:840
@ SMSG_LOAD_CUF_PROFILES
Definition Opcodes.h:758
@ CMSG_PETITION_BUY
Definition Opcodes.h:322
@ CMSG_PETITION_SIGN
Definition Opcodes.h:328
@ SMSG_PLAY_ONE_SHOT_ANIM_KIT
Definition Opcodes.h:881
@ SMSG_GUILD_BANK_MONEY_WITHDRAWN
Definition Opcodes.h:684
@ CMSG_SET_PET_TALENT_TREE
Definition Opcodes.h:426
@ CMSG_CANCEL_MOUNT_AURA
Definition Opcodes.h:104
@ SMSG_POWER_UPDATE
Definition Opcodes.h:887
@ SMSG_PET_LEARNED_SPELL
Definition Opcodes.h:868
@ SMSG_ON_CANCEL_EXPECTED_RIDE_VEHICLE_AURA
Definition Opcodes.h:837
@ SMSG_CONQUEST_FORMULA_CONSTANTS
Definition Opcodes.h:620
@ SMSG_QUEST_CONFIRM_ACCEPT
Definition Opcodes.h:911
@ CMSG_MOVE_SET_CAN_TURN_WHILE_FALLING_ACK
Definition Opcodes.h:307
@ SMSG_PLAYED_TIME
Definition Opcodes.h:876
@ SMSG_MOVE_TELEPORT
Definition Opcodes.h:812
@ MSG_MOVE_START_DESCEND
Definition Opcodes.h:485
@ CMSG_AUTH_SESSION
Definition Opcodes.h:46
@ CMSG_VIOLENCE_LEVEL
Definition Opcodes.h:467
@ CMSG_LF_GUILD_GET_APPLICATIONS
Definition Opcodes.h:248
@ SMSG_TRADE_STATUS_EXTENDED
Definition Opcodes.h:1034
@ MSG_MOVE_STOP_SWIM
Definition Opcodes.h:498
@ SMSG_PET_NAME_QUERY_RESPONSE
Definition Opcodes.h:870
@ SMSG_MIRROR_IMAGE_CREATURE_DATA
Definition Opcodes.h:782
@ CMSG_GRANT_LEVEL
Definition Opcodes.h:177
@ CMSG_BATTLEFIELD_MGR_QUEUE_INVITE_RESPONSE
Definition Opcodes.h:59
@ CMSG_GUILD_BANK_QUERY_TAB
Definition Opcodes.h:198
@ SMSG_EQUIPMENT_SET_ID
Definition Opcodes.h:652
@ SMSG_DUEL_REQUESTED
Definition Opcodes.h:644
@ SMSG_QUESTGIVER_QUEST_COMPLETE
Definition Opcodes.h:899
@ SMSG_STOP_MIRROR_TIMER
Definition Opcodes.h:1020
@ SMSG_GUILD_EVENT_BANK_TAB_MODIFIED
Definition Opcodes.h:694
@ CMSG_BUY_BANK_SLOT
Definition Opcodes.h:84
@ CMSG_REQUEST_PARTY_MEMBER_STATS
Definition Opcodes.h:389
@ CMSG_REORDER_CHARACTERS
Definition Opcodes.h:379
@ CMSG_AUCTION_LIST_PENDING_SALES
Definition Opcodes.h:41
@ CMSG_GUILD_PROMOTE
Definition Opcodes.h:214
@ SMSG_LFD_PARTY_INFO
Definition Opcodes.h:741
@ SMSG_FISH_NOT_HOOKED
Definition Opcodes.h:657
@ CMSG_VOID_STORAGE_TRANSFER
Definition Opcodes.h:470
@ SMSG_MIRROR_IMAGE_COMPONENTED_DATA
Definition Opcodes.h:781
@ CMSG_GM_TICKET_CASE_STATUS
Definition Opcodes.h:169
@ SMSG_SPLINE_MOVE_SET_FLIGHT_BACK_SPEED
Definition Opcodes.h:995
@ SMSG_GUILD_EVENT_PLAYER_LEFT
Definition Opcodes.h:697
@ SMSG_TAXI_NODE_STATUS
Definition Opcodes.h:1024
@ CMSG_GUILD_BANK_UPDATE_TAB
Definition Opcodes.h:201
@ SMSG_CLIENT_CONTROL_UPDATE
Definition Opcodes.h:618
@ CMSG_GUILD_MOTD
Definition Opcodes.h:211
@ SMSG_QUESTGIVER_OFFER_REWARD
Definition Opcodes.h:898
@ CMSG_GAME_OBJ_USE
Definition Opcodes.h:162
@ SMSG_QUEST_PUSH_RESULT
Definition Opcodes.h:915
@ CMSG_MOVE_SET_FLY
Definition Opcodes.h:309
@ CMSG_REQUEST_HOTFIX
Definition Opcodes.h:388
@ CMSG_REQUEST_FORCED_REACTIONS
Definition Opcodes.h:387
@ CMSG_MOVE_FORCE_FLIGHT_BACK_SPEED_CHANGE_ACK
Definition Opcodes.h:292
@ SMSG_WEEKLY_RESET_CURRENCY
Definition Opcodes.h:1066
@ SMSG_FEATURE_SYSTEM_STATUS
Definition Opcodes.h:654
@ CMSG_SAVE_CUF_PROFILES
Definition Opcodes.h:405
@ PROCESS_INPLACE
Definition Opcodes.h:1089
@ PROCESS_THREADSAFE
Definition Opcodes.h:1091
@ PROCESS_THREADUNSAFE
Definition Opcodes.h:1090
pOpcodeHandler Handler
Definition Opcodes.h:1104
char const * Name
Definition Opcodes.h:1105
OpcodeHandler(uint16 opcodeNumber, char const *_name, SessionStatus _status, PacketProcessing _processing, pOpcodeHandler _handler)
Definition Opcodes.h:1101
SessionStatus Status
Definition Opcodes.h:1106
uint16 OpcodeNumber
Definition Opcodes.h:1108
PacketProcessing ProcessingPlace
Definition Opcodes.h:1107