[4.0.0 12025] Opcode ID changed ? menu

User Tag List

Page 1 of 11 12345 ... LastLast
Results 1 to 15 of 151
  1. #1
    Woweur's Avatar Corporal
    Reputation
    24
    Join Date
    Jan 2010
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [4.0.0 12025] Opcode ID changed ?

    Hey, i have patched my cataclysm alpha to the next build (12025) and i have try to adapt emulator for this. Ok, so i have decompile with IDA in pseudo-code wow.exe ...etc.

    When i try to find the new offset for ReadUint32, HandleOpcode i have find that :

    Code:
    //----- (004BC690) --------------------------------------------------------
    void __cdecl sub_4BC690()
    {
      void *v0; // eax@2
    
      if ( !dword_C1C980 )
      {
        v0 = sub_7A6F40(57752, (int)".\\FriendList.cpp", 1207, 0);
        if ( v0 )
          dword_C1C980 = sub_4B68E0(v0);
        else
          dword_C1C980 = 0;
        sub_4B3B80(0x2FEDu, (int)sub_4BC370, 0);
        sub_4B3B80(0x3B68u, (int)sub_4B69D0, 0);
        sub_4B3B80(0xCBEBu, (int)sub_4B6A10, 0);
        sub_4B3B80(0xBFECu, (int)sub_4BC350, 0);
        sub_4B3B80(0x7FECu, (int)sub_4BC300, 0);
        sub_5F9E60((int)"whois", (int)sub_4B78F0, 0, (int)"Ask the server to do an account/real name lookup on a character name");
    Ok, so sub_4B3B80 is a function for handle recv opcode from the server, so the first argument of the function is opcode id !

    Here you can view the same function for build 11927 :

    Code:
    //----- (00FriendList__Initialize) --------------------------------------------------------
    void __cdecl sub_FriendList__Initialize()
    {
      void *v0; // eax@2
    
      if ( !dword_B8E3E0 )
      {
        v0 = sub_SMemAlloc(57752, (signed int)".\\FriendList.cpp", 1207, 0);
        if ( v0 )
          dword_B8E3E0 = sub_FriendList__FriendList(v0);
        else
          dword_B8E3E0 = 0;
        sub_ClientServices_SetMessageHandler(99, (int)sub_Packet_Packet_SMSG_WHO, 0);
        sub_ClientServices_SetMessageHandler(101, (int)sub_Packet_Packet_SMSG_WHOIS, 0);
        sub_ClientServices_SetMessageHandler(510, (int)sub_Packet_Packet_SMSG_RWHOIS, 0);
        sub_ClientServices_SetMessageHandler(103, (int)sub_Packet_Packet_SMSG_CONTACT_LIST, 0);
        sub_ClientServices_SetMessageHandler(104, (int)sub_Packet_Packet_SMSG_FRIEND_STATUS, 0);
        sub_ConsoleCommandRegister("whois", (int)sub_4B1890, 0, (int)"Ask the server to do an account/real name lookup on a character name");
    so, WTF ? Blizzard has change all opcode id ?

    [4.0.0 12025] Opcode ID changed ?
  2. #2
    TOM_RUS's Avatar Legendary
    Reputation
    914
    Join Date
    May 2008
    Posts
    699
    Thanks G/R
    0/52
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Yeah. Looks like they randomized all opcodes

  3. #3
    Woweur's Avatar Corporal
    Reputation
    24
    Join Date
    Jan 2010
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok so i'm no crasy =P.
    I don't think it's random opcode id, maybe formule, flags or something.
    Last edited by Woweur; 05-18-2010 at 04:15 AM.

  4. #4
    XTZGZoReX's Avatar Active Member
    Reputation
    32
    Join Date
    Apr 2008
    Posts
    173
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    All research so far shows that they're completely randomized during compile-time.

    The randomized IDs are "condensed" though, but it's seemingly not anything that'd be useful to us.

    So until someone works their magic, we're pretty much ****ed.
    Last edited by XTZGZoReX; 05-18-2010 at 08:02 AM.

  5. #5
    Woweur's Avatar Corporal
    Reputation
    24
    Join Date
    Jan 2010
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I Try to make a little tool for convert old server's opcode to new server's opcode, i just need go into a game with new build. Noby has a sandbox source ? (because with sandbox, we havn't a lot of opcode to change manualy =P).
    Last edited by Woweur; 05-18-2010 at 08:48 AM.

  6. #6
    Hiperzone's Avatar Member
    Reputation
    10
    Join Date
    Nov 2009
    Posts
    19
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    lol anyone having trouble locating SMSG_AUTH_CHALLENGE and SMSG_COMPRESSED_OBJECT opcodes? cant seem to find the ids at all.

  7. #7
    XTZGZoReX's Avatar Active Member
    Reputation
    32
    Join Date
    Apr 2008
    Posts
    173
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    lol anyone having trouble locating SMSG_AUTH_CHALLENGE and SMSG_COMPRESSED_OBJECT opcodes? cant seem to find the ids at all.
    I hope you're not searching for their old, non-randomized value...

    I Try to make a little tool for convert old server's opcode to new server's opcode, i just need go into a game with new build. Noby has a sandbox source ? (because with sandbox, we havn't a lot of opcode to change manualy =P).
    How would you even achieve that?

  8. #8
    Woweur's Avatar Corporal
    Reputation
    24
    Join Date
    Jan 2010
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    45027 is a new randomized ID for smsg_compress_object_update and 7651 is a new randomized ID for SMSG_AUTH_CHALLENGE.

  9. #9
    Hiperzone's Avatar Member
    Reputation
    10
    Join Date
    Nov 2009
    Posts
    19
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ye i found the challenge one by myself, thx for the other. im able to reach char enum now, just need to get CMSG_CHAR_LOGIN for world enter.

  10. #10
    Woweur's Avatar Corporal
    Reputation
    24
    Join Date
    Jan 2010
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    it's 35820 for CMSG_CHAR_LOGIN.

  11. #11
    Hurrr's Avatar Sergeant
    Reputation
    5
    Join Date
    May 2010
    Posts
    44
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Here's a (long and painful) way to find the new values for all the SMSG opcodes.

    Run two instances of IDA pro side-by-side, one with the 11927 client and one with the 12025 client.

    In the old client, the function located at 4AE1A0 registers a handler function for a given SMSG opcode. You can find all references to it, it's called with the opcode as first parameter (so pushed last before the call).

    In the new client, that function is at 4B3B80 and works the exact same way, except with the randomized value for that opcode.

    So in both IDA, go to that function and open the xref pane (view -> open subview -> cross references). Dock it to the side.

    Now the nice thing is that the calls to those functions appears to be mostly in the same order in both versions of the client (ie the code looks the same in both place except for the opcode. I also looked at the handler code for a couple opcodes that were registered in the same place and the handler code seemed to match too).

    So by going through each call one by one on each side you can establish a correspondence table between the old opcode values and the new ones.

    I guess some script could be made to parse the disassembled code for both client and automatically build that correspondence table, the problem is that so far from what I seen the order can differ slightly, I've seen one small function registering just one opcode in the old client that wasn't there at the same place in the new one.

    But to fish out individual opcodes I guess it's workable. I had started to collect all the opcodes manually but it's an awful lot of work to do by hand and it's error prone.

  12. #12
    Woweur's Avatar Corporal
    Reputation
    24
    Join Date
    Jan 2010
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah, i have already done a little script for that (detour a function with injected DLL) but that work only if you can go in game AND it's work only for server opcode (SMSG).

  13. #13
    Hurrr's Avatar Sergeant
    Reputation
    5
    Join Date
    May 2010
    Posts
    44
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I found the function that sends a CMSG. It's at 798080 in the new client and at 758790 in the 11927 client. It takes the opcode as first parameter on the stack. The same method as with the function that registers the SMSG handlers can probably be applied.

    Gonna try to see if I can get mangos to work.

  14. #14
    Robske's Avatar Contributor
    Reputation
    305
    Join Date
    May 2007
    Posts
    1,062
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The ones I checked (mainly those related to movement) are correct.

    Is this Blizzard's response to those 'teleport' hacks?...
    Code:
    enum RealmServerOpCode
    {
    	SMSG_TUTORIAL_FLAGS = 0x5D62,
    
    	SMSG_NOTIFICATION = 0x99EE,
    
    	SMSG_PLAYED_TIME = 0x1F69,
    
    	SMSG_NEW_WORLD = 0x2D62,
    
    	SMSG_TRANSFER_PENDING = 0x29EC,
    
    	SMSG_TRANSFER_ABORTED = 0x79EA,
    
    	SMSG_LOGIN_VERIFY_WORLD = 0xF96E,
    
    	SMSG_KICK_REASON = 0x1F6D,
    
    	SMSG_SPELL_START = 0xCFE8,
    
    	SMSG_SPELL_GO = 0xEBE8,
    
    	SMSG_CAST_FAILED = 0x9B69,
    
    	SMSG_SPELL_FAILURE = 0x6F6B,
    
    	SMSG_SPELL_FAILED_OTHER = 0xED6D,
    
    	SMSG_PET_CAST_FAILED = 0x6DED,
    
    	SMSG_SPELL_COOLDOWN = 0x1964,
    
    	SMSG_ITEM_COOLDOWN = 0xCD6E,
    
    	SMSG_COOLDOWN_EVENT = 0xEB66,
    
    	SMSG_CLEAR_COOLDOWN = 0xE9E0,
    
    	SMSG_MODIFY_COOLDOWN = 0x7D6E,
    
    	SMSG_COOLDOWN_CHEAT = 0x59EF,
    
    	SMSG_PET_TAME_FAILURE = 0xF9E2,
    
    	SMSG_SPELL_DELAYED = 0x496A,
    
    	MSG_CHANNEL_START = 0x1D69,
    
    	MSG_CHANNEL_UPDATE = 0x7FE3,
    
    	SMSG_PLAY_SPELL_VISUAL = 0xBDE8,
    
    	SMSG_PLAY_SPELL_IMPACT = 0xFD61,
    
    	SMSG_SET_FLAT_SPELL_MODIFIER = 0x2FED,
    
    	SMSG_SET_PCT_SPELL_MODIFIER = 0x3B68,
    
    	SMSG_GAMEOBJECT_RESET_STATE = 0xCBEB,
    
    	SMSG_FEIGN_DEATH_RESISTED = 0xBFEC,
    
    	SMSG_SPELL_UPDATE_CHAIN_TARGETS = 0x7FEC,
    
    	SMSG_NOTIFY_DEST_LOC_SPELL_CAST = 0x2B6D,
    
    	SMSG_ON_CANCEL_EXPECTED_RIDE_VEHICLE_AURA = 0x5B67,
    
    	SMSG_UNKNOWN_1215 = 0xB960,
    
    	SMSG_MEETINGSTONE_IN_PROGRESS = 0xEFE0,
    
    	SMSG_DAMAGE_TAKEN_OBSOLETE = 0xCFED,
    
    	SMSG_WARDEN_DATA = 0xBD65,
    
    	SMSG_GAMESPEED_SET = 0xBF66,
    
    	SMSG_LOGIN_SETTIMESPEED = 0xBD67,
    
    	SMSG_GAMETIME_UPDATE = 0x4B6D,
    
    	SMSG_SERVERTIME = 0x8FE6,
    
    	SMSG_GAMETIME_SET = 0x3F68,
    
    	SMSG_MOUNTRESULT = 0xFBE8,
    
    	SMSG_DISMOUNTRESULT = 0x7D62,
    
    	SMSG_INVENTORY_CHANGE_FAILURE = 0x0969,
    
    	SMSG_OPEN_CONTAINER = 0x3F60,
    
    	SMSG_ITEM_PUSH_RESULT = 0xFDED,
    
    	SMSG_LIST_INVENTORY = 0x2DE0,
    
    	SMSG_BUY_FAILED = 0x7DEE,
    
    	SMSG_BUY_ITEM = 0x5FE6,
    
    	SMSG_SELL_ITEM = 0xEB6F,
    
    	SMSG_UNKNOWN_1202 = 0xADED,
    
    	SMSG_UNKNOWN_1205 = 0x7F62,
    
    	SMSG_LOOT_RESPONSE = 0xABE7,
    
    	SMSG_LOOT_RELEASE_RESPONSE = 0xAF60,
    
    	SMSG_LOOT_REMOVED = 0xFB65,
    
    	SMSG_LOOT_MONEY_NOTIFY = 0x3D62,
    
    	SMSG_LOOT_ITEM_NOTIFY = 0x5968,
    
    	SMSG_LOOT_CLEAR_MONEY = 0xBDEA,
    
    	SMSG_LEARNED_SPELL = 0x7D6A,
    
    	SMSG_REMOVED_SPELL = 0x8FE3,
    
    	SMSG_SUPERCEDED_SPELL = 0xEB63,
    
    	SMSG_INITIAL_SPELLS = 0xE9E6,
    
    	SMSG_ACTION_BUTTONS = 0xFBED,
    
    	SMSG_GROUP_INVITE = 0xDFE5,
    
    	SMSG_GROUP_CANCEL = 0x1D6E,
    
    	SMSG_GROUP_DECLINE = 0x3D67,
    
    	SMSG_GROUP_UNINVITE = 0xDF6B,
    
    	SMSG_GROUP_SET_LEADER = 0xADE0,
    
    	SMSG_GROUP_DESTROYED = 0xBFEA,
    
    	SMSG_PARTY_COMMAND_RESULT = 0x3FE7,
    
    	SMSG_GROUP_LIST = 0xF968,
    
    	SMSG_REAL_GROUP_UPDATE = 0xFDE1,
    
    	SMSG_QUESTGIVER_QUEST_LIST = 0x0B6F,
    
    	SMSG_QUESTGIVER_QUEST_INVALID = 0xED6B,
    
    	SMSG_QUESTGIVER_QUEST_DETAILS = 0xBBEA,
    
    	SMSG_QUESTGIVER_REQUEST_ITEMS = 0x9D64,
    
    	SMSG_QUESTGIVER_OFFER_REWARD = 0xC9E7,
    
    	SMSG_QUESTGIVER_QUEST_COMPLETE = 0xFBE5,
    
    	SMSG_QUESTGIVER_QUEST_FAILED = 0x796C,
    
    	SMSG_QUESTGIVER_STATUS = 0xF96A,
    
    	SMSG_QUESTGIVER_STATUS_MULTIPLE = 0x7DE6,
    
    	SMSG_QUESTLOG_FULL = 0x2FEE,
    
    	SMSG_TRAINER_LIST = 0xDFE8,
    
    	SMSG_TRAINER_BUY_FAILED = 0xC960,
    
    	SMSG_SET_PROFICIENCY = 0x4B65,
    
    	SMSG_RESURRECT_REQUEST = 0xCDE2,
    
    	SMSG_PLAYER_SKINNED = 0x3DEC,
    
    	SMSG_INSPECT = 0x0B64,
    
    	SMSG_INSPECT_TALENT = 0x5DEB,
    
    	SMSG_READ_ITEM_OK = 0xD96E,
    
    	SMSG_READ_ITEM_FAILED = 0xCDE6,
    
    	SMSG_CANCEL_COMBAT = 0x1B62,
    
    	SMSG_TAXINODE_STATUS = 0x0B62,
    
    	SMSG_SHOWTAXINODES = 0x296D,
    
    	SMSG_ACTIVATETAXIREPLY = 0x1FEC,
    
    	SMSG_GUILD_INVITE = 0x7BEB,
    
    	SMSG_GUILD_DECLINE = 0x7BEF,
    
    	SMSG_GUILD_INFO = 0xC96E,
    
    	SMSG_GUILD_EVENT = 0xBD63,
    
    	SMSG_GUILD_COMMAND_RESULT = 0xBB63,
    
    	MSG_SAVE_GUILD_EMBLEM = 0xCFE0,
    
    	MSG_TABARDVENDOR_ACTIVATE = 0x5FE0,
    
    	SMSG_PETITION_SHOWLIST = 0xBDED,
    
    	SMSG_PETITION_SHOW_SIGNATURES = 0x79EC,
    
    	SMSG_PETITION_SIGN_RESULTS = 0x6FE9,
    
    	MSG_PETITION_DECLINE = 0xE9EE,
    
    	SMSG_TURN_IN_PETITION_RESULTS = 0xEB6A,
    
    	MSG_PETITION_RENAME = 0x6B68,
    
    	SMSG_BINDPOINTUPDATE = 0x3BED,
    
    	SMSG_BINDZONEREPLY = 0xEBEA,
    
    	SMSG_EMOTE = 0xAFEA,
    
    	SMSG_PLAYERBOUND = 0xEDEA,
    
    	SMSG_PLAYERBINDERROR = 0x0FE9,
    
    	SMSG_NEW_TAXI_PATH = 0x3F6D,
    
    	SMSG_PET_NAME_INVALID = 0xCBE4,
    
    	SMSG_EXPLORATION_EXPERIENCE = 0x9BE6,
    
    	SMSG_PARTY_MEMBER_STATS = 0x9D63,
    
    	SMSG_PARTY_MEMBER_STATS_FULL = 0x6FEC,
    
    	SMSG_QUESTUPDATE_FAILED = 0x99E7,
    
    	SMSG_QUESTUPDATE_FAILEDTIMER = 0x0BED,
    
    	SMSG_QUESTUPDATE_COMPLETE = 0xF963,
    
    	SMSG_QUESTUPDATE_ADD_KILL = 0x6F6E,
    
    	SMSG_QUESTUPDATE_ADD_PVP_KILL = 0xBD66,
    
    	SMSG_QUEST_CONFIRM_ACCEPT = 0xEBE7,
    
    	SMSG_SHOW_BANK = 0x4962,
    
    	SMSG_BUY_BANK_SLOT_RESULT = 0x3FE1,
    
    	SMSG_LEVELUP_INFO = 0xEBE1,
    
    	MSG_MINIMAP_PING = 0x7FE8,
    
    	SMSG_TRIGGER_CINEMATIC = 0x9DE1,
    
    	SMSG_ITEM_TIME_UPDATE = 0x4F6F,
    
    	SMSG_ITEM_ENCHANT_TIME_UPDATE = 0x3964,
    
    	MSG_RANDOM_ROLL = 0xE96D,
    
    	SMSG_FISH_NOT_HOOKED = 0xBF65,
    
    	SMSG_FISH_ESCAPED = 0x5B6D,
    
    	SMSG_FORCEACTIONSHOW = 0x4DE4,
    
    	SMSG_GODMODE = 0xDF6D,
    
    	SMSG_PETGODMODE = 0xFB6C,
    
    	SMSG_IGNORE_REQUIREMENTS_CHEAT = 0x3DEF,
    
    	SMSG_IGNORE_DIMINISHING_RETURNS_CHEAT = 0x696A,
    
    	SMSG_CLEAR_FAR_SIGHT_IMMEDIATE = 0x0B63,
    
    	SMSG_CHAT_WRONG_FACTION = 0x8B6C,
    
    	SMSG_CHAT_PLAYER_NOT_FOUND = 0x1DE7,
    
    	SMSG_CHAT_RESTRICTED = 0xCDED,
    
    	SMSG_MEETINGSTONE_MEMBER_ADDED = 0x7FEB,
    
    	SMSG_GMTICKET_SYSTEMSTATUS = 0x9D69,
    
    	SMSG_SPIRIT_HEALER_CONFIRM = 0x69E0,
    
    	MSG_TALENT_WIPE_CONFIRM = 0x0BE0,
    
    	SMSG_BINDER_CONFIRM = 0x5F6F,
    
    	SMSG_SPELLLOGEXECUTE = 0x7F6C,
    
    	SMSG_SPELLLOGMISS = 0x0FE6,
    
    	SMSG_SPELLDAMAGESHIELD = 0xDFEC,
    
    	SMSG_SPELLINSTAKILLLOG = 0xCBEF,
    
    	SMSG_SPELLNONMELEEDAMAGELOG = 0x8961,
    
    	SMSG_SPELLHEALLOG = 0x19E9,
    
    	SMSG_SPELLENERGIZELOG = 0xBFEF,
    
    	SMSG_SPELLDISPELLOG = 0x19ED,
    
    	SMSG_SPELLSTEALLOG = 0x0FED,
    
    	SMSG_SPELLBREAKLOG = 0xE96B,
    
    	SMSG_RESURRECT_FAILED = 0x8B65,
    
    	SMSG_SPELLORDAMAGE_IMMUNE = 0xBD69,
    
    	MSG_QUEST_PUSH_RESULT = 0xCFE7,
    
    	SMSG_DAMAGE_CALC_LOG = 0x0DE3,
    
    	SMSG_RAID_GROUP_ONLY = 0xFBEE,
    
    	SMSG_INSTANCE_LOCK_WARNING_QUERY = 0x996C,
    
    	SMSG_LOOT_START_ROLL = 0x59EA,
    
    	SMSG_LOOT_ALL_PASSED = 0xAFE6,
    
    	SMSG_LOOT_ROLL_WON = 0x8F6C,
    
    	SMSG_LOOT_ROLL = 0x2FE6,
    
    	SMSG_LOOT_MASTER_LIST = 0x4BE5,
    
    	SMSG_MEETINGSTONE_SETQUEUE = 0x2D68,
    
    	SMSG_SUMMON_REQUEST = 0x1961,
    
    	SMSG_SUMMON_CANCEL = 0x9D6C,
    
    	SMSG_PLAY_TIME_WARNING = 0xA96B,
    
    	SMSG_ARENA_TEAM_INVITE = 0x69E7,
    
    	SMSG_ARENA_TEAM_EVENT = 0x5FE8,
    
    	SMSG_ARENA_TEAM_COMMAND_RESULT = 0x896C,
    
    	SMSG_ARENA_ERROR = 0xBF68,
    
    	SMSG_DEATH_RELEASE_LOC = 0x6FE6,
    
    	SMSG_FORCED_DEATH_UPDATE = 0xDD6F,
    
    	SMSG_TIME_SYNC_REQ = 0x9D6A,
    
    	SMSG_VOICE_SESSION_ROSTER_UPDATE = 0x4BED,
    
    	SMSG_VOICE_SESSION_LEAVE = 0x6BEE,
    
    	SMSG_VOICE_SET_TALKER_MUTED = 0x5F68,
    
    	SMSG_VOICE_PARENTAL_CONTROLS = 0xB96C,
    
    	SMSG_CROSSED_INEBRIATION_THRESHOLD = 0xEDEC,
    
    	SMSG_COMPLAIN_RESULT = 0xEB62,
    
    	SMSG_FEATURE_SYSTEM_STATUS = 0x7B67,
    
    	SMSG_AVAILABLE_VOICE_CHANNEL = 0xE9EA,
    
    	SMSG_CALENDAR_COMMAND_RESULT = 0x49E3,
    
    	SMSG_REPORT_PVP_AFK_RESULT = 0x4F63,
    
    	SMSG_GROUPACTION_THROTTLED = 0x7BEE,
    
    	SMSG_SEND_UNLEARN_SPELLS = 0x6BE5,
    
    	SMSG_CONVERT_RUNE = 0x9D60,
    
    	SMSG_RESYNC_RUNES = 0x59E1,
    
    	SMSG_ADD_RUNE_POWER = 0x1B6D,
    
    	SMSG_UNKNOWN_1190 = 0xCD66,
    
    	SMSG_TALENTS_INFO = 0x0F66,
    
    	SMSG_UNKNOWN_1224 = 0x3DE3,
    
    	SMSG_QUEST_POI_QUERY_RESPONSE = 0x1B67,
    
    	SMSG_TOGGLE_XP_GAIN = 0xC9E6,
    
    	SMSG_SET_REST_START_OBSOLETE = 0x6BE3,
    
    	SMSG_TRADE_STATUS = 0xF9E7,
    
    	SMSG_TRADE_STATUS_EXTENDED = 0x9B6E,
    
    	SMSG_GAMEOBJECT_PAGETEXT = 0x9BEF,
    
    	SMSG_GAMEOBJECT_CUSTOM_ANIM = 0x1FE8,
    
    	SMSG_GAMEOBJECT_DESPAWN_ANIM = 0x2FE1,
    
    	MSG_MOVE_START_FORWARD = 0xFD6F,
    
    	MSG_MOVE_START_BACKWARD = 0x39E7,
    
    	MSG_MOVE_STOP = 0x9FE5,
    
    	MSG_MOVE_START_STRAFE_LEFT = 0x1DEE,
    
    	MSG_MOVE_START_STRAFE_RIGHT = 0x8B61,
    
    	MSG_MOVE_STOP_STRAFE = 0x3DEE,
    
    	MSG_MOVE_START_ASCEND = 0xDBE3,
    
    	MSG_MOVE_START_DESCEND = 0x9F6A,
    
    	MSG_MOVE_STOP_ASCEND = 0x4D69,
    
    	MSG_MOVE_JUMP = 0x5DEA,
    
    	MSG_MOVE_START_TURN_LEFT = 0xEFE6,
    
    	MSG_MOVE_START_TURN_RIGHT = 0xA9E2,
    
    	MSG_MOVE_STOP_TURN = 0xFD63,
    
    	MSG_MOVE_START_PITCH_UP = 0x796A,
    
    	MSG_MOVE_START_PITCH_DOWN = 0x7DE1,
    
    	MSG_MOVE_STOP_PITCH = 0x2FE7,
    
    	MSG_MOVE_SET_RUN_MODE = 0x8DE4,
    
    	MSG_MOVE_SET_WALK_MODE = 0xEF6C,
    
    	MSG_MOVE_TELEPORT = 0x2D6A,
    
    	MSG_MOVE_SET_FACING = 0x89EE,
    
    	MSG_MOVE_SET_PITCH = 0x2D66,
    
    	MSG_MOVE_TOGGLE_COLLISION_CHEAT = 0xCB68,
    
    	SMSG_UNKNOWN_1234 = 0xFFE1,
    
    	MSG_MOVE_SET_RUN_SPEED = 0xAB61,
    
    	MSG_MOVE_SET_RUN_BACK_SPEED = 0x6FE0,
    
    	MSG_MOVE_SET_WALK_SPEED = 0x5BE5,
    
    	MSG_MOVE_SET_SWIM_SPEED = 0xEF66,
    
    	MSG_MOVE_SET_SWIM_BACK_SPEED = 0x4965,
    
    	MSG_MOVE_SET_FLIGHT_SPEED = 0x8D6C,
    
    	MSG_MOVE_SET_FLIGHT_BACK_SPEED = 0xD9EA,
    
    	MSG_MOVE_SET_TURN_RATE = 0x4FE0,
    
    	MSG_MOVE_SET_PITCH_RATE = 0xDF67,
    
    	MSG_MOVE_ROOT = 0x7FEF,
    
    	MSG_MOVE_UNROOT = 0xEDE3,
    
    	MSG_MOVE_START_SWIM = 0x6960,
    
    	MSG_MOVE_STOP_SWIM = 0x5F62,
    
    	MSG_MOVE_START_SWIM_CHEAT = 0xAD6E,
    
    	MSG_MOVE_STOP_SWIM_CHEAT = 0x6BE7,
    
    	MSG_MOVE_HEARTBEAT = 0xB96D,
    
    	MSG_MOVE_FALL_LAND = 0xB96E,
    
    	MSG_MOVE_UPDATE_CAN_FLY = 0xB9E7,
    
    	UMSG_UPDATE_ARENA_TEAM_OBSOLETE = 0xC9E1,
    
    	MSG_MOVE_TELEPORT_ACK = 0x1BE2,
    
    	MSG_MOVE_TIME_SKIPPED = 0x3969,
    
    	SMSG_MONSTER_MOVE = 0x9968,
    
    	SMSG_MONSTER_MOVE_TRANSPORT = 0x4961,
    
    	SMSG_FORCE_RUN_SPEED_CHANGE = 0x0B60,
    
    	SMSG_FORCE_RUN_BACK_SPEED_CHANGE = 0x9BEE,
    
    	SMSG_FORCE_SWIM_SPEED_CHANGE = 0x09E6,
    
    	SMSG_FORCE_SWIM_BACK_SPEED_CHANGE = 0xADE6,
    
    	SMSG_FORCE_FLIGHT_SPEED_CHANGE = 0x1DEB,
    
    	SMSG_FORCE_FLIGHT_BACK_SPEED_CHANGE = 0xBBEE,
    
    	SMSG_FORCE_WALK_SPEED_CHANGE = 0xEDE9,
    
    	SMSG_FORCE_TURN_RATE_CHANGE = 0xB964,
    
    	SMSG_FORCE_PITCH_RATE_CHANGE = 0xDFE0,
    
    	SMSG_FORCE_MOVE_ROOT = 0x79E7,
    
    	SMSG_FORCE_MOVE_UNROOT = 0x1F62,
    
    	SMSG_MOVE_WATER_WALK = 0x296E,
    
    	SMSG_MOVE_LAND_WALK = 0xDBEC,
    
    	SMSG_MOVE_FEATHER_FALL = 0xCBE1,
    
    	SMSG_MOVE_NORMAL_FALL = 0xBF69,
    
    	SMSG_MOVE_SET_HOVER = 0xFB66,
    
    	SMSG_MOVE_UNSET_HOVER = 0x5F6C,
    
    	SMSG_UNKNOWN_1230 = 0x596E,
    
    	SMSG_UNKNOWN_1232 = 0xE965,
    
    	SMSG_MOVE_SET_CAN_FLY = 0xEBEF,
    
    	SMSG_MOVE_UNSET_CAN_FLY = 0x4FE8,
    
    	SMSG_MOVE_SET_FLIGHT_OBSOLETE = 0x6B61,
    
    	SMSG_MOVE_UNSET_FLIGHT_OBSOLETE = 0xFB6D,
    
    	SMSG_MOVE_KNOCK_BACK = 0xF9E1,
    
    	SMSG_MOUNTSPECIAL_ANIM = 0x7FE7,
    
    	SMSG_AI_REACTION = 0x1FE9,
    
    	MSG_MOVE_KNOCK_BACK = 0xAD6B,
    
    	MSG_MOVE_HOVER = 0x49E2,
    
    	MSG_MOVE_FEATHER_FALL = 0xFBE3,
    
    	MSG_MOVE_WATER_WALK = 0x8DE0,
    
    	SMSG_PET_ACTION_SOUND = 0x49E8,
    
    	SMSG_PET_DISMISS_SOUND = 0x59ED,
    
    	SMSG_SPLINE_MOVE_ROOT = 0x9FEE,
    
    	SMSG_UNKNOWN_1235 = 0x3DE0,
    
    	SMSG_UNKNOWN_1236 = 0x4F6E,
    
    	SMSG_SPLINE_MOVE_UNROOT = 0x7BE8,
    
    	SMSG_SPLINE_MOVE_FEATHER_FALL = 0x9DEA,
    
    	SMSG_SPLINE_MOVE_NORMAL_FALL = 0xFB6B,
    
    	SMSG_SPLINE_MOVE_SET_HOVER = 0xF9E0,
    
    	SMSG_SPLINE_MOVE_UNSET_HOVER = 0x39EC,
    
    	SMSG_SPLINE_MOVE_WATER_WALK = 0x2D65,
    
    	SMSG_SPLINE_MOVE_LAND_WALK = 0xAFE2,
    
    	SMSG_SPLINE_MOVE_START_SWIM = 0x1B65,
    
    	SMSG_SPLINE_MOVE_STOP_SWIM = 0x9DE9,
    
    	SMSG_SPLINE_MOVE_SET_RUN_MODE = 0x296F,
    
    	SMSG_SPLINE_MOVE_SET_WALK_MODE = 0x0BE2,
    
    	SMSG_SPLINE_MOVE_SET_FLYING = 0xEBED,
    
    	SMSG_SPLINE_MOVE_UNSET_FLYING = 0x7BEC,
    
    	SMSG_SPLINE_SET_RUN_SPEED = 0xADE1,
    
    	SMSG_SPLINE_SET_RUN_BACK_SPEED = 0xCDEF,
    
    	SMSG_SPLINE_SET_SWIM_SPEED = 0x8BED,
    
    	SMSG_SPLINE_SET_SWIM_BACK_SPEED = 0xEF60,
    
    	SMSG_SPLINE_SET_FLIGHT_SPEED = 0x59EE,
    
    	SMSG_SPLINE_SET_FLIGHT_BACK_SPEED = 0xEB69,
    
    	SMSG_SPLINE_SET_WALK_SPEED = 0x1F67,
    
    	SMSG_SPLINE_SET_TURN_RATE = 0xCF6D,
    
    	SMSG_SPLINE_SET_PITCH_RATE = 0x1960,
    
    	SMSG_STANDSTATE_UPDATE = 0xA9EF,
    
    	SMSG_COMPRESSED_MOVES = 0x3DEA,
    
    	SMSG_CLIENT_CONTROL_UPDATE = 0x7FE9,
    
    	SMSG_FLIGHT_SPLINE_SYNC = 0xFF6A,
    
    	SMSG_AURA_UPDATE_ALL = 0x99E6,
    
    	SMSG_AURA_UPDATE = 0xDF68,
    
    	SMSG_DISMOUNT = 0x4967,
    
    	SMSG_LOOT_LIST = 0x3F67,
    
    	SMSG_MIRRORIMAGE_DATA = 0xA9E4,
    
    	SMSG_FORCE_DISPLAY_UPDATE = 0x2D64,
    
    	SMSG_CANCEL_AUTO_REPEAT = 0xAFE9,
    
    	SMSG_HEALTH_UPDATE = 0x89E6,
    
    	SMSG_POWER_UPDATE = 0xDDEC,
    
    	SMSG_HIGHEST_THREAT_UPDATE = 0x69E4,
    
    	SMSG_THREAT_UPDATE = 0x6FE7,
    
    	SMSG_THREAT_REMOVE = 0x4964,
    
    	SMSG_THREAT_CLEAR = 0x5FE4,
    
    	SMSG_PRE_RESURRECT = 0x5B61,
    
    	SMSG_UNKNOWN_1191 = 0xCDEA,
    
    	SMSG_UNKNOWN_1229 = 0xEFE8,
    
    	SMSG_UNKNOWN_1240 = 0x8BEB,
    
    	SMSG_PERIODICAURALOG = 0x6BE4,
    
    	SMSG_ENCHANTMENTLOG = 0x1D6D,
    
    	SMSG_PARTYKILLLOG = 0xFDE7,
    
    	SMSG_PROCRESIST = 0x0DE4,
    
    	SMSG_DISPEL_FAILED = 0x0960,
    
    	SMSG_DESTRUCTIBLE_BUILDING_DAMAGE = 0x5B6B,
    
    	SMSG_ATTACKSTART = 0x0D6D,
    
    	SMSG_ATTACKSTOP = 0x8F64,
    
    	SMSG_ATTACKERSTATEUPDATE = 0x99E8,
    
    	SMSG_ATTACKSWING_NOTINRANGE = 0x1BEB,
    
    	SMSG_ATTACKSWING_BADFACING = 0x9BEA,
    
    	SMSG_ATTACKSWING_DEADTARGET = 0x096D,
    
    	SMSG_ATTACKSWING_CANT_ATTACK = 0x6965,
    
    	SMSG_ENVIRONMENTALDAMAGELOG = 0xCF6F,
    
    	SMSG_CLEAR_TARGET = 0x4BE4,
    
    	SMSG_STANDSTATE_CHANGE_FAILURE_OBSOLETE = 0x1F61,
    
    	SMSG_WHO = 0xDD62,
    
    	SMSG_WHOIS = 0x0F6D,
    
    	SMSG_RWHOIS = 0xDBE6,
    
    	SMSG_CONTACT_LIST = 0xB9E2,
    
    	SMSG_FRIEND_STATUS = 0xEBEB,
    
    	SMSG_ACCOUNT_DATA_TIMES = 0xAD6F,
    
    	SMSG_UPDATE_ACCOUNT_DATA = 0x0FE7,
    
    	SMSG_UPDATE_ACCOUNT_DATA_COMPLETE = 0x6FE3,
    
    	SMSG_CHECK_FOR_BOTS = 0xF9ED,
    
    	SMSG_CREATURE_QUERY_RESPONSE = 0x3F6B,
    
    	SMSG_GAMEOBJECT_QUERY_RESPONSE = 0x6FEF,
    
    	SMSG_ITEM_NAME_QUERY_RESPONSE = 0x1F6D,
    
    	SMSG_ITEM_QUERY_SINGLE_RESPONSE = 0x8FE5,
    
    	SMSG_ITEM_QUERY_MULTIPLE_RESPONSE = 0xEF64,
    
    	SMSG_NPC_TEXT_UPDATE = 0xCB64,
    
    	SMSG_NAME_QUERY_RESPONSE = 0x4D62,
    
    	SMSG_GUILD_QUERY_RESPONSE = 0xBBE0,
    
    	SMSG_QUEST_QUERY_RESPONSE = 0x1BEC,
    
    	SMSG_PAGE_TEXT_QUERY_RESPONSE = 0x9FEF,
    
    	SMSG_PET_NAME_QUERY_RESPONSE = 0xAB68,
    
    	SMSG_PETITION_QUERY_RESPONSE = 0x0F61,
    
    	SMSG_ITEM_TEXT_QUERY_RESPONSE = 0x2FE2,
    
    	SMSG_INVALIDATE_PLAYER = 0xA9E6,
    
    	SMSG_ARENA_TEAM_QUERY_RESPONSE = 0xA9E5,
    
    	SMSG_CHEAT_DUMP_ITEMS_DEBUG_ONLY_RESPONSE = 0xD96B,
    
    	SMSG_INVALIDATE_DANCE = 0x9B66,
    
    	SMSG_DANCE_QUERY_RESPONSE = 0xB966,
    
    	SMSG_CHANNEL_NOTIFY = 0xC968,
    
    	SMSG_CHANNEL_LIST = 0x2F6A,
    
    	SMSG_MESSAGECHAT = 0xAD60,
    
    	SMSG_TEXT_EMOTE = 0xBD6E,
    
    	SMSG_ZONE_UNDER_ATTACK = 0xCFE9,
    
    	SMSG_DEFENSE_MESSAGE = 0xDDE8,
    
    	SMSG_SERVER_MESSAGE = 0xEBE0,
    
    	SMSG_RAID_INSTANCE_INFO = 0x8F6F,
    
    	SMSG_RAID_INSTANCE_MESSAGE = 0x89E7,
    
    	SMSG_INSTANCE_RESET = 0x5BE3,
    
    	SMSG_INSTANCE_RESET_FAILED = 0x3BEC,
    
    	SMSG_UPDATE_LAST_INSTANCE = 0xDF6F,
    
    	SMSG_UPDATE_INSTANCE_OWNERSHIP = 0x3B6D,
    
    	SMSG_EXPECTED_SPAM_RECORDS = 0x8BE3,
    
    	SMSG_TITLE_EARNED = 0xDF61,
    
    	SMSG_RESET_FAILED_NOTIFY = 0x39E3,
    
    	SMSG_GM_MESSAGECHAT = 0xA9EC,
    
    	SMSG_LOG_XPGAIN = 0x5DE0,
    
    	SMSG_DURABILITY_DAMAGE_DEATH = 0xCBE7,
    
    	SMSG_CHANNEL_MEMBER_COUNT = 0xBDE1,
    
    	SMSG_COMSAT_RECONNECT_TRY = 0xBB67,
    
    	SMSG_COMSAT_DISCONNECT = 0x396B,
    
    	SMSG_COMSAT_CONNECT_FAIL = 0x3FE8,
    
    	SMSG_VOICE_CHAT_STATUS = 0x6DE3,
    
    	SMSG_USERLIST_ADD = 0xEF62,
    
    	SMSG_USERLIST_REMOVE = 0xC967,
    
    	SMSG_USERLIST_UPDATE = 0x2D6F,
    
    	SMSG_VOICESESSION_FULL = 0x2DEE,
    
    	SMSG_SERVER_FIRST_ACHIEVEMENT = 0xF9E4,
    
    	SMSG_PVP_CREDIT = 0xEF6D,
    
    	MSG_CORPSE_QUERY = 0xEF6F,
    
    	SMSG_CORPSE_RECLAIM_DELAY = 0x7F60,
    
    	SMSG_GM_PLAYER_INFO = 0x2D6C,
    
    	CMSG_GM_REQUEST_PLAYER_INFO = 0x5D68,
    
    	SMSG_PLAY_MUSIC = 0x0B6B,
    
    	SMSG_PLAY_SOUND = 0x9D6F,
    
    	SMSG_PLAY_OBJECT_SOUND = 0x9B6B,
    
    	SMSG_TRIGGER_MOVIE = 0x9DE5,
    
    	SMSG_AREA_TRIGGER_MESSAGE = 0x7B65,
    
    	SMSG_INIT_WORLD_STATES = 0x1962,
    
    	SMSG_UPDATE_WORLD_STATE = 0x5BEC,
    
    	SMSG_AREA_SPIRIT_HEALER_TIME = 0xA967,
    
    	SMSG_INVALID_PROMOTION_CODE = 0x2DE5,
    
    	SMSG_WEATHER = 0x1F66,
    
    	SMSG_OVERRIDE_LIGHT = 0x99EA,
    
    	SMSG_INSTANCE_DIFFICULTY = 0xFBEC,
    
    	MSG_SET_DUNGEON_DIFFICULTY = 0xA9E3,
    
    	MSG_SET_RAID_DIFFICULTY = 0x4D6A,
    
    	SMSG_UPDATE_COMBO_POINTS = 0x9B63,
    
    	SMSG_SET_PHASE_SHIFT = 0x2B61,
    
    	SMSG_TOTEM_CREATED = 0x6B6F,
    
    	SMSG_START_MIRROR_TIMER = 0x8DEB,
    
    	SMSG_PAUSE_MIRROR_TIMER = 0x4DE3,
    
    	SMSG_STOP_MIRROR_TIMER = 0x9960,
    
    	SMSG_PROPOSE_LEVEL_GRANT = 0xD969,
    
    	SMSG_REFER_A_FRIEND_FAILURE = 0xCBEA,
    
    	SMSG_REFER_A_FRIEND_EXPIRED = 0xABE9,
    
    	SMSG_BREAK_TARGET = 0x2F61,
    
    	CMSG_CORPSE_MAP_POSITION_QUERY_RESPONSE = 0x4F6B,
    
    	SMSG_PUREMOUNT_CANCELLED_OBSOLETE = 0x3FE3,
    
    	SMSG_WORLD_STATE_UI_TIMER_UPDATE = 0x3D69,
    
    	SMSG_INSTANCE_SAVE_CREATED = 0x49EC,
    
    	SMSG_POWERGAINLOG_OBSOLETE = 0x8FE9,
    
    	SMSG_ENABLE_BARBER_SHOP = 0x2B60,
    
    	SMSG_BARBER_SHOP_RESULT = 0x19E1,
    
    	MSG_INSPECT_HONOR_STATS = 0x39EE,
    
    	MSG_INSPECT_ARENA_TEAMS = 0x5BED,
    
    	SMSG_PET_SPELLS = 0x1F6A,
    
    	SMSG_PET_LEARNED_SPELL = 0x396A,
    
    	SMSG_PET_REMOVED_SPELL = 0x2DE8,
    
    	SMSG_PET_MODE = 0xE9EF,
    
    	SMSG_PET_ACTION_FEEDBACK = 0x3FEF,
    
    	SMSG_PET_BROKEN = 0x2F6F,
    
    	SMSG_PET_RENAMEABLE = 0xEF69,
    
    	SMSG_PET_UPDATE_COMBO_POINTS = 0x79E0,
    
    	SMSG_PET_GUIDS = 0x8967,
    
    	MSG_RAID_TARGET_UPDATE = 0xEF6E,
    
    	MSG_RAID_READY_CHECK = 0x1BE9,
    
    	MSG_RAID_READY_CHECK_CONFIRM = 0x2DE3,
    
    	MSG_RAID_READY_CHECK_FINISHED = 0x0D64,
    
    	SMSG_RAID_READY_CHECK_ERROR = 0x0F68,
    
    	MSG_NOTIFY_PARTY_SQUELCH = 0x6BEB,
    
    	SMSG_ECHO_PARTY_SQUELCH = 0x8FEE,
    
    	SMSG_BATTLEFIELD_LIST = 0xFB61,
    
    	SMSG_BATTLEFIELD_STATUS = 0xDD65,
    
    	MSG_PVP_LOG_DATA = 0x4966,
    
    	SMSG_GROUP_JOINED_BATTLEGROUND = 0x4DE2,
    
    	MSG_BATTLEGROUND_PLAYER_POSITIONS = 0xFDE3,
    
    	SMSG_BATTLEGROUND_PLAYER_JOINED = 0xA964,
    
    	SMSG_BATTLEGROUND_PLAYER_LEFT = 0xFFE3,
    
    	SMSG_UNKNOWN_1223 = 0x19E4,
    
    	SMSG_BATTLEFIELD_PORT_DENIED = 0xB9E0,
    
    	SMSG_UNKNOWN_1246 = 0x8BE2,
    
    	SMSG_UNKNOWN_1248 = 0x5FE1,
    
    	SMSG_UNKNOWN_1252 = 0x1F68,
    
    	SMSG_UNKNOWN_1253 = 0x49EB,
    
    	SMSG_UNKNOWN_1254 = 0x4D66,
    
    	SMSG_UNKNOWN_1249 = 0xCF66,
    
    	SMSG_UNKNOWN_1256 = 0x8DEF,
    
    	SMSG_OFFER_PETITION_ERROR = 0x8B66,
    
    	SMSG_GOSSIP_MESSAGE = 0xCB60,
    
    	SMSG_GOSSIP_COMPLETE = 0xBFEE,
    
    	SMSG_GOSSIP_POI = 0x3BEB,
    
    	SMSG_GUILD_ROSTER = 0xBFE9,
    
    	MSG_GUILD_PERMISSIONS = 0xCFEB,
    
    	MSG_GUILD_EVENT_LOG_QUERY = 0x5D66,
    
    	SMSG_GUILD_BANK_LIST = 0xEDE2,
    
    	MSG_GUILD_BANK_LOG_QUERY = 0x7B63,
    
    	MSG_GUILD_BANK_MONEY_WITHDRAWN = 0x0F63,
    
    	MSG_QUERY_GUILD_BANK_TEXT = 0x3D66,
    
    	SMSG_QUERY_TIME_RESPONSE = 0x29ED,
    
    	CMSG_ACCEPT_LFG_MATCH = 0x1B6E,
    
    	SMSG_LFG_TIMEDOUT = 0x59EC,
    
    	SMSG_LFG_OTHER_TIMEDOUT = 0xD96C,
    
    	SMSG_LFG_AUTOJOIN_FAILED = 0xBFE4,
    
    	CMSG_SET_LOOKING_FOR_MORE = 0xFF6F,
    
    	SMSG_LFG_DISABLED = 0x2B6E,
    
    	CMSG_DECLINE_LFG_MATCH = 0xBFED,
    
    	CMSG_CLEAR_LOOKING_FOR_GROUP = 0x3D6B,
    
    	SMSG_MEETINGSTONE_JOINFAILED = 0x4D60,
    
    	CMSG_CLEAR_LOOKING_FOR_MORE = 0x2DEF,
    
    	SMSG_LFG_UPDATE_LFM = 0x6FE1,
    
    	SMSG_LFG_UPDATE_QUEUED = 0xC969,
    
    	SMSG_LFG_PENDING_MATCH_DONE = 0xB96A,
    
    	MSG_LOOKING_FOR_GROUP = 0x09E5,
    
    	CMSG_SET_LOOKING_FOR_GROUP = 0xAB63,
    
    	SMSG_MEETINGSTONE_LEAVE = 0x2FEB,
    
    	SMSG_ARENA_TEAM_ROSTER = 0xDB63,
    
    	SMSG_ARENA_TEAM_STATS = 0x09EB,
    
    	SMSG_CALENDAR_SEND_CALENDAR = 0x4B62,
    
    	SMSG_CALENDAR_SEND_EVENT = 0x8964,
    
    	SMSG_CALENDAR_EVENT_INVITE = 0xCD6A,
    
    	SMSG_CALENDAR_EVENT_INVITE_REMOVED = 0xAB62,
    
    	SMSG_CALENDAR_EVENT_STATUS = 0xABE5,
    
    	MSG_MOVE_ABANDON_TRANSPORT = 0xCF6E,
    
    	SMSG_CALENDAR_FILTER_GUILD = 0x1F65,
    
    	SMSG_CALENDAR_ARENA_TEAM = 0x49E5,
    
    	SMSG_CALENDAR_RAID_LOCKOUT_ADDED = 0x99E4,
    
    	SMSG_CALENDAR_RAID_LOCKOUT_REMOVED = 0x5967,
    
    	SMSG_GROUP_SWAP_FAILED = 0x89E1,
    
    	SMSG_CALENDAR_EVENT_INVITE_ALERT = 0x0DE9,
    
    	SMSG_CALENDAR_EVENT_INVITE_REMOVED_ALERT = 0x0F67,
    
    	SMSG_CALENDAR_EVENT_INVITE_STATUS_ALERT = 0x19E0,
    
    	CMSG_MOVE_ABANDON_TRANSPORT_ACK = 0x6962,
    
    	SMSG_CALENDAR_EVENT_REMOVED_ALERT = 0x2DEC,
    
    	SMSG_CALENDAR_EVENT_UPDATED_ALERT = 0xAFED,
    
    	SMSG_CALENDAR_EVENT_MODERATOR_STATUS_ALERT = 0x29EA,
    
    	SMSG_CALENDAR_SEND_NUM_PENDING = 0xD9E2,
    
    	SMSG_UNKNOWN_1211 = 0xFFEA,
    
    	SMSG_PLAY_DANCE = 0xFF63,
    
    	SMSG_STOP_DANCE = 0xED62,
    
    	SMSG_NOTIFY_DANCE = 0x69EB,
    
    	SMSG_LEARNED_DANCE_MOVES = 0xBD61,
    
    	SMSG_EQUIPMENT_SET_LIST = 0xEFEA,
    
    	SMSG_EQUIPMENT_SET_SAVED = 0x1FE1,
    
    	SMSG_EQUIPMENT_SET_USE_RESULT = 0x8D60,
    
    	SMSG_INITIALIZE_FACTIONS = 0x6F66,
    
    	SMSG_SET_FACTION_ATWAR = 0x4D6F,
    
    	SMSG_SET_FACTION_VISIBLE = 0xAD68,
    
    	SMSG_SET_FACTION_STANDING = 0x19E5,
    
    	SMSG_SET_FORCED_REACTIONS = 0xBFE0,
    
    	SMSG_SEND_MAIL_RESULT = 0x7F66,
    
    	SMSG_MAIL_LIST_RESULT = 0x8DE1,
    
    	MSG_QUERY_NEXT_MAIL_TIME = 0xDDE9,
    
    	SMSG_RECEIVED_MAIL = 0x696C,
    
    	SMSG_MEETINGSTONE_COMPLETE = 0x2B65,
    
    	SMSG_COMMENTATOR_PLAYER_INFO = 0xFDEE,
    
    	SMSG_COMMENTATOR_MAP_INFO = 0xCB65,
    
    	SMSG_COMMENTATOR_STATE_CHANGED = 0x196E,
    
    	SMSG_DUEL_REQUESTED = 0x4BE1,
    
    	SMSG_DUEL_OUTOFBOUNDS = 0xEDEB,
    
    	SMSG_DUEL_INBOUNDS = 0x6F6C,
    
    	SMSG_DUEL_COUNTDOWN = 0x9FE2,
    
    	SMSG_DUEL_COMPLETE = 0x3B61,
    
    	SMSG_DUEL_WINNER = 0xAF66,
    
    	MSG_LIST_STABLED_PETS = 0x6FE8,
    
    	SMSG_STABLE_RESULT = 0xCDE5,
    
    	MSG_AUCTION_HELLO = 0x396C,
    
    	SMSG_AUCTION_COMMAND_RESULT = 0xEDE4,
    
    	SMSG_AUCTION_LIST_RESULT = 0x496B,
    
    	SMSG_AUCTION_OWNER_LIST_RESULT = 0x5D6A,
    
    	SMSG_AUCTION_BIDDER_LIST_RESULT = 0x5B6C,
    
    	SMSG_AUCTION_BIDDER_NOTIFICATION = 0x8B67,
    
    	SMSG_AUCTION_OWNER_NOTIFICATION = 0x296A,
    
    	SMSG_AUCTION_REMOVED_NOTIFICATION = 0xDDEB,
    
    	SMSG_AUCTION_LIST_PENDING_SALES = 0x7DE8,
    
    	SMSG_GAMEOBJECT_SPAWN_ANIM_OBSOLETE = 0x6F68,
    
    	SMSG_ACHIEVEMENT_EARNED = 0x0DE5,
    
    	SMSG_CRITERIA_UPDATE = 0xB961,
    
    	SMSG_RESPOND_INSPECT_ACHIEVEMENTS = 0x1FE4,
    
    	SMSG_ALL_ACHIEVEMENT_DATA = 0xDDED,
    
    	SMSG_CRITERIA_DELETED = 0x5B66,
    
    	SMSG_ACHIEVEMENT_DELETED = 0x7FE2,
    
    	SMSG_MOTD = 0x0968,
    
    	SMSG_GMTICKET_CREATE = 0xBD64,
    
    	SMSG_GMTICKET_UPDATETEXT = 0xD96F,
    
    	SMSG_GMTICKET_GETTICKET = 0x9F69,
    
    	SMSG_GMTICKET_DELETETICKET = 0xDD63,
    
    	SMSG_UNKNOWN_1262 = 0x7DEA,
    
    	SMSG_UNKNOWN_1263 = 0x1DE1,
    
    	SMSG_UNKNOWN_1265 = 0x7B64,
    
    	SMSG_GM_TICKET_STATUS_UPDATE = 0x196A,
    
    	SMSG_MINIGAME_SETUP = 0x7DEB,
    
    	SMSG_MINIGAME_STATE = 0xBF61,
    
    	SMSG_CHAR_RENAME = 0x19E8,
    
    	SMSG_SET_PLAYER_DECLINED_NAMES_RESULT = 0xBBEC,
    
    	SMSG_CHAR_CUSTOMIZE = 0x8BE6,
    
    	SMSG_REALM_SPLIT = 0xFDE2,
    
    	SMSG_KICK_REASON2 = 0x9FE0,
    
    	SMSG_CHAR_FACTION_CHANGE = 0x8D69,
    
    	SMSG_AUTH_CHALLENGE = 0x9B60,
    
    	SMSG_AUTH_RESPONSE = 0x0961,
    
    	SMSG_ADDON_INFO = 0x5961,
    
    	SMSG_CHAR_ENUM = 0xC96B,
    
    	SMSG_CHAR_CREATE = 0xAF67,
    
    	SMSG_CHARACTER_LOGIN_FAILED = 0xD9E1,
    
    	SMSG_LOGOUT_COMPLETE = 0x4BEF
    }
    Related addresses:

    ClientServices_SetMessageHandler 0x004B3B80
    NetClient_SetMessageHandler 0x004B3BE6
    Last edited by Robske; 05-18-2010 at 05:49 PM.
    "Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live." - Martin Golding
    "I cried a little earlier when I had to poop" - Sku

  15. #15
    RomanRom2's Avatar Private
    Reputation
    5
    Join Date
    May 2010
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    no one of opcodes doesnt work

Page 1 of 11 12345 ... LastLast

Similar Threads

  1. How to change models and textures client side only
    By Matt in forum World of Warcraft Guides
    Replies: 9
    Last Post: 11-29-2006, 12:35 AM
  2. Change flight path easily
    By Matt in forum World of Warcraft Exploits
    Replies: 8
    Last Post: 07-27-2006, 04:59 AM
  3. Rep Power change
    By Shanaar in forum Suggestions
    Replies: 25
    Last Post: 05-17-2006, 12:42 PM
  4. Name Change Exploit
    By Matt in forum World of Warcraft Exploits
    Replies: 3
    Last Post: 05-16-2006, 12:50 PM
  5. MMOwned's Server Move + Forum Change
    By Matt in forum OC News
    Replies: 0
    Last Post: 03-25-2006, 04:52 AM
All times are GMT -5. The time now is 03:41 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search