Advertisement
Guest User

Untitled

a guest
Mar 25th, 2015
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 189.95 KB | None | 0 0
  1.     /// <summary>
  2.     /// Events which are fired within the game process.
  3.     /// </summary>
  4.     public enum Event : uint {
  5.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_PET" /></summary>
  6.         UNIT_PET = 1,
  7.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_TARGET" /></summary>
  8.         UNIT_TARGET = 2,
  9.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_HEALTH" /></summary>
  10.         UNIT_HEALTH = 3,
  11.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_MAXHEALTH" /></summary>
  12.         UNIT_MAXHEALTH = 4,
  13.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_DISPLAYPOWER" /></summary>
  14.         UNIT_DISPLAYPOWER = 5,
  15.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_FACTION" /></summary>
  16.         UNIT_FACTION = 6,
  17.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_LEVEL" /></summary>
  18.         UNIT_LEVEL = 7,
  19.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_DAMAGE" /></summary>
  20.         UNIT_DAMAGE = 8,
  21.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_ATTACK_SPEED" /></summary>
  22.         UNIT_ATTACK_SPEED = 9,
  23.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_RANGEDDAMAGE" /></summary>
  24.         UNIT_RANGEDDAMAGE = 10,
  25.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_SPELL_HASTE" /></summary>
  26.         UNIT_SPELL_HASTE = 11,
  27.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_FLAGS" /></summary>
  28.         UNIT_FLAGS = 12,
  29.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_RESISTANCES" /></summary>
  30.         UNIT_RESISTANCES = 13,
  31.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_ATTACK_POWER" /></summary>
  32.         UNIT_ATTACK_POWER = 14,
  33.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_PET_EXPERIENCE" /></summary>
  34.         UNIT_PET_EXPERIENCE = 15,
  35.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_RANGED_ATTACK_POWER" /></summary>
  36.         UNIT_RANGED_ATTACK_POWER = 16,
  37.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_MANA" /></summary>
  38.         UNIT_MANA = 17,
  39.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_STATS" /></summary>
  40.         UNIT_STATS = 18,
  41.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_AURA" /></summary>
  42.         UNIT_AURA = 19,
  43.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_COMBAT" /></summary>
  44.         UNIT_COMBAT = 20,
  45.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_NAME_UPDATE" /></summary>
  46.         UNIT_NAME_UPDATE = 21,
  47.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_PORTRAIT_UPDATE" /></summary>
  48.         UNIT_PORTRAIT_UPDATE = 22,
  49.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_MODEL_CHANGED" /></summary>
  50.         UNIT_MODEL_CHANGED = 23,
  51.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_INVENTORY_CHANGED" /></summary>
  52.         UNIT_INVENTORY_CHANGED = 24,
  53.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_CLASSIFICATION_CHANGED" /></summary>
  54.         UNIT_CLASSIFICATION_CHANGED = 25,
  55.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_COMBO_POINTS" /></summary>
  56.         UNIT_COMBO_POINTS = 26,
  57.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_TARGETABLE_CHANGED" /></summary>
  58.         UNIT_TARGETABLE_CHANGED = 27,
  59.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ITEM_LOCK_CHANGED" /></summary>
  60.         ITEM_LOCK_CHANGED = 28,
  61.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_XP_UPDATE" /></summary>
  62.         PLAYER_XP_UPDATE = 29,
  63.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_REGEN_DISABLED" /></summary>
  64.         PLAYER_REGEN_DISABLED = 30,
  65.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_REGEN_ENABLED" /></summary>
  66.         PLAYER_REGEN_ENABLED = 31,
  67.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_AURAS_CHANGED" /></summary>
  68.         PLAYER_AURAS_CHANGED = 32,
  69.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_ENTER_COMBAT" /></summary>
  70.         PLAYER_ENTER_COMBAT = 33,
  71.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_LEAVE_COMBAT" /></summary>
  72.         PLAYER_LEAVE_COMBAT = 34,
  73.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_TARGET_CHANGED" /></summary>
  74.         PLAYER_TARGET_CHANGED = 35,
  75.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_FOCUS_CHANGED" /></summary>
  76.         PLAYER_FOCUS_CHANGED = 36,
  77.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_CONTROL_LOST" /></summary>
  78.         PLAYER_CONTROL_LOST = 37,
  79.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_CONTROL_GAINED" /></summary>
  80.         PLAYER_CONTROL_GAINED = 38,
  81.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_FARSIGHT_FOCUS_CHANGED" /></summary>
  82.         PLAYER_FARSIGHT_FOCUS_CHANGED = 39,
  83.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_LEVEL_UP" /></summary>
  84.         PLAYER_LEVEL_UP = 40,
  85.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_MONEY" /></summary>
  86.         PLAYER_MONEY = 41,
  87.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_DAMAGE_DONE_MODS" /></summary>
  88.         PLAYER_DAMAGE_DONE_MODS = 42,
  89.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_TOTEM_UPDATE" /></summary>
  90.         PLAYER_TOTEM_UPDATE = 43,
  91.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_AVG_ITEM_LEVEL_UPDATE" /></summary>
  92.         PLAYER_AVG_ITEM_LEVEL_UPDATE = 44,
  93.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ZONE_CHANGED" /></summary>
  94.         ZONE_CHANGED = 45,
  95.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ZONE_CHANGED_INDOORS" /></summary>
  96.         ZONE_CHANGED_INDOORS = 46,
  97.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ZONE_CHANGED_NEW_AREA" /></summary>
  98.         ZONE_CHANGED_NEW_AREA = 47,
  99.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MINIMAP_UPDATE_ZOOM" /></summary>
  100.         MINIMAP_UPDATE_ZOOM = 48,
  101.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MINIMAP_UPDATE_TRACKING" /></summary>
  102.         MINIMAP_UPDATE_TRACKING = 49,
  103.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SCREENSHOT_SUCCEEDED" /></summary>
  104.         SCREENSHOT_SUCCEEDED = 50,
  105.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SCREENSHOT_FAILED" /></summary>
  106.         SCREENSHOT_FAILED = 51,
  107.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ACTIONBAR_SHOWGRID" /></summary>
  108.         ACTIONBAR_SHOWGRID = 52,
  109.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ACTIONBAR_HIDEGRID" /></summary>
  110.         ACTIONBAR_HIDEGRID = 53,
  111.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ACTIONBAR_PAGE_CHANGED" /></summary>
  112.         ACTIONBAR_PAGE_CHANGED = 54,
  113.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ACTIONBAR_SLOT_CHANGED" /></summary>
  114.         ACTIONBAR_SLOT_CHANGED = 55,
  115.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ACTIONBAR_UPDATE_STATE" /></summary>
  116.         ACTIONBAR_UPDATE_STATE = 56,
  117.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ACTIONBAR_UPDATE_USABLE" /></summary>
  118.         ACTIONBAR_UPDATE_USABLE = 57,
  119.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ACTIONBAR_UPDATE_COOLDOWN" /></summary>
  120.         ACTIONBAR_UPDATE_COOLDOWN = 58,
  121.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ACTIONBAR_SHOW_BOTTOMLEFT" /></summary>
  122.         ACTIONBAR_SHOW_BOTTOMLEFT = 59,
  123.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_SUMMONPETS_ACTION" /></summary>
  124.         UPDATE_SUMMONPETS_ACTION = 60,
  125.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_BONUS_ACTIONBAR" /></summary>
  126.         UPDATE_BONUS_ACTIONBAR = 61,
  127.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_OVERRIDE_ACTIONBAR" /></summary>
  128.         UPDATE_OVERRIDE_ACTIONBAR = 62,
  129.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_EXTRA_ACTIONBAR" /></summary>
  130.         UPDATE_EXTRA_ACTIONBAR = 63,
  131.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_VEHICLE_ACTIONBAR" /></summary>
  132.         UPDATE_VEHICLE_ACTIONBAR = 64,
  133.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_POSSESS_BAR" /></summary>
  134.         UPDATE_POSSESS_BAR = 65,
  135.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PARTY_MEMBERS_CHANGED" /></summary>
  136.         PARTY_MEMBERS_CHANGED = 66,
  137.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PARTY_LEADER_CHANGED" /></summary>
  138.         PARTY_LEADER_CHANGED = 67,
  139.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PARTY_MEMBER_ENABLE" /></summary>
  140.         PARTY_MEMBER_ENABLE = 68,
  141.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PARTY_MEMBER_DISABLE" /></summary>
  142.         PARTY_MEMBER_DISABLE = 69,
  143.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PARTY_LOOT_METHOD_CHANGED" /></summary>
  144.         PARTY_LOOT_METHOD_CHANGED = 70,
  145.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PARTY_REFER_A_FRIEND_UPDATED" /></summary>
  146.         PARTY_REFER_A_FRIEND_UPDATED = 71,
  147.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SYSMSG" /></summary>
  148.         SYSMSG = 72,
  149.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UI_ERROR_MESSAGE" /></summary>
  150.         UI_ERROR_MESSAGE = 73,
  151.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UI_INFO_MESSAGE" /></summary>
  152.         UI_INFO_MESSAGE = 74,
  153.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_CHAT_COLOR" /></summary>
  154.         UPDATE_CHAT_COLOR = 75,
  155.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_ADDON" /></summary>
  156.         CHAT_MSG_ADDON = 76,
  157.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_SYSTEM" /></summary>
  158.         CHAT_MSG_SYSTEM = 77,
  159.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_SAY" /></summary>
  160.         CHAT_MSG_SAY = 78,
  161.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_PARTY" /></summary>
  162.         CHAT_MSG_PARTY = 79,
  163.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_RAID" /></summary>
  164.         CHAT_MSG_RAID = 80,
  165.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_GUILD" /></summary>
  166.         CHAT_MSG_GUILD = 81,
  167.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_OFFICER" /></summary>
  168.         CHAT_MSG_OFFICER = 82,
  169.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_YELL" /></summary>
  170.         CHAT_MSG_YELL = 83,
  171.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_WHISPER" /></summary>
  172.         CHAT_MSG_WHISPER = 84,
  173.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_WHISPER_INFORM" /></summary>
  174.         CHAT_MSG_WHISPER_INFORM = 85,
  175.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_EMOTE" /></summary>
  176.         CHAT_MSG_EMOTE = 86,
  177.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_TEXT_EMOTE" /></summary>
  178.         CHAT_MSG_TEXT_EMOTE = 87,
  179.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_MONSTER_SAY" /></summary>
  180.         CHAT_MSG_MONSTER_SAY = 88,
  181.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_MONSTER_PARTY" /></summary>
  182.         CHAT_MSG_MONSTER_PARTY = 89,
  183.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_MONSTER_YELL" /></summary>
  184.         CHAT_MSG_MONSTER_YELL = 90,
  185.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_MONSTER_WHISPER" /></summary>
  186.         CHAT_MSG_MONSTER_WHISPER = 91,
  187.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_MONSTER_EMOTE" /></summary>
  188.         CHAT_MSG_MONSTER_EMOTE = 92,
  189.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_CHANNEL" /></summary>
  190.         CHAT_MSG_CHANNEL = 93,
  191.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_CHANNEL_JOIN" /></summary>
  192.         CHAT_MSG_CHANNEL_JOIN = 94,
  193.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_CHANNEL_LEAVE" /></summary>
  194.         CHAT_MSG_CHANNEL_LEAVE = 95,
  195.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_CHANNEL_LIST" /></summary>
  196.         CHAT_MSG_CHANNEL_LIST = 96,
  197.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_CHANNEL_NOTICE" /></summary>
  198.         CHAT_MSG_CHANNEL_NOTICE = 97,
  199.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_CHANNEL_NOTICE_USER" /></summary>
  200.         CHAT_MSG_CHANNEL_NOTICE_USER = 98,
  201.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_AFK" /></summary>
  202.         CHAT_MSG_AFK = 99,
  203.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_DND" /></summary>
  204.         CHAT_MSG_DND = 100,
  205.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_IGNORED" /></summary>
  206.         CHAT_MSG_IGNORED = 101,
  207.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_SKILL" /></summary>
  208.         CHAT_MSG_SKILL = 102,
  209.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_LOOT" /></summary>
  210.         CHAT_MSG_LOOT = 103,
  211.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_CURRENCY" /></summary>
  212.         CHAT_MSG_CURRENCY = 104,
  213.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_MONEY" /></summary>
  214.         CHAT_MSG_MONEY = 105,
  215.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_OPENING" /></summary>
  216.         CHAT_MSG_OPENING = 106,
  217.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_TRADESKILLS" /></summary>
  218.         CHAT_MSG_TRADESKILLS = 107,
  219.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_PET_INFO" /></summary>
  220.         CHAT_MSG_PET_INFO = 108,
  221.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_COMBAT_MISC_INFO" /></summary>
  222.         CHAT_MSG_COMBAT_MISC_INFO = 109,
  223.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_COMBAT_XP_GAIN" /></summary>
  224.         CHAT_MSG_COMBAT_XP_GAIN = 110,
  225.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_COMBAT_HONOR_GAIN" /></summary>
  226.         CHAT_MSG_COMBAT_HONOR_GAIN = 111,
  227.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_COMBAT_FACTION_CHANGE" /></summary>
  228.         CHAT_MSG_COMBAT_FACTION_CHANGE = 112,
  229.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_BG_SYSTEM_NEUTRAL" /></summary>
  230.         CHAT_MSG_BG_SYSTEM_NEUTRAL = 113,
  231.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_BG_SYSTEM_ALLIANCE" /></summary>
  232.         CHAT_MSG_BG_SYSTEM_ALLIANCE = 114,
  233.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_BG_SYSTEM_HORDE" /></summary>
  234.         CHAT_MSG_BG_SYSTEM_HORDE = 115,
  235.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_RAID_LEADER" /></summary>
  236.         CHAT_MSG_RAID_LEADER = 116,
  237.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_RAID_WARNING" /></summary>
  238.         CHAT_MSG_RAID_WARNING = 117,
  239.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_RAID_BOSS_WHISPER" /></summary>
  240.         CHAT_MSG_RAID_BOSS_WHISPER = 118,
  241.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_RAID_BOSS_EMOTE" /></summary>
  242.         CHAT_MSG_RAID_BOSS_EMOTE = 119,
  243.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_FILTERED" /></summary>
  244.         CHAT_MSG_FILTERED = 120,
  245.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_RESTRICTED" /></summary>
  246.         CHAT_MSG_RESTRICTED = 121,
  247.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_ACHIEVEMENT" /></summary>
  248.         CHAT_MSG_ACHIEVEMENT = 123,
  249.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_GUILD_ACHIEVEMENT" /></summary>
  250.         CHAT_MSG_GUILD_ACHIEVEMENT = 124,
  251.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_PET_BATTLE_COMBAT_LOG" /></summary>
  252.         CHAT_MSG_PET_BATTLE_COMBAT_LOG = 125,
  253.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_PET_BATTLE_INFO" /></summary>
  254.         CHAT_MSG_PET_BATTLE_INFO = 126,
  255.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_INSTANCE_CHAT" /></summary>
  256.         CHAT_MSG_INSTANCE_CHAT = 127,
  257.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_INSTANCE_CHAT_LEADER" /></summary>
  258.         CHAT_MSG_INSTANCE_CHAT_LEADER = 128,
  259.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/RAID_BOSS_WHISPER" /></summary>
  260.         RAID_BOSS_WHISPER = 129,
  261.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/RAID_BOSS_EMOTE" /></summary>
  262.         RAID_BOSS_EMOTE = 130,
  263.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/QUEST_BOSS_EMOTE" /></summary>
  264.         QUEST_BOSS_EMOTE = 131,
  265.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LANGUAGE_LIST_CHANGED" /></summary>
  266.         LANGUAGE_LIST_CHANGED = 132,
  267.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TIME_PLAYED_MSG" /></summary>
  268.         TIME_PLAYED_MSG = 133,
  269.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SPELLS_CHANGED" /></summary>
  270.         SPELLS_CHANGED = 134,
  271.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CURRENT_SPELL_CAST_CHANGED" /></summary>
  272.         CURRENT_SPELL_CAST_CHANGED = 135,
  273.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SPELL_UPDATE_COOLDOWN" /></summary>
  274.         SPELL_UPDATE_COOLDOWN = 136,
  275.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SPELL_UPDATE_USABLE" /></summary>
  276.         SPELL_UPDATE_USABLE = 137,
  277.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SPELL_UPDATE_CHARGES" /></summary>
  278.         SPELL_UPDATE_CHARGES = 138,
  279.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHARACTER_POINTS_CHANGED" /></summary>
  280.         CHARACTER_POINTS_CHANGED = 139,
  281.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SKILL_LINES_CHANGED" /></summary>
  282.         SKILL_LINES_CHANGED = 140,
  283.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ITEM_PUSH" /></summary>
  284.         ITEM_PUSH = 141,
  285.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LOOT_OPENED" /></summary>
  286.         LOOT_OPENED = 142,
  287.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LOOT_READY" /></summary>
  288.         LOOT_READY = 143,
  289.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LOOT_SLOT_CLEARED" /></summary>
  290.         LOOT_SLOT_CLEARED = 144,
  291.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LOOT_SLOT_CHANGED" /></summary>
  292.         LOOT_SLOT_CHANGED = 145,
  293.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LOOT_CLOSED" /></summary>
  294.         LOOT_CLOSED = 146,
  295.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_LOGIN" /></summary>
  296.         PLAYER_LOGIN = 147,
  297.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_LOGOUT" /></summary>
  298.         PLAYER_LOGOUT = 148,
  299.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_ENTERING_WORLD" /></summary>
  300.         PLAYER_ENTERING_WORLD = 149,
  301.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_LEAVING_WORLD" /></summary>
  302.         PLAYER_LEAVING_WORLD = 150,
  303.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_ALIVE" /></summary>
  304.         PLAYER_ALIVE = 151,
  305.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_DEAD" /></summary>
  306.         PLAYER_DEAD = 152,
  307.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_CAMPING" /></summary>
  308.         PLAYER_CAMPING = 153,
  309.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_QUITING" /></summary>
  310.         PLAYER_QUITING = 154,
  311.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LOGOUT_CANCEL" /></summary>
  312.         LOGOUT_CANCEL = 155,
  313.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/RESURRECT_REQUEST" /></summary>
  314.         RESURRECT_REQUEST = 156,
  315.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PARTY_INVITE_REQUEST" /></summary>
  316.         PARTY_INVITE_REQUEST = 157,
  317.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PARTY_INVITE_CANCEL" /></summary>
  318.         PARTY_INVITE_CANCEL = 158,
  319.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILD_INVITE_REQUEST" /></summary>
  320.         GUILD_INVITE_REQUEST = 159,
  321.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILD_INVITE_CANCEL" /></summary>
  322.         GUILD_INVITE_CANCEL = 160,
  323.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILD_MOTD" /></summary>
  324.         GUILD_MOTD = 161,
  325.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRADE_REQUEST" /></summary>
  326.         TRADE_REQUEST = 162,
  327.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRADE_REQUEST_CANCEL" /></summary>
  328.         TRADE_REQUEST_CANCEL = 163,
  329.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LOOT_BIND_CONFIRM" /></summary>
  330.         LOOT_BIND_CONFIRM = 164,
  331.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/EQUIP_BIND_CONFIRM" /></summary>
  332.         EQUIP_BIND_CONFIRM = 165,
  333.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/AUTOEQUIP_BIND_CONFIRM" /></summary>
  334.         AUTOEQUIP_BIND_CONFIRM = 166,
  335.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/USE_BIND_CONFIRM" /></summary>
  336.         USE_BIND_CONFIRM = 167,
  337.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/DELETE_ITEM_CONFIRM" /></summary>
  338.         DELETE_ITEM_CONFIRM = 168,
  339.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CURSOR_UPDATE" /></summary>
  340.         CURSOR_UPDATE = 169,
  341.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ITEM_TEXT_BEGIN" /></summary>
  342.         ITEM_TEXT_BEGIN = 170,
  343.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ITEM_TEXT_TRANSLATION" /></summary>
  344.         ITEM_TEXT_TRANSLATION = 171,
  345.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ITEM_TEXT_READY" /></summary>
  346.         ITEM_TEXT_READY = 172,
  347.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ITEM_TEXT_CLOSED" /></summary>
  348.         ITEM_TEXT_CLOSED = 173,
  349.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GOSSIP_SHOW" /></summary>
  350.         GOSSIP_SHOW = 174,
  351.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GOSSIP_CONFIRM" /></summary>
  352.         GOSSIP_CONFIRM = 175,
  353.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GOSSIP_CONFIRM_CANCEL" /></summary>
  354.         GOSSIP_CONFIRM_CANCEL = 176,
  355.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GOSSIP_ENTER_CODE" /></summary>
  356.         GOSSIP_ENTER_CODE = 177,
  357.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GOSSIP_CLOSED" /></summary>
  358.         GOSSIP_CLOSED = 178,
  359.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/QUEST_GREETING" /></summary>
  360.         QUEST_GREETING = 179,
  361.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/QUEST_DETAIL" /></summary>
  362.         QUEST_DETAIL = 180,
  363.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/QUEST_PROGRESS" /></summary>
  364.         QUEST_PROGRESS = 181,
  365.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/QUEST_COMPLETE" /></summary>
  366.         QUEST_COMPLETE = 182,
  367.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/QUEST_FINISHED" /></summary>
  368.         QUEST_FINISHED = 183,
  369.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/QUEST_ITEM_UPDATE" /></summary>
  370.         QUEST_ITEM_UPDATE = 184,
  371.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/QUEST_AUTOCOMPLETE" /></summary>
  372.         QUEST_AUTOCOMPLETE = 185,
  373.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TAXIMAP_OPENED" /></summary>
  374.         TAXIMAP_OPENED = 186,
  375.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TAXIMAP_CLOSED" /></summary>
  376.         TAXIMAP_CLOSED = 187,
  377.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/QUEST_LOG_UPDATE" /></summary>
  378.         QUEST_LOG_UPDATE = 188,
  379.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRAINER_SHOW" /></summary>
  380.         TRAINER_SHOW = 189,
  381.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRAINER_UPDATE" /></summary>
  382.         TRAINER_UPDATE = 190,
  383.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRAINER_DESCRIPTION_UPDATE" /></summary>
  384.         TRAINER_DESCRIPTION_UPDATE = 191,
  385.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRAINER_CLOSED" /></summary>
  386.         TRAINER_CLOSED = 192,
  387.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CVAR_UPDATE" /></summary>
  388.         CVAR_UPDATE = 193,
  389.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRADE_SKILL_SHOW" /></summary>
  390.         TRADE_SKILL_SHOW = 194,
  391.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRADE_SKILL_UPDATE" /></summary>
  392.         TRADE_SKILL_UPDATE = 195,
  393.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRADE_SKILL_NAME_UPDATE" /></summary>
  394.         TRADE_SKILL_NAME_UPDATE = 196,
  395.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRADE_SKILL_CLOSE" /></summary>
  396.         TRADE_SKILL_CLOSE = 197,
  397.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MERCHANT_SHOW" /></summary>
  398.         MERCHANT_SHOW = 198,
  399.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MERCHANT_UPDATE" /></summary>
  400.         MERCHANT_UPDATE = 199,
  401.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MERCHANT_FILTER_ITEM_UPDATE" /></summary>
  402.         MERCHANT_FILTER_ITEM_UPDATE = 200,
  403.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MERCHANT_CLOSED" /></summary>
  404.         MERCHANT_CLOSED = 201,
  405.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRADE_SHOW" /></summary>
  406.         TRADE_SHOW = 202,
  407.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRADE_CLOSED" /></summary>
  408.         TRADE_CLOSED = 203,
  409.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRADE_UPDATE" /></summary>
  410.         TRADE_UPDATE = 204,
  411.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRADE_ACCEPT_UPDATE" /></summary>
  412.         TRADE_ACCEPT_UPDATE = 205,
  413.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRADE_TARGET_ITEM_CHANGED" /></summary>
  414.         TRADE_TARGET_ITEM_CHANGED = 206,
  415.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRADE_PLAYER_ITEM_CHANGED" /></summary>
  416.         TRADE_PLAYER_ITEM_CHANGED = 207,
  417.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRADE_MONEY_CHANGED" /></summary>
  418.         TRADE_MONEY_CHANGED = 208,
  419.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_TRADE_MONEY" /></summary>
  420.         PLAYER_TRADE_MONEY = 209,
  421.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BAG_OPEN" /></summary>
  422.         BAG_OPEN = 210,
  423.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BAG_UPDATE" /></summary>
  424.         BAG_UPDATE = 211,
  425.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BAG_UPDATE_DELAYED" /></summary>
  426.         BAG_UPDATE_DELAYED = 212,
  427.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BAG_CLOSED" /></summary>
  428.         BAG_CLOSED = 213,
  429.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BAG_UPDATE_COOLDOWN" /></summary>
  430.         BAG_UPDATE_COOLDOWN = 214,
  431.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BAG_NEW_ITEMS_UPDATED" /></summary>
  432.         BAG_NEW_ITEMS_UPDATED = 215,
  433.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BAG_SLOT_FLAGS_UPDATED" /></summary>
  434.         BAG_SLOT_FLAGS_UPDATED = 216,
  435.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BANK_BAG_SLOT_FLAGS_UPDATED" /></summary>
  436.         BANK_BAG_SLOT_FLAGS_UPDATED = 217,
  437.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LOCALPLAYER_PET_RENAMED" /></summary>
  438.         LOCALPLAYER_PET_RENAMED = 218,
  439.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_ATTACK" /></summary>
  440.         UNIT_ATTACK = 219,
  441.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_DEFENSE" /></summary>
  442.         UNIT_DEFENSE = 220,
  443.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_ATTACK_START" /></summary>
  444.         PET_ATTACK_START = 221,
  445.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_ATTACK_STOP" /></summary>
  446.         PET_ATTACK_STOP = 222,
  447.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_MOUSEOVER_UNIT" /></summary>
  448.         UPDATE_MOUSEOVER_UNIT = 223,
  449.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_SPELLCAST_SENT" /></summary>
  450.         UNIT_SPELLCAST_SENT = 224,
  451.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_SPELLCAST_START" /></summary>
  452.         UNIT_SPELLCAST_START = 225,
  453.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_SPELLCAST_STOP" /></summary>
  454.         UNIT_SPELLCAST_STOP = 226,
  455.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_SPELLCAST_FAILED" /></summary>
  456.         UNIT_SPELLCAST_FAILED = 227,
  457.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_SPELLCAST_FAILED_QUIET" /></summary>
  458.         UNIT_SPELLCAST_FAILED_QUIET = 228,
  459.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_SPELLCAST_INTERRUPTED" /></summary>
  460.         UNIT_SPELLCAST_INTERRUPTED = 229,
  461.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_SPELLCAST_DELAYED" /></summary>
  462.         UNIT_SPELLCAST_DELAYED = 230,
  463.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_SPELLCAST_SUCCEEDED" /></summary>
  464.         UNIT_SPELLCAST_SUCCEEDED = 231,
  465.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_SPELLCAST_CHANNEL_START" /></summary>
  466.         UNIT_SPELLCAST_CHANNEL_START = 232,
  467.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_SPELLCAST_CHANNEL_UPDATE" /></summary>
  468.         UNIT_SPELLCAST_CHANNEL_UPDATE = 233,
  469.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_SPELLCAST_CHANNEL_STOP" /></summary>
  470.         UNIT_SPELLCAST_CHANNEL_STOP = 234,
  471.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_SPELLCAST_INTERRUPTIBLE" /></summary>
  472.         UNIT_SPELLCAST_INTERRUPTIBLE = 235,
  473.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_SPELLCAST_NOT_INTERRUPTIBLE" /></summary>
  474.         UNIT_SPELLCAST_NOT_INTERRUPTIBLE = 236,
  475.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_GUILD_UPDATE" /></summary>
  476.         PLAYER_GUILD_UPDATE = 237,
  477.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/QUEST_ACCEPT_CONFIRM" /></summary>
  478.         QUEST_ACCEPT_CONFIRM = 238,
  479.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYERBANKSLOTS_CHANGED" /></summary>
  480.         PLAYERBANKSLOTS_CHANGED = 239,
  481.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYERREAGENTBANKSLOTS_CHANGED" /></summary>
  482.         PLAYERREAGENTBANKSLOTS_CHANGED = 240,
  483.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BANKFRAME_OPENED" /></summary>
  484.         BANKFRAME_OPENED = 241,
  485.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BANKFRAME_CLOSED" /></summary>
  486.         BANKFRAME_CLOSED = 242,
  487.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYERBANKBAGSLOTS_CHANGED" /></summary>
  488.         PLAYERBANKBAGSLOTS_CHANGED = 243,
  489.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/REAGENTBANK_PURCHASED" /></summary>
  490.         REAGENTBANK_PURCHASED = 244,
  491.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/REAGENTBANK_UPDATE" /></summary>
  492.         REAGENTBANK_UPDATE = 245,
  493.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/FRIENDLIST_UPDATE" /></summary>
  494.         FRIENDLIST_UPDATE = 246,
  495.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/IGNORELIST_UPDATE" /></summary>
  496.         IGNORELIST_UPDATE = 247,
  497.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MUTELIST_UPDATE" /></summary>
  498.         MUTELIST_UPDATE = 248,
  499.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BAR_UPDATE" /></summary>
  500.         PET_BAR_UPDATE = 249,
  501.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BAR_UPDATE_COOLDOWN" /></summary>
  502.         PET_BAR_UPDATE_COOLDOWN = 250,
  503.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BAR_SHOWGRID" /></summary>
  504.         PET_BAR_SHOWGRID = 251,
  505.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BAR_HIDEGRID" /></summary>
  506.         PET_BAR_HIDEGRID = 252,
  507.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BAR_HIDE" /></summary>
  508.         PET_BAR_HIDE = 253,
  509.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BAR_UPDATE_USABLE" /></summary>
  510.         PET_BAR_UPDATE_USABLE = 254,
  511.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MINIMAP_PING" /></summary>
  512.         MINIMAP_PING = 255,
  513.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MIRROR_TIMER_START" /></summary>
  514.         MIRROR_TIMER_START = 256,
  515.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MIRROR_TIMER_PAUSE" /></summary>
  516.         MIRROR_TIMER_PAUSE = 257,
  517.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MIRROR_TIMER_STOP" /></summary>
  518.         MIRROR_TIMER_STOP = 258,
  519.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/WORLD_MAP_UPDATE" /></summary>
  520.         WORLD_MAP_UPDATE = 259,
  521.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/AUTOFOLLOW_BEGIN" /></summary>
  522.         AUTOFOLLOW_BEGIN = 260,
  523.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/AUTOFOLLOW_END" /></summary>
  524.         AUTOFOLLOW_END = 261,
  525.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CINEMATIC_START" /></summary>
  526.         CINEMATIC_START = 262,
  527.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CINEMATIC_STOP" /></summary>
  528.         CINEMATIC_STOP = 263,
  529.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_FACTION" /></summary>
  530.         UPDATE_FACTION = 264,
  531.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CLOSE_WORLD_MAP" /></summary>
  532.         CLOSE_WORLD_MAP = 265,
  533.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/OPEN_TABARD_FRAME" /></summary>
  534.         OPEN_TABARD_FRAME = 266,
  535.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CLOSE_TABARD_FRAME" /></summary>
  536.         CLOSE_TABARD_FRAME = 267,
  537.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TABARD_CANSAVE_CHANGED" /></summary>
  538.         TABARD_CANSAVE_CHANGED = 268,
  539.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILD_REGISTRAR_SHOW" /></summary>
  540.         GUILD_REGISTRAR_SHOW = 269,
  541.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILD_REGISTRAR_CLOSED" /></summary>
  542.         GUILD_REGISTRAR_CLOSED = 270,
  543.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/DUEL_REQUESTED" /></summary>
  544.         DUEL_REQUESTED = 271,
  545.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/DUEL_OUTOFBOUNDS" /></summary>
  546.         DUEL_OUTOFBOUNDS = 272,
  547.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/DUEL_INBOUNDS" /></summary>
  548.         DUEL_INBOUNDS = 273,
  549.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/DUEL_FINISHED" /></summary>
  550.         DUEL_FINISHED = 274,
  551.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TUTORIAL_TRIGGER" /></summary>
  552.         TUTORIAL_TRIGGER = 275,
  553.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_DISMISS_START" /></summary>
  554.         PET_DISMISS_START = 276,
  555.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_BINDINGS" /></summary>
  556.         UPDATE_BINDINGS = 277,
  557.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_SHAPESHIFT_FORMS" /></summary>
  558.         UPDATE_SHAPESHIFT_FORMS = 278,
  559.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_SHAPESHIFT_FORM" /></summary>
  560.         UPDATE_SHAPESHIFT_FORM = 279,
  561.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_SHAPESHIFT_USABLE" /></summary>
  562.         UPDATE_SHAPESHIFT_USABLE = 280,
  563.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_SHAPESHIFT_COOLDOWN" /></summary>
  564.         UPDATE_SHAPESHIFT_COOLDOWN = 281,
  565.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/WHO_LIST_UPDATE" /></summary>
  566.         WHO_LIST_UPDATE = 282,
  567.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PETITION_SHOW" /></summary>
  568.         PETITION_SHOW = 283,
  569.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PETITION_CLOSED" /></summary>
  570.         PETITION_CLOSED = 284,
  571.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/EXECUTE_CHAT_LINE" /></summary>
  572.         EXECUTE_CHAT_LINE = 285,
  573.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_MACROS" /></summary>
  574.         UPDATE_MACROS = 286,
  575.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_TICKET" /></summary>
  576.         UPDATE_TICKET = 287,
  577.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_WEB_TICKET" /></summary>
  578.         UPDATE_WEB_TICKET = 288,
  579.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_CHAT_WINDOWS" /></summary>
  580.         UPDATE_CHAT_WINDOWS = 289,
  581.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CONFIRM_XP_LOSS" /></summary>
  582.         CONFIRM_XP_LOSS = 290,
  583.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CORPSE_IN_RANGE" /></summary>
  584.         CORPSE_IN_RANGE = 291,
  585.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CORPSE_IN_INSTANCE" /></summary>
  586.         CORPSE_IN_INSTANCE = 292,
  587.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CORPSE_OUT_OF_RANGE" /></summary>
  588.         CORPSE_OUT_OF_RANGE = 293,
  589.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_GM_STATUS" /></summary>
  590.         UPDATE_GM_STATUS = 294,
  591.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_UNGHOST" /></summary>
  592.         PLAYER_UNGHOST = 295,
  593.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BIND_ENCHANT" /></summary>
  594.         BIND_ENCHANT = 296,
  595.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/REPLACE_ENCHANT" /></summary>
  596.         REPLACE_ENCHANT = 297,
  597.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRADE_REPLACE_ENCHANT" /></summary>
  598.         TRADE_REPLACE_ENCHANT = 298,
  599.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRADE_POTENTIAL_BIND_ENCHANT" /></summary>
  600.         TRADE_POTENTIAL_BIND_ENCHANT = 299,
  601.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_UPDATE_RESTING" /></summary>
  602.         PLAYER_UPDATE_RESTING = 300,
  603.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_EXHAUSTION" /></summary>
  604.         UPDATE_EXHAUSTION = 301,
  605.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_FLAGS_CHANGED" /></summary>
  606.         PLAYER_FLAGS_CHANGED = 302,
  607.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILD_ROSTER_UPDATE" /></summary>
  608.         GUILD_ROSTER_UPDATE = 303,
  609.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GM_PLAYER_INFO" /></summary>
  610.         GM_PLAYER_INFO = 304,
  611.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MAIL_SHOW" /></summary>
  612.         MAIL_SHOW = 305,
  613.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MAIL_CLOSED" /></summary>
  614.         MAIL_CLOSED = 306,
  615.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SEND_MAIL_MONEY_CHANGED" /></summary>
  616.         SEND_MAIL_MONEY_CHANGED = 307,
  617.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SEND_MAIL_COD_CHANGED" /></summary>
  618.         SEND_MAIL_COD_CHANGED = 308,
  619.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MAIL_SEND_INFO_UPDATE" /></summary>
  620.         MAIL_SEND_INFO_UPDATE = 309,
  621.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MAIL_SEND_SUCCESS" /></summary>
  622.         MAIL_SEND_SUCCESS = 310,
  623.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MAIL_INBOX_UPDATE" /></summary>
  624.         MAIL_INBOX_UPDATE = 311,
  625.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MAIL_LOCK_SEND_ITEMS" /></summary>
  626.         MAIL_LOCK_SEND_ITEMS = 312,
  627.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MAIL_UNLOCK_SEND_ITEMS" /></summary>
  628.         MAIL_UNLOCK_SEND_ITEMS = 313,
  629.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BATTLEFIELDS_SHOW" /></summary>
  630.         BATTLEFIELDS_SHOW = 314,
  631.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BATTLEFIELDS_CLOSED" /></summary>
  632.         BATTLEFIELDS_CLOSED = 315,
  633.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_BATTLEFIELD_STATUS" /></summary>
  634.         UPDATE_BATTLEFIELD_STATUS = 316,
  635.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_BATTLEFIELD_SCORE" /></summary>
  636.         UPDATE_BATTLEFIELD_SCORE = 317,
  637.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BATTLEFIELD_QUEUE_TIMEOUT" /></summary>
  638.         BATTLEFIELD_QUEUE_TIMEOUT = 318,
  639.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/AUCTION_HOUSE_SHOW" /></summary>
  640.         AUCTION_HOUSE_SHOW = 319,
  641.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/AUCTION_HOUSE_CLOSED" /></summary>
  642.         AUCTION_HOUSE_CLOSED = 320,
  643.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/NEW_AUCTION_UPDATE" /></summary>
  644.         NEW_AUCTION_UPDATE = 321,
  645.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/AUCTION_ITEM_LIST_UPDATE" /></summary>
  646.         AUCTION_ITEM_LIST_UPDATE = 322,
  647.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/AUCTION_OWNED_LIST_UPDATE" /></summary>
  648.         AUCTION_OWNED_LIST_UPDATE = 323,
  649.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/AUCTION_BIDDER_LIST_UPDATE" /></summary>
  650.         AUCTION_BIDDER_LIST_UPDATE = 324,
  651.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_UI_UPDATE" /></summary>
  652.         PET_UI_UPDATE = 325,
  653.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_UI_CLOSE" /></summary>
  654.         PET_UI_CLOSE = 326,
  655.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SAVED_VARIABLES_TOO_LARGE" /></summary>
  656.         SAVED_VARIABLES_TOO_LARGE = 327,
  657.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VARIABLES_LOADED" /></summary>
  658.         VARIABLES_LOADED = 328,
  659.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MACRO_ACTION_FORBIDDEN" /></summary>
  660.         MACRO_ACTION_FORBIDDEN = 329,
  661.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MACRO_ACTION_BLOCKED" /></summary>
  662.         MACRO_ACTION_BLOCKED = 330,
  663.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/START_AUTOREPEAT_SPELL" /></summary>
  664.         START_AUTOREPEAT_SPELL = 331,
  665.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/STOP_AUTOREPEAT_SPELL" /></summary>
  666.         STOP_AUTOREPEAT_SPELL = 332,
  667.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_STABLE_SHOW" /></summary>
  668.         PET_STABLE_SHOW = 333,
  669.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_STABLE_UPDATE" /></summary>
  670.         PET_STABLE_UPDATE = 334,
  671.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_STABLE_UPDATE_PAPERDOLL" /></summary>
  672.         PET_STABLE_UPDATE_PAPERDOLL = 335,
  673.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_STABLE_CLOSED" /></summary>
  674.         PET_STABLE_CLOSED = 336,
  675.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/RAID_ROSTER_UPDATE" /></summary>
  676.         RAID_ROSTER_UPDATE = 337,
  677.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_PENDING_MAIL" /></summary>
  678.         UPDATE_PENDING_MAIL = 338,
  679.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_INVENTORY_ALERTS" /></summary>
  680.         UPDATE_INVENTORY_ALERTS = 339,
  681.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_INVENTORY_DURABILITY" /></summary>
  682.         UPDATE_INVENTORY_DURABILITY = 340,
  683.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_TRADESKILL_RECAST" /></summary>
  684.         UPDATE_TRADESKILL_RECAST = 341,
  685.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/OPEN_MASTER_LOOT_LIST" /></summary>
  686.         OPEN_MASTER_LOOT_LIST = 342,
  687.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_MASTER_LOOT_LIST" /></summary>
  688.         UPDATE_MASTER_LOOT_LIST = 343,
  689.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/START_LOOT_ROLL" /></summary>
  690.         START_LOOT_ROLL = 344,
  691.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CANCEL_LOOT_ROLL" /></summary>
  692.         CANCEL_LOOT_ROLL = 345,
  693.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CONFIRM_LOOT_ROLL" /></summary>
  694.         CONFIRM_LOOT_ROLL = 346,
  695.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CONFIRM_DISENCHANT_ROLL" /></summary>
  696.         CONFIRM_DISENCHANT_ROLL = 347,
  697.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/INSTANCE_BOOT_START" /></summary>
  698.         INSTANCE_BOOT_START = 348,
  699.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/INSTANCE_BOOT_STOP" /></summary>
  700.         INSTANCE_BOOT_STOP = 349,
  701.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LEARNED_SPELL_IN_TAB" /></summary>
  702.         LEARNED_SPELL_IN_TAB = 350,
  703.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CONFIRM_TALENT_WIPE" /></summary>
  704.         CONFIRM_TALENT_WIPE = 351,
  705.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CONFIRM_BINDER" /></summary>
  706.         CONFIRM_BINDER = 352,
  707.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MAIL_FAILED" /></summary>
  708.         MAIL_FAILED = 353,
  709.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CLOSE_INBOX_ITEM" /></summary>
  710.         CLOSE_INBOX_ITEM = 354,
  711.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CONFIRM_SUMMON" /></summary>
  712.         CONFIRM_SUMMON = 355,
  713.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CANCEL_SUMMON" /></summary>
  714.         CANCEL_SUMMON = 356,
  715.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BILLING_NAG_DIALOG" /></summary>
  716.         BILLING_NAG_DIALOG = 357,
  717.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/IGR_BILLING_NAG_DIALOG" /></summary>
  718.         IGR_BILLING_NAG_DIALOG = 358,
  719.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_SKINNED" /></summary>
  720.         PLAYER_SKINNED = 359,
  721.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TABARD_SAVE_PENDING" /></summary>
  722.         TABARD_SAVE_PENDING = 360,
  723.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_QUEST_LOG_CHANGED" /></summary>
  724.         UNIT_QUEST_LOG_CHANGED = 361,
  725.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_PVP_KILLS_CHANGED" /></summary>
  726.         PLAYER_PVP_KILLS_CHANGED = 362,
  727.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_PVP_RANK_CHANGED" /></summary>
  728.         PLAYER_PVP_RANK_CHANGED = 363,
  729.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/INSPECT_HONOR_UPDATE" /></summary>
  730.         INSPECT_HONOR_UPDATE = 364,
  731.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_WORLD_STATES" /></summary>
  732.         UPDATE_WORLD_STATES = 365,
  733.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/AREA_SPIRIT_HEALER_IN_RANGE" /></summary>
  734.         AREA_SPIRIT_HEALER_IN_RANGE = 366,
  735.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/AREA_SPIRIT_HEALER_OUT_OF_RANGE" /></summary>
  736.         AREA_SPIRIT_HEALER_OUT_OF_RANGE = 367,
  737.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYTIME_CHANGED" /></summary>
  738.         PLAYTIME_CHANGED = 368,
  739.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_LFG_TYPES" /></summary>
  740.         UPDATE_LFG_TYPES = 369,
  741.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_LFG_LIST" /></summary>
  742.         UPDATE_LFG_LIST = 370,
  743.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_LFG_LIST_INCREMENTAL" /></summary>
  744.         UPDATE_LFG_LIST_INCREMENTAL = 371,
  745.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_LIST_AVAILABILITY_UPDATE" /></summary>
  746.         LFG_LIST_AVAILABILITY_UPDATE = 372,
  747.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_LIST_ACTIVE_ENTRY_UPDATE" /></summary>
  748.         LFG_LIST_ACTIVE_ENTRY_UPDATE = 373,
  749.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_LIST_ENTRY_CREATION_FAILED" /></summary>
  750.         LFG_LIST_ENTRY_CREATION_FAILED = 374,
  751.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_LIST_SEARCH_RESULTS_RECEIVED" /></summary>
  752.         LFG_LIST_SEARCH_RESULTS_RECEIVED = 375,
  753.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_LIST_SEARCH_RESULT_UPDATED" /></summary>
  754.         LFG_LIST_SEARCH_RESULT_UPDATED = 376,
  755.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_LIST_SEARCH_FAILED" /></summary>
  756.         LFG_LIST_SEARCH_FAILED = 377,
  757.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_LIST_APPLICANT_UPDATED" /></summary>
  758.         LFG_LIST_APPLICANT_UPDATED = 378,
  759.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_LIST_APPLICANT_LIST_UPDATED" /></summary>
  760.         LFG_LIST_APPLICANT_LIST_UPDATED = 379,
  761.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_LIST_JOINED_GROUP" /></summary>
  762.         LFG_LIST_JOINED_GROUP = 380,
  763.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_LIST_ENTRY_EXPIRED_TOO_MANY_PLAYERS" /></summary>
  764.         LFG_LIST_ENTRY_EXPIRED_TOO_MANY_PLAYERS = 381,
  765.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_LIST_ENTRY_EXPIRED_TIMEOUT" /></summary>
  766.         LFG_LIST_ENTRY_EXPIRED_TIMEOUT = 382,
  767.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_LIST_APPLICATION_STATUS_UPDATED" /></summary>
  768.         LFG_LIST_APPLICATION_STATUS_UPDATED = 383,
  769.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/READY_CHECK" /></summary>
  770.         READY_CHECK = 384,
  771.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/READY_CHECK_CONFIRM" /></summary>
  772.         READY_CHECK_CONFIRM = 385,
  773.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/READY_CHECK_FINISHED" /></summary>
  774.         READY_CHECK_FINISHED = 386,
  775.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/RAID_TARGET_UPDATE" /></summary>
  776.         RAID_TARGET_UPDATE = 387,
  777.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GMSURVEY_DISPLAY" /></summary>
  778.         GMSURVEY_DISPLAY = 388,
  779.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_INSTANCE_INFO" /></summary>
  780.         UPDATE_INSTANCE_INFO = 389,
  781.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SOCKET_INFO_UPDATE" /></summary>
  782.         SOCKET_INFO_UPDATE = 390,
  783.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SOCKET_INFO_ACCEPT" /></summary>
  784.         SOCKET_INFO_ACCEPT = 391,
  785.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SOCKET_INFO_SUCCESS" /></summary>
  786.         SOCKET_INFO_SUCCESS = 392,
  787.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SOCKET_INFO_CLOSE" /></summary>
  788.         SOCKET_INFO_CLOSE = 393,
  789.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PETITION_VENDOR_SHOW" /></summary>
  790.         PETITION_VENDOR_SHOW = 394,
  791.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PETITION_VENDOR_CLOSED" /></summary>
  792.         PETITION_VENDOR_CLOSED = 395,
  793.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PETITION_VENDOR_UPDATE" /></summary>
  794.         PETITION_VENDOR_UPDATE = 396,
  795.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/COMBAT_TEXT_UPDATE" /></summary>
  796.         COMBAT_TEXT_UPDATE = 397,
  797.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/QUEST_WATCH_UPDATE" /></summary>
  798.         QUEST_WATCH_UPDATE = 398,
  799.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/QUEST_WATCH_LIST_CHANGED" /></summary>
  800.         QUEST_WATCH_LIST_CHANGED = 399,
  801.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/QUEST_WATCH_OBJECTIVES_CHANGED" /></summary>
  802.         QUEST_WATCH_OBJECTIVES_CHANGED = 400,
  803.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/KNOWLEDGE_BASE_SETUP_LOAD_SUCCESS" /></summary>
  804.         KNOWLEDGE_BASE_SETUP_LOAD_SUCCESS = 401,
  805.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/KNOWLEDGE_BASE_SETUP_LOAD_FAILURE" /></summary>
  806.         KNOWLEDGE_BASE_SETUP_LOAD_FAILURE = 402,
  807.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/KNOWLEDGE_BASE_QUERY_LOAD_SUCCESS" /></summary>
  808.         KNOWLEDGE_BASE_QUERY_LOAD_SUCCESS = 403,
  809.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/KNOWLEDGE_BASE_QUERY_LOAD_FAILURE" /></summary>
  810.         KNOWLEDGE_BASE_QUERY_LOAD_FAILURE = 404,
  811.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/KNOWLEDGE_BASE_ARTICLE_LOAD_SUCCESS" /></summary>
  812.         KNOWLEDGE_BASE_ARTICLE_LOAD_SUCCESS = 405,
  813.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/KNOWLEDGE_BASE_ARTICLE_LOAD_FAILURE" /></summary>
  814.         KNOWLEDGE_BASE_ARTICLE_LOAD_FAILURE = 406,
  815.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/KNOWLEDGE_BASE_SYSTEM_MOTD_UPDATED" /></summary>
  816.         KNOWLEDGE_BASE_SYSTEM_MOTD_UPDATED = 407,
  817.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/KNOWLEDGE_BASE_SERVER_MESSAGE" /></summary>
  818.         KNOWLEDGE_BASE_SERVER_MESSAGE = 408,
  819.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/KNOWN_TITLES_UPDATE" /></summary>
  820.         KNOWN_TITLES_UPDATE = 409,
  821.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/NEW_TITLE_EARNED" /></summary>
  822.         NEW_TITLE_EARNED = 410,
  823.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/OLD_TITLE_LOST" /></summary>
  824.         OLD_TITLE_LOST = 411,
  825.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_UPDATE" /></summary>
  826.         LFG_UPDATE = 412,
  827.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_PROPOSAL_UPDATE" /></summary>
  828.         LFG_PROPOSAL_UPDATE = 413,
  829.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_PROPOSAL_SHOW" /></summary>
  830.         LFG_PROPOSAL_SHOW = 414,
  831.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_PROPOSAL_FAILED" /></summary>
  832.         LFG_PROPOSAL_FAILED = 415,
  833.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_PROPOSAL_SUCCEEDED" /></summary>
  834.         LFG_PROPOSAL_SUCCEEDED = 416,
  835.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_ROLE_UPDATE" /></summary>
  836.         LFG_ROLE_UPDATE = 417,
  837.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_ROLE_CHECK_UPDATE" /></summary>
  838.         LFG_ROLE_CHECK_UPDATE = 418,
  839.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_ROLE_CHECK_SHOW" /></summary>
  840.         LFG_ROLE_CHECK_SHOW = 419,
  841.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_ROLE_CHECK_HIDE" /></summary>
  842.         LFG_ROLE_CHECK_HIDE = 420,
  843.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_ROLE_CHECK_ROLE_CHOSEN" /></summary>
  844.         LFG_ROLE_CHECK_ROLE_CHOSEN = 421,
  845.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_QUEUE_STATUS_UPDATE" /></summary>
  846.         LFG_QUEUE_STATUS_UPDATE = 422,
  847.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_BOOT_PROPOSAL_UPDATE" /></summary>
  848.         LFG_BOOT_PROPOSAL_UPDATE = 423,
  849.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_LOCK_INFO_RECEIVED" /></summary>
  850.         LFG_LOCK_INFO_RECEIVED = 424,
  851.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_UPDATE_RANDOM_INFO" /></summary>
  852.         LFG_UPDATE_RANDOM_INFO = 425,
  853.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_OFFER_CONTINUE" /></summary>
  854.         LFG_OFFER_CONTINUE = 426,
  855.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_OPEN_FROM_GOSSIP" /></summary>
  856.         LFG_OPEN_FROM_GOSSIP = 427,
  857.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_COMPLETION_REWARD" /></summary>
  858.         LFG_COMPLETION_REWARD = 428,
  859.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_INVALID_ERROR_MESSAGE" /></summary>
  860.         LFG_INVALID_ERROR_MESSAGE = 429,
  861.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_READY_CHECK_UPDATE" /></summary>
  862.         LFG_READY_CHECK_UPDATE = 430,
  863.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_READY_CHECK_SHOW" /></summary>
  864.         LFG_READY_CHECK_SHOW = 431,
  865.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_READY_CHECK_HIDE" /></summary>
  866.         LFG_READY_CHECK_HIDE = 432,
  867.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_READY_CHECK_DECLINED" /></summary>
  868.         LFG_READY_CHECK_DECLINED = 433,
  869.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_READY_CHECK_PLAYER_IS_READY" /></summary>
  870.         LFG_READY_CHECK_PLAYER_IS_READY = 434,
  871.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_ROLE_CHECK_DECLINED" /></summary>
  872.         LFG_ROLE_CHECK_DECLINED = 435,
  873.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PARTY_LFG_RESTRICTED" /></summary>
  874.         PARTY_LFG_RESTRICTED = 436,
  875.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_ROLES_ASSIGNED" /></summary>
  876.         PLAYER_ROLES_ASSIGNED = 437,
  877.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/COMBAT_RATING_UPDATE" /></summary>
  878.         COMBAT_RATING_UPDATE = 438,
  879.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MODIFIER_STATE_CHANGED" /></summary>
  880.         MODIFIER_STATE_CHANGED = 439,
  881.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_STEALTH" /></summary>
  882.         UPDATE_STEALTH = 440,
  883.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ENABLE_TAXI_BENCHMARK" /></summary>
  884.         ENABLE_TAXI_BENCHMARK = 441,
  885.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/DISABLE_TAXI_BENCHMARK" /></summary>
  886.         DISABLE_TAXI_BENCHMARK = 442,
  887.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VOICE_START" /></summary>
  888.         VOICE_START = 443,
  889.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VOICE_STOP" /></summary>
  890.         VOICE_STOP = 444,
  891.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VOICE_STATUS_UPDATE" /></summary>
  892.         VOICE_STATUS_UPDATE = 445,
  893.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VOICE_CHANNEL_STATUS_UPDATE" /></summary>
  894.         VOICE_CHANNEL_STATUS_UPDATE = 446,
  895.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_FLOATING_CHAT_WINDOWS" /></summary>
  896.         UPDATE_FLOATING_CHAT_WINDOWS = 447,
  897.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/RAID_INSTANCE_WELCOME" /></summary>
  898.         RAID_INSTANCE_WELCOME = 448,
  899.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MOVIE_RECORDING_PROGRESS" /></summary>
  900.         MOVIE_RECORDING_PROGRESS = 449,
  901.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MOVIE_COMPRESSING_PROGRESS" /></summary>
  902.         MOVIE_COMPRESSING_PROGRESS = 450,
  903.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MOVIE_UNCOMPRESSED_MOVIE" /></summary>
  904.         MOVIE_UNCOMPRESSED_MOVIE = 451,
  905.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VOICE_PUSH_TO_TALK_START" /></summary>
  906.         VOICE_PUSH_TO_TALK_START = 452,
  907.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VOICE_PUSH_TO_TALK_STOP" /></summary>
  908.         VOICE_PUSH_TO_TALK_STOP = 453,
  909.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILDBANKFRAME_OPENED" /></summary>
  910.         GUILDBANKFRAME_OPENED = 454,
  911.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILDBANKFRAME_CLOSED" /></summary>
  912.         GUILDBANKFRAME_CLOSED = 455,
  913.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILDBANKBAGSLOTS_CHANGED" /></summary>
  914.         GUILDBANKBAGSLOTS_CHANGED = 456,
  915.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILDBANK_ITEM_LOCK_CHANGED" /></summary>
  916.         GUILDBANK_ITEM_LOCK_CHANGED = 457,
  917.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILDBANK_UPDATE_TABS" /></summary>
  918.         GUILDBANK_UPDATE_TABS = 458,
  919.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILDBANK_UPDATE_MONEY" /></summary>
  920.         GUILDBANK_UPDATE_MONEY = 459,
  921.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILDBANKLOG_UPDATE" /></summary>
  922.         GUILDBANKLOG_UPDATE = 460,
  923.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILDBANK_UPDATE_WITHDRAWMONEY" /></summary>
  924.         GUILDBANK_UPDATE_WITHDRAWMONEY = 461,
  925.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILDBANK_UPDATE_TEXT" /></summary>
  926.         GUILDBANK_UPDATE_TEXT = 462,
  927.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILDBANK_TEXT_CHANGED" /></summary>
  928.         GUILDBANK_TEXT_CHANGED = 463,
  929.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHANNEL_UI_UPDATE" /></summary>
  930.         CHANNEL_UI_UPDATE = 464,
  931.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHANNEL_COUNT_UPDATE" /></summary>
  932.         CHANNEL_COUNT_UPDATE = 465,
  933.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHANNEL_ROSTER_UPDATE" /></summary>
  934.         CHANNEL_ROSTER_UPDATE = 466,
  935.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHANNEL_VOICE_UPDATE" /></summary>
  936.         CHANNEL_VOICE_UPDATE = 467,
  937.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHANNEL_INVITE_REQUEST" /></summary>
  938.         CHANNEL_INVITE_REQUEST = 468,
  939.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHANNEL_PASSWORD_REQUEST" /></summary>
  940.         CHANNEL_PASSWORD_REQUEST = 469,
  941.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHANNEL_FLAGS_UPDATED" /></summary>
  942.         CHANNEL_FLAGS_UPDATED = 470,
  943.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VOICE_SESSIONS_UPDATE" /></summary>
  944.         VOICE_SESSIONS_UPDATE = 471,
  945.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VOICE_CHAT_ENABLED_UPDATE" /></summary>
  946.         VOICE_CHAT_ENABLED_UPDATE = 472,
  947.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VOICE_LEFT_SESSION" /></summary>
  948.         VOICE_LEFT_SESSION = 473,
  949.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/INSPECT_READY" /></summary>
  950.         INSPECT_READY = 474,
  951.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VOICE_SELF_MUTE" /></summary>
  952.         VOICE_SELF_MUTE = 475,
  953.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VOICE_PLATE_START" /></summary>
  954.         VOICE_PLATE_START = 476,
  955.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VOICE_PLATE_STOP" /></summary>
  956.         VOICE_PLATE_STOP = 477,
  957.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ARENA_SEASON_WORLD_STATE" /></summary>
  958.         ARENA_SEASON_WORLD_STATE = 478,
  959.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILD_EVENT_LOG_UPDATE" /></summary>
  960.         GUILD_EVENT_LOG_UPDATE = 479,
  961.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILDTABARD_UPDATE" /></summary>
  962.         GUILDTABARD_UPDATE = 480,
  963.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SOUND_DEVICE_UPDATE" /></summary>
  964.         SOUND_DEVICE_UPDATE = 481,
  965.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/COMMENTATOR_MAP_UPDATE" /></summary>
  966.         COMMENTATOR_MAP_UPDATE = 482,
  967.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/COMMENTATOR_ENTER_WORLD" /></summary>
  968.         COMMENTATOR_ENTER_WORLD = 483,
  969.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/COMBAT_LOG_EVENT" /></summary>
  970.         COMBAT_LOG_EVENT = 484,
  971.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/COMBAT_LOG_EVENT_UNFILTERED" /></summary>
  972.         COMBAT_LOG_EVENT_UNFILTERED = 485,
  973.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/COMMENTATOR_PLAYER_UPDATE" /></summary>
  974.         COMMENTATOR_PLAYER_UPDATE = 486,
  975.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_ENTERING_BATTLEGROUND" /></summary>
  976.         PLAYER_ENTERING_BATTLEGROUND = 487,
  977.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BARBER_SHOP_OPEN" /></summary>
  978.         BARBER_SHOP_OPEN = 488,
  979.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BARBER_SHOP_CLOSE" /></summary>
  980.         BARBER_SHOP_CLOSE = 489,
  981.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BARBER_SHOP_SUCCESS" /></summary>
  982.         BARBER_SHOP_SUCCESS = 490,
  983.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BARBER_SHOP_APPEARANCE_APPLIED" /></summary>
  984.         BARBER_SHOP_APPEARANCE_APPLIED = 491,
  985.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CALENDAR_UPDATE_INVITE_LIST" /></summary>
  986.         CALENDAR_UPDATE_INVITE_LIST = 492,
  987.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CALENDAR_UPDATE_EVENT_LIST" /></summary>
  988.         CALENDAR_UPDATE_EVENT_LIST = 493,
  989.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CALENDAR_NEW_EVENT" /></summary>
  990.         CALENDAR_NEW_EVENT = 494,
  991.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CALENDAR_OPEN_EVENT" /></summary>
  992.         CALENDAR_OPEN_EVENT = 495,
  993.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CALENDAR_CLOSE_EVENT" /></summary>
  994.         CALENDAR_CLOSE_EVENT = 496,
  995.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CALENDAR_UPDATE_EVENT" /></summary>
  996.         CALENDAR_UPDATE_EVENT = 497,
  997.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CALENDAR_UPDATE_PENDING_INVITES" /></summary>
  998.         CALENDAR_UPDATE_PENDING_INVITES = 498,
  999.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CALENDAR_EVENT_ALARM" /></summary>
  1000.         CALENDAR_EVENT_ALARM = 499,
  1001.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CALENDAR_UPDATE_ERROR" /></summary>
  1002.         CALENDAR_UPDATE_ERROR = 500,
  1003.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CALENDAR_ACTION_PENDING" /></summary>
  1004.         CALENDAR_ACTION_PENDING = 501,
  1005.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CALENDAR_UPDATE_GUILD_EVENTS" /></summary>
  1006.         CALENDAR_UPDATE_GUILD_EVENTS = 502,
  1007.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VEHICLE_ANGLE_SHOW" /></summary>
  1008.         VEHICLE_ANGLE_SHOW = 503,
  1009.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VEHICLE_ANGLE_UPDATE" /></summary>
  1010.         VEHICLE_ANGLE_UPDATE = 504,
  1011.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VEHICLE_POWER_SHOW" /></summary>
  1012.         VEHICLE_POWER_SHOW = 505,
  1013.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_ENTERING_VEHICLE" /></summary>
  1014.         UNIT_ENTERING_VEHICLE = 506,
  1015.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_ENTERED_VEHICLE" /></summary>
  1016.         UNIT_ENTERED_VEHICLE = 507,
  1017.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_EXITING_VEHICLE" /></summary>
  1018.         UNIT_EXITING_VEHICLE = 508,
  1019.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_EXITED_VEHICLE" /></summary>
  1020.         UNIT_EXITED_VEHICLE = 509,
  1021.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VEHICLE_PASSENGERS_CHANGED" /></summary>
  1022.         VEHICLE_PASSENGERS_CHANGED = 510,
  1023.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_GAINS_VEHICLE_DATA" /></summary>
  1024.         PLAYER_GAINS_VEHICLE_DATA = 511,
  1025.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_LOSES_VEHICLE_DATA" /></summary>
  1026.         PLAYER_LOSES_VEHICLE_DATA = 512,
  1027.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_FORCE_NAME_DECLENSION" /></summary>
  1028.         PET_FORCE_NAME_DECLENSION = 513,
  1029.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LEVEL_GRANT_PROPOSED" /></summary>
  1030.         LEVEL_GRANT_PROPOSED = 514,
  1031.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SYNCHRONIZE_SETTINGS" /></summary>
  1032.         SYNCHRONIZE_SETTINGS = 515,
  1033.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAY_MOVIE" /></summary>
  1034.         PLAY_MOVIE = 516,
  1035.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/RUNE_POWER_UPDATE" /></summary>
  1036.         RUNE_POWER_UPDATE = 517,
  1037.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/RUNE_TYPE_UPDATE" /></summary>
  1038.         RUNE_TYPE_UPDATE = 518,
  1039.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ACHIEVEMENT_EARNED" /></summary>
  1040.         ACHIEVEMENT_EARNED = 519,
  1041.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CRITERIA_EARNED" /></summary>
  1042.         CRITERIA_EARNED = 520,
  1043.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CRITERIA_COMPLETE" /></summary>
  1044.         CRITERIA_COMPLETE = 521,
  1045.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CRITERIA_UPDATE" /></summary>
  1046.         CRITERIA_UPDATE = 522,
  1047.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/RECEIVED_ACHIEVEMENT_LIST" /></summary>
  1048.         RECEIVED_ACHIEVEMENT_LIST = 523,
  1049.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_RENAMEABLE" /></summary>
  1050.         PET_RENAMEABLE = 524,
  1051.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CURRENCY_DISPLAY_UPDATE" /></summary>
  1052.         CURRENCY_DISPLAY_UPDATE = 525,
  1053.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/COMPANION_LEARNED" /></summary>
  1054.         COMPANION_LEARNED = 526,
  1055.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/COMPANION_UNLEARNED" /></summary>
  1056.         COMPANION_UNLEARNED = 527,
  1057.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/COMPANION_UPDATE" /></summary>
  1058.         COMPANION_UPDATE = 528,
  1059.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_THREAT_LIST_UPDATE" /></summary>
  1060.         UNIT_THREAT_LIST_UPDATE = 529,
  1061.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_THREAT_SITUATION_UPDATE" /></summary>
  1062.         UNIT_THREAT_SITUATION_UPDATE = 530,
  1063.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GLYPH_ADDED" /></summary>
  1064.         GLYPH_ADDED = 531,
  1065.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GLYPH_REMOVED" /></summary>
  1066.         GLYPH_REMOVED = 532,
  1067.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GLYPH_UPDATED" /></summary>
  1068.         GLYPH_UPDATED = 533,
  1069.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GLYPH_ENABLED" /></summary>
  1070.         GLYPH_ENABLED = 534,
  1071.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GLYPH_DISABLED" /></summary>
  1072.         GLYPH_DISABLED = 535,
  1073.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/USE_GLYPH" /></summary>
  1074.         USE_GLYPH = 536,
  1075.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRACKED_ACHIEVEMENT_UPDATE" /></summary>
  1076.         TRACKED_ACHIEVEMENT_UPDATE = 537,
  1077.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRACKED_ACHIEVEMENT_LIST_CHANGED" /></summary>
  1078.         TRACKED_ACHIEVEMENT_LIST_CHANGED = 538,
  1079.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ARENA_OPPONENT_UPDATE" /></summary>
  1080.         ARENA_OPPONENT_UPDATE = 539,
  1081.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/INSPECT_ACHIEVEMENT_READY" /></summary>
  1082.         INSPECT_ACHIEVEMENT_READY = 540,
  1083.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/RAISED_AS_GHOUL" /></summary>
  1084.         RAISED_AS_GHOUL = 541,
  1085.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PARTY_CONVERTED_TO_RAID" /></summary>
  1086.         PARTY_CONVERTED_TO_RAID = 542,
  1087.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PVPQUEUE_ANYWHERE_SHOW" /></summary>
  1088.         PVPQUEUE_ANYWHERE_SHOW = 543,
  1089.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PVPQUEUE_ANYWHERE_UPDATE_AVAILABLE" /></summary>
  1090.         PVPQUEUE_ANYWHERE_UPDATE_AVAILABLE = 544,
  1091.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/QUEST_ACCEPTED" /></summary>
  1092.         QUEST_ACCEPTED = 545,
  1093.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/QUEST_TURNED_IN" /></summary>
  1094.         QUEST_TURNED_IN = 546,
  1095.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_SPECIALIZATION_CHANGED" /></summary>
  1096.         PLAYER_SPECIALIZATION_CHANGED = 547,
  1097.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_TALENT_UPDATE" /></summary>
  1098.         PLAYER_TALENT_UPDATE = 548,
  1099.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ACTIVE_TALENT_GROUP_CHANGED" /></summary>
  1100.         ACTIVE_TALENT_GROUP_CHANGED = 549,
  1101.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_CHARACTER_UPGRADE_TALENT_COUNT_CHANGED" /></summary>
  1102.         PLAYER_CHARACTER_UPGRADE_TALENT_COUNT_CHANGED = 550,
  1103.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_SPECIALIZATION_CHANGED" /></summary>
  1104.         PET_SPECIALIZATION_CHANGED = 551,
  1105.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PREVIEW_TALENT_POINTS_CHANGED" /></summary>
  1106.         PREVIEW_TALENT_POINTS_CHANGED = 552,
  1107.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PREVIEW_TALENT_PRIMARY_TREE_CHANGED" /></summary>
  1108.         PREVIEW_TALENT_PRIMARY_TREE_CHANGED = 553,
  1109.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/WEAR_EQUIPMENT_SET" /></summary>
  1110.         WEAR_EQUIPMENT_SET = 554,
  1111.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/EQUIPMENT_SETS_CHANGED" /></summary>
  1112.         EQUIPMENT_SETS_CHANGED = 555,
  1113.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/INSTANCE_LOCK_START" /></summary>
  1114.         INSTANCE_LOCK_START = 556,
  1115.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/INSTANCE_LOCK_STOP" /></summary>
  1116.         INSTANCE_LOCK_STOP = 557,
  1117.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/INSTANCE_LOCK_WARNING" /></summary>
  1118.         INSTANCE_LOCK_WARNING = 558,
  1119.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_EQUIPMENT_CHANGED" /></summary>
  1120.         PLAYER_EQUIPMENT_CHANGED = 559,
  1121.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ITEM_LOCKED" /></summary>
  1122.         ITEM_LOCKED = 560,
  1123.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ITEM_UNLOCKED" /></summary>
  1124.         ITEM_UNLOCKED = 561,
  1125.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRADE_SKILL_FILTER_UPDATE" /></summary>
  1126.         TRADE_SKILL_FILTER_UPDATE = 562,
  1127.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/EQUIPMENT_SWAP_PENDING" /></summary>
  1128.         EQUIPMENT_SWAP_PENDING = 563,
  1129.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/EQUIPMENT_SWAP_FINISHED" /></summary>
  1130.         EQUIPMENT_SWAP_FINISHED = 564,
  1131.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/NPC_PVPQUEUE_ANYWHERE" /></summary>
  1132.         NPC_PVPQUEUE_ANYWHERE = 565,
  1133.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_MULTI_CAST_ACTIONBAR" /></summary>
  1134.         UPDATE_MULTI_CAST_ACTIONBAR = 566,
  1135.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ENABLE_XP_GAIN" /></summary>
  1136.         ENABLE_XP_GAIN = 567,
  1137.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/DISABLE_XP_GAIN" /></summary>
  1138.         DISABLE_XP_GAIN = 568,
  1139.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_EXPANSION_LEVEL" /></summary>
  1140.         UPDATE_EXPANSION_LEVEL = 569,
  1141.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BATTLEFIELD_MGR_ENTRY_INVITE" /></summary>
  1142.         BATTLEFIELD_MGR_ENTRY_INVITE = 570,
  1143.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BATTLEFIELD_MGR_ENTERED" /></summary>
  1144.         BATTLEFIELD_MGR_ENTERED = 571,
  1145.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BATTLEFIELD_MGR_QUEUE_REQUEST_RESPONSE" /></summary>
  1146.         BATTLEFIELD_MGR_QUEUE_REQUEST_RESPONSE = 572,
  1147.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BATTLEFIELD_MGR_QUEUE_STATUS_UPDATE" /></summary>
  1148.         BATTLEFIELD_MGR_QUEUE_STATUS_UPDATE = 573,
  1149.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BATTLEFIELD_MGR_EJECT_PENDING" /></summary>
  1150.         BATTLEFIELD_MGR_EJECT_PENDING = 574,
  1151.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BATTLEFIELD_MGR_EJECTED" /></summary>
  1152.         BATTLEFIELD_MGR_EJECTED = 575,
  1153.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BATTLEFIELD_MGR_DROP_TIMER_STARTED" /></summary>
  1154.         BATTLEFIELD_MGR_DROP_TIMER_STARTED = 576,
  1155.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BATTLEFIELD_MGR_DROP_TIMER_CANCELED" /></summary>
  1156.         BATTLEFIELD_MGR_DROP_TIMER_CANCELED = 577,
  1157.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BATTLEFIELD_MGR_QUEUE_INVITE" /></summary>
  1158.         BATTLEFIELD_MGR_QUEUE_INVITE = 578,
  1159.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BATTLEFIELD_MGR_STATE_CHANGE" /></summary>
  1160.         BATTLEFIELD_MGR_STATE_CHANGE = 579,
  1161.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PVP_TYPES_ENABLED" /></summary>
  1162.         PVP_TYPES_ENABLED = 580,
  1163.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/WORLD_STATE_UI_TIMER_UPDATE" /></summary>
  1164.         WORLD_STATE_UI_TIMER_UPDATE = 581,
  1165.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/WORLD_STATE_TIMER_START" /></summary>
  1166.         WORLD_STATE_TIMER_START = 582,
  1167.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/WORLD_STATE_TIMER_STOP" /></summary>
  1168.         WORLD_STATE_TIMER_STOP = 583,
  1169.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/END_BOUND_TRADEABLE" /></summary>
  1170.         END_BOUND_TRADEABLE = 584,
  1171.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_CHAT_COLOR_NAME_BY_CLASS" /></summary>
  1172.         UPDATE_CHAT_COLOR_NAME_BY_CLASS = 585,
  1173.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GMRESPONSE_RECEIVED" /></summary>
  1174.         GMRESPONSE_RECEIVED = 586,
  1175.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VEHICLE_UPDATE" /></summary>
  1176.         VEHICLE_UPDATE = 587,
  1177.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/WOW_MOUSE_NOT_FOUND" /></summary>
  1178.         WOW_MOUSE_NOT_FOUND = 588,
  1179.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_COMBAT_MSG_ARENA_POINTS_GAIN" /></summary>
  1180.         CHAT_COMBAT_MSG_ARENA_POINTS_GAIN = 589,
  1181.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MAIL_SUCCESS" /></summary>
  1182.         MAIL_SUCCESS = 590,
  1183.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TALENTS_INVOLUNTARILY_RESET" /></summary>
  1184.         TALENTS_INVOLUNTARILY_RESET = 591,
  1185.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/INSTANCE_ENCOUNTER_ENGAGE_UNIT" /></summary>
  1186.         INSTANCE_ENCOUNTER_ENGAGE_UNIT = 592,
  1187.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/QUEST_POI_UPDATE" /></summary>
  1188.         QUEST_POI_UPDATE = 593,
  1189.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_DIFFICULTY_CHANGED" /></summary>
  1190.         PLAYER_DIFFICULTY_CHANGED = 594,
  1191.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_PARTY_LEADER" /></summary>
  1192.         CHAT_MSG_PARTY_LEADER = 595,
  1193.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VOTE_KICK_REASON_NEEDED" /></summary>
  1194.         VOTE_KICK_REASON_NEEDED = 596,
  1195.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ENABLE_LOW_LEVEL_RAID" /></summary>
  1196.         ENABLE_LOW_LEVEL_RAID = 597,
  1197.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/DISABLE_LOW_LEVEL_RAID" /></summary>
  1198.         DISABLE_LOW_LEVEL_RAID = 598,
  1199.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_TARGETICONS" /></summary>
  1200.         CHAT_MSG_TARGETICONS = 599,
  1201.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/AUCTION_HOUSE_DISABLED" /></summary>
  1202.         AUCTION_HOUSE_DISABLED = 600,
  1203.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/AUCTION_MULTISELL_START" /></summary>
  1204.         AUCTION_MULTISELL_START = 601,
  1205.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/AUCTION_MULTISELL_UPDATE" /></summary>
  1206.         AUCTION_MULTISELL_UPDATE = 602,
  1207.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/AUCTION_MULTISELL_FAILURE" /></summary>
  1208.         AUCTION_MULTISELL_FAILURE = 603,
  1209.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_SPELL_POWER_UPDATE" /></summary>
  1210.         PET_SPELL_POWER_UPDATE = 604,
  1211.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_CONNECTED" /></summary>
  1212.         BN_CONNECTED = 605,
  1213.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_DISCONNECTED" /></summary>
  1214.         BN_DISCONNECTED = 606,
  1215.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_SELF_ONLINE" /></summary>
  1216.         BN_SELF_ONLINE = 607,
  1217.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_SELF_OFFLINE" /></summary>
  1218.         BN_SELF_OFFLINE = 608,
  1219.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_INFO_CHANGED" /></summary>
  1220.         BN_INFO_CHANGED = 609,
  1221.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_FRIEND_LIST_SIZE_CHANGED" /></summary>
  1222.         BN_FRIEND_LIST_SIZE_CHANGED = 610,
  1223.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_FRIEND_INVITE_LIST_INITIALIZED" /></summary>
  1224.         BN_FRIEND_INVITE_LIST_INITIALIZED = 611,
  1225.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_FRIEND_INVITE_SEND_RESULT" /></summary>
  1226.         BN_FRIEND_INVITE_SEND_RESULT = 612,
  1227.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_FRIEND_INVITE_ADDED" /></summary>
  1228.         BN_FRIEND_INVITE_ADDED = 613,
  1229.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_FRIEND_INVITE_REMOVED" /></summary>
  1230.         BN_FRIEND_INVITE_REMOVED = 614,
  1231.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_FRIEND_INFO_CHANGED" /></summary>
  1232.         BN_FRIEND_INFO_CHANGED = 615,
  1233.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_CUSTOM_MESSAGE_CHANGED" /></summary>
  1234.         BN_CUSTOM_MESSAGE_CHANGED = 616,
  1235.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_CUSTOM_MESSAGE_LOADED" /></summary>
  1236.         BN_CUSTOM_MESSAGE_LOADED = 617,
  1237.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_BN_WHISPER" /></summary>
  1238.         CHAT_MSG_BN_WHISPER = 618,
  1239.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_BN_WHISPER_INFORM" /></summary>
  1240.         CHAT_MSG_BN_WHISPER_INFORM = 619,
  1241.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_CHAT_WHISPER_UNDELIVERABLE" /></summary>
  1242.         BN_CHAT_WHISPER_UNDELIVERABLE = 620,
  1243.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_CHAT_CHANNEL_JOINED" /></summary>
  1244.         BN_CHAT_CHANNEL_JOINED = 621,
  1245.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_CHAT_CHANNEL_LEFT" /></summary>
  1246.         BN_CHAT_CHANNEL_LEFT = 622,
  1247.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_CHAT_CHANNEL_CLOSED" /></summary>
  1248.         BN_CHAT_CHANNEL_CLOSED = 623,
  1249.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_BN_CONVERSATION" /></summary>
  1250.         CHAT_MSG_BN_CONVERSATION = 624,
  1251.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_BN_CONVERSATION_NOTICE" /></summary>
  1252.         CHAT_MSG_BN_CONVERSATION_NOTICE = 625,
  1253.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_BN_CONVERSATION_LIST" /></summary>
  1254.         CHAT_MSG_BN_CONVERSATION_LIST = 626,
  1255.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_CHAT_CHANNEL_MESSAGE_UNDELIVERABLE" /></summary>
  1256.         BN_CHAT_CHANNEL_MESSAGE_UNDELIVERABLE = 627,
  1257.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_CHAT_CHANNEL_MESSAGE_BLOCKED" /></summary>
  1258.         BN_CHAT_CHANNEL_MESSAGE_BLOCKED = 628,
  1259.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_CHAT_CHANNEL_MEMBER_JOINED" /></summary>
  1260.         BN_CHAT_CHANNEL_MEMBER_JOINED = 629,
  1261.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_CHAT_CHANNEL_MEMBER_LEFT" /></summary>
  1262.         BN_CHAT_CHANNEL_MEMBER_LEFT = 630,
  1263.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_CHAT_CHANNEL_MEMBER_UPDATED" /></summary>
  1264.         BN_CHAT_CHANNEL_MEMBER_UPDATED = 631,
  1265.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_CHAT_CHANNEL_CREATE_SUCCEEDED" /></summary>
  1266.         BN_CHAT_CHANNEL_CREATE_SUCCEEDED = 632,
  1267.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_CHAT_CHANNEL_CREATE_FAILED" /></summary>
  1268.         BN_CHAT_CHANNEL_CREATE_FAILED = 633,
  1269.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_CHAT_CHANNEL_INVITE_SUCCEEDED" /></summary>
  1270.         BN_CHAT_CHANNEL_INVITE_SUCCEEDED = 634,
  1271.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_CHAT_CHANNEL_INVITE_FAILED" /></summary>
  1272.         BN_CHAT_CHANNEL_INVITE_FAILED = 635,
  1273.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_BLOCK_LIST_UPDATED" /></summary>
  1274.         BN_BLOCK_LIST_UPDATED = 636,
  1275.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_SYSTEM_MESSAGE" /></summary>
  1276.         BN_SYSTEM_MESSAGE = 637,
  1277.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_REQUEST_FOF_SUCCEEDED" /></summary>
  1278.         BN_REQUEST_FOF_SUCCEEDED = 638,
  1279.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_REQUEST_FOF_FAILED" /></summary>
  1280.         BN_REQUEST_FOF_FAILED = 639,
  1281.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_NEW_PRESENCE" /></summary>
  1282.         BN_NEW_PRESENCE = 640,
  1283.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_TOON_NAME_UPDATED" /></summary>
  1284.         BN_TOON_NAME_UPDATED = 641,
  1285.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_FRIEND_ACCOUNT_ONLINE" /></summary>
  1286.         BN_FRIEND_ACCOUNT_ONLINE = 642,
  1287.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_FRIEND_ACCOUNT_OFFLINE" /></summary>
  1288.         BN_FRIEND_ACCOUNT_OFFLINE = 643,
  1289.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_FRIEND_TOON_ONLINE" /></summary>
  1290.         BN_FRIEND_TOON_ONLINE = 644,
  1291.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_FRIEND_TOON_OFFLINE" /></summary>
  1292.         BN_FRIEND_TOON_OFFLINE = 645,
  1293.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_MATURE_LANGUAGE_FILTER" /></summary>
  1294.         BN_MATURE_LANGUAGE_FILTER = 646,
  1295.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BATTLETAG_INVITE_SHOW" /></summary>
  1296.         BATTLETAG_INVITE_SHOW = 647,
  1297.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MASTERY_UPDATE" /></summary>
  1298.         MASTERY_UPDATE = 648,
  1299.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/AMPLIFY_UPDATE" /></summary>
  1300.         AMPLIFY_UPDATE = 649,
  1301.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MULTISTRIKE_UPDATE" /></summary>
  1302.         MULTISTRIKE_UPDATE = 650,
  1303.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/READINESS_UPDATE" /></summary>
  1304.         READINESS_UPDATE = 651,
  1305.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SPEED_UPDATE" /></summary>
  1306.         SPEED_UPDATE = 652,
  1307.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LIFESTEAL_UPDATE" /></summary>
  1308.         LIFESTEAL_UPDATE = 653,
  1309.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/AVOIDANCE_UPDATE" /></summary>
  1310.         AVOIDANCE_UPDATE = 654,
  1311.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/STURDINESS_UPDATE" /></summary>
  1312.         STURDINESS_UPDATE = 655,
  1313.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CLEAVE_UPDATE" /></summary>
  1314.         CLEAVE_UPDATE = 656,
  1315.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/COMMENTATOR_PARTY_INFO_REQUEST" /></summary>
  1316.         COMMENTATOR_PARTY_INFO_REQUEST = 657,
  1317.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_BN_INLINE_TOAST_ALERT" /></summary>
  1318.         CHAT_MSG_BN_INLINE_TOAST_ALERT = 658,
  1319.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_BN_INLINE_TOAST_BROADCAST" /></summary>
  1320.         CHAT_MSG_BN_INLINE_TOAST_BROADCAST = 659,
  1321.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_BN_INLINE_TOAST_BROADCAST_INFORM" /></summary>
  1322.         CHAT_MSG_BN_INLINE_TOAST_BROADCAST_INFORM = 660,
  1323.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_BN_INLINE_TOAST_CONVERSATION" /></summary>
  1324.         CHAT_MSG_BN_INLINE_TOAST_CONVERSATION = 661,
  1325.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_BN_WHISPER_PLAYER_OFFLINE" /></summary>
  1326.         CHAT_MSG_BN_WHISPER_PLAYER_OFFLINE = 662,
  1327.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_TRADE_CURRENCY" /></summary>
  1328.         PLAYER_TRADE_CURRENCY = 663,
  1329.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRADE_CURRENCY_CHANGED" /></summary>
  1330.         TRADE_CURRENCY_CHANGED = 664,
  1331.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/WEIGHTED_SPELL_UPDATED" /></summary>
  1332.         WEIGHTED_SPELL_UPDATED = 665,
  1333.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILD_XP_UPDATE" /></summary>
  1334.         GUILD_XP_UPDATE = 666,
  1335.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILD_PERK_UPDATE" /></summary>
  1336.         GUILD_PERK_UPDATE = 667,
  1337.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILD_TRADESKILL_UPDATE" /></summary>
  1338.         GUILD_TRADESKILL_UPDATE = 668,
  1339.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_POWER" /></summary>
  1340.         UNIT_POWER = 669,
  1341.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_POWER_FREQUENT" /></summary>
  1342.         UNIT_POWER_FREQUENT = 670,
  1343.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_MAXPOWER" /></summary>
  1344.         UNIT_MAXPOWER = 671,
  1345.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ENABLE_DECLINE_GUILD_INVITE" /></summary>
  1346.         ENABLE_DECLINE_GUILD_INVITE = 672,
  1347.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/DISABLE_DECLINE_GUILD_INVITE" /></summary>
  1348.         DISABLE_DECLINE_GUILD_INVITE = 673,
  1349.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILD_RECIPE_KNOWN_BY_MEMBERS" /></summary>
  1350.         GUILD_RECIPE_KNOWN_BY_MEMBERS = 674,
  1351.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ARTIFACT_UPDATE" /></summary>
  1352.         ARTIFACT_UPDATE = 675,
  1353.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ARTIFACT_HISTORY_READY" /></summary>
  1354.         ARTIFACT_HISTORY_READY = 676,
  1355.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ARTIFACT_COMPLETE" /></summary>
  1356.         ARTIFACT_COMPLETE = 677,
  1357.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ARTIFACT_DIG_SITE_UPDATED" /></summary>
  1358.         ARTIFACT_DIG_SITE_UPDATED = 678,
  1359.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ARCHAEOLOGY_TOGGLE" /></summary>
  1360.         ARCHAEOLOGY_TOGGLE = 679,
  1361.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ARCHAEOLOGY_CLOSED" /></summary>
  1362.         ARCHAEOLOGY_CLOSED = 680,
  1363.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ARTIFACT_DIGSITE_COMPLETE" /></summary>
  1364.         ARTIFACT_DIGSITE_COMPLETE = 681,
  1365.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ARCHAEOLOGY_FIND_COMPLETE" /></summary>
  1366.         ARCHAEOLOGY_FIND_COMPLETE = 682,
  1367.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ARCHAEOLOGY_SURVEY_CAST" /></summary>
  1368.         ARCHAEOLOGY_SURVEY_CAST = 683,
  1369.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SPELL_FLYOUT_UPDATE" /></summary>
  1370.         SPELL_FLYOUT_UPDATE = 684,
  1371.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_CONNECTION" /></summary>
  1372.         UNIT_CONNECTION = 685,
  1373.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_HEAL_PREDICTION" /></summary>
  1374.         UNIT_HEAL_PREDICTION = 686,
  1375.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ENTERED_DIFFERENT_INSTANCE_FROM_PARTY" /></summary>
  1376.         ENTERED_DIFFERENT_INSTANCE_FROM_PARTY = 687,
  1377.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ROLE_CHANGED_INFORM" /></summary>
  1378.         ROLE_CHANGED_INFORM = 688,
  1379.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILD_REWARDS_LIST" /></summary>
  1380.         GUILD_REWARDS_LIST = 689,
  1381.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ROLE_POLL_BEGIN" /></summary>
  1382.         ROLE_POLL_BEGIN = 690,
  1383.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/REQUEST_CEMETERY_LIST_RESPONSE" /></summary>
  1384.         REQUEST_CEMETERY_LIST_RESPONSE = 691,
  1385.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/WARGAME_REQUESTED" /></summary>
  1386.         WARGAME_REQUESTED = 692,
  1387.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILD_NEWS_UPDATE" /></summary>
  1388.         GUILD_NEWS_UPDATE = 693,
  1389.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_SERVER_DISCONNECTED" /></summary>
  1390.         CHAT_SERVER_DISCONNECTED = 694,
  1391.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_SERVER_RECONNECTED" /></summary>
  1392.         CHAT_SERVER_RECONNECTED = 695,
  1393.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/STREAMING_ICON" /></summary>
  1394.         STREAMING_ICON = 696,
  1395.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/RECEIVED_ACHIEVEMENT_MEMBER_LIST" /></summary>
  1396.         RECEIVED_ACHIEVEMENT_MEMBER_LIST = 697,
  1397.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SPELL_ACTIVATION_OVERLAY_SHOW" /></summary>
  1398.         SPELL_ACTIVATION_OVERLAY_SHOW = 698,
  1399.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SPELL_ACTIVATION_OVERLAY_HIDE" /></summary>
  1400.         SPELL_ACTIVATION_OVERLAY_HIDE = 699,
  1401.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SPELL_ACTIVATION_OVERLAY_GLOW_SHOW" /></summary>
  1402.         SPELL_ACTIVATION_OVERLAY_GLOW_SHOW = 700,
  1403.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SPELL_ACTIVATION_OVERLAY_GLOW_HIDE" /></summary>
  1404.         SPELL_ACTIVATION_OVERLAY_GLOW_HIDE = 701,
  1405.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_PHASE" /></summary>
  1406.         UNIT_PHASE = 702,
  1407.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_POWER_BAR_SHOW" /></summary>
  1408.         UNIT_POWER_BAR_SHOW = 703,
  1409.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_POWER_BAR_HIDE" /></summary>
  1410.         UNIT_POWER_BAR_HIDE = 704,
  1411.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_POWER_BAR_TIMER_UPDATE" /></summary>
  1412.         UNIT_POWER_BAR_TIMER_UPDATE = 705,
  1413.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILD_RANKS_UPDATE" /></summary>
  1414.         GUILD_RANKS_UPDATE = 706,
  1415.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PVP_RATED_STATS_UPDATE" /></summary>
  1416.         PVP_RATED_STATS_UPDATE = 707,
  1417.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PVP_REWARDS_UPDATE" /></summary>
  1418.         PVP_REWARDS_UPDATE = 708,
  1419.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAT_MSG_COMBAT_GUILD_XP_GAIN" /></summary>
  1420.         CHAT_MSG_COMBAT_GUILD_XP_GAIN = 709,
  1421.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_GUILD_LEVEL" /></summary>
  1422.         UNIT_GUILD_LEVEL = 710,
  1423.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILD_PARTY_STATE_UPDATED" /></summary>
  1424.         GUILD_PARTY_STATE_UPDATED = 711,
  1425.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GET_ITEM_INFO_RECEIVED" /></summary>
  1426.         GET_ITEM_INFO_RECEIVED = 712,
  1427.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MAX_SPELL_START_RECOVERY_OFFSET_CHANGED" /></summary>
  1428.         MAX_SPELL_START_RECOVERY_OFFSET_CHANGED = 713,
  1429.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_HEALTH_FREQUENT" /></summary>
  1430.         UNIT_HEALTH_FREQUENT = 714,
  1431.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILD_REP_UPDATED" /></summary>
  1432.         GUILD_REP_UPDATED = 715,
  1433.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_BLOCK_FAILED_TOO_MANY" /></summary>
  1434.         BN_BLOCK_FAILED_TOO_MANY = 716,
  1435.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SPELL_PUSHED_TO_ACTIONBAR" /></summary>
  1436.         SPELL_PUSHED_TO_ACTIONBAR = 717,
  1437.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/START_TIMER" /></summary>
  1438.         START_TIMER = 718,
  1439.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LF_GUILD_POST_UPDATED" /></summary>
  1440.         LF_GUILD_POST_UPDATED = 719,
  1441.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LF_GUILD_BROWSE_UPDATED" /></summary>
  1442.         LF_GUILD_BROWSE_UPDATED = 720,
  1443.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LF_GUILD_RECRUITS_UPDATED" /></summary>
  1444.         LF_GUILD_RECRUITS_UPDATED = 721,
  1445.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LF_GUILD_MEMBERSHIP_LIST_UPDATED" /></summary>
  1446.         LF_GUILD_MEMBERSHIP_LIST_UPDATED = 722,
  1447.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LF_GUILD_RECRUIT_LIST_CHANGED" /></summary>
  1448.         LF_GUILD_RECRUIT_LIST_CHANGED = 723,
  1449.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LF_GUILD_MEMBERSHIP_LIST_CHANGED" /></summary>
  1450.         LF_GUILD_MEMBERSHIP_LIST_CHANGED = 724,
  1451.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILD_CHALLENGE_UPDATED" /></summary>
  1452.         GUILD_CHALLENGE_UPDATED = 725,
  1453.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILD_CHALLENGE_COMPLETED" /></summary>
  1454.         GUILD_CHALLENGE_COMPLETED = 726,
  1455.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/RESTRICTED_ACCOUNT_WARNING" /></summary>
  1456.         RESTRICTED_ACCOUNT_WARNING = 727,
  1457.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/EJ_LOOT_DATA_RECIEVED" /></summary>
  1458.         EJ_LOOT_DATA_RECIEVED = 728,
  1459.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/EJ_DIFFICULTY_UPDATE" /></summary>
  1460.         EJ_DIFFICULTY_UPDATE = 729,
  1461.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/COMPACT_UNIT_FRAME_PROFILES_LOADED" /></summary>
  1462.         COMPACT_UNIT_FRAME_PROFILES_LOADED = 730,
  1463.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CONFIRM_BEFORE_USE" /></summary>
  1464.         CONFIRM_BEFORE_USE = 731,
  1465.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CLEAR_BOSS_EMOTES" /></summary>
  1466.         CLEAR_BOSS_EMOTES = 732,
  1467.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/INCOMING_RESURRECT_CHANGED" /></summary>
  1468.         INCOMING_RESURRECT_CHANGED = 733,
  1469.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRIAL_CAP_REACHED_MONEY" /></summary>
  1470.         TRIAL_CAP_REACHED_MONEY = 734,
  1471.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRIAL_CAP_REACHED_LEVEL" /></summary>
  1472.         TRIAL_CAP_REACHED_LEVEL = 735,
  1473.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/REQUIRED_GUILD_RENAME_RESULT" /></summary>
  1474.         REQUIRED_GUILD_RENAME_RESULT = 736,
  1475.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GUILD_RENAME_REQUIRED" /></summary>
  1476.         GUILD_RENAME_REQUIRED = 737,
  1477.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ECLIPSE_DIRECTION_CHANGE" /></summary>
  1478.         ECLIPSE_DIRECTION_CHANGE = 738,
  1479.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRANSMOGRIFY_OPEN" /></summary>
  1480.         TRANSMOGRIFY_OPEN = 739,
  1481.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRANSMOGRIFY_CLOSE" /></summary>
  1482.         TRANSMOGRIFY_CLOSE = 740,
  1483.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRANSMOGRIFY_UPDATE" /></summary>
  1484.         TRANSMOGRIFY_UPDATE = 741,
  1485.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRANSMOGRIFY_SUCCESS" /></summary>
  1486.         TRANSMOGRIFY_SUCCESS = 742,
  1487.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TRANSMOGRIFY_BIND_CONFIRM" /></summary>
  1488.         TRANSMOGRIFY_BIND_CONFIRM = 743,
  1489.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VOID_STORAGE_OPEN" /></summary>
  1490.         VOID_STORAGE_OPEN = 744,
  1491.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VOID_STORAGE_CLOSE" /></summary>
  1492.         VOID_STORAGE_CLOSE = 745,
  1493.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VOID_STORAGE_UPDATE" /></summary>
  1494.         VOID_STORAGE_UPDATE = 746,
  1495.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VOID_STORAGE_CONTENTS_UPDATE" /></summary>
  1496.         VOID_STORAGE_CONTENTS_UPDATE = 747,
  1497.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VOID_STORAGE_DEPOSIT_UPDATE" /></summary>
  1498.         VOID_STORAGE_DEPOSIT_UPDATE = 748,
  1499.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VOID_TRANSFER_DONE" /></summary>
  1500.         VOID_TRANSFER_DONE = 749,
  1501.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VOID_DEPOSIT_WARNING" /></summary>
  1502.         VOID_DEPOSIT_WARNING = 750,
  1503.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/INVENTORY_SEARCH_UPDATE" /></summary>
  1504.         INVENTORY_SEARCH_UPDATE = 751,
  1505.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_REPORT_SUBMITTED" /></summary>
  1506.         PLAYER_REPORT_SUBMITTED = 752,
  1507.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SOR_BY_TEXT_UPDATED" /></summary>
  1508.         SOR_BY_TEXT_UPDATED = 753,
  1509.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MISSING_OUT_ON_LOOT" /></summary>
  1510.         MISSING_OUT_ON_LOOT = 754,
  1511.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/INELIGIBLE_FOR_LOOT" /></summary>
  1512.         INELIGIBLE_FOR_LOOT = 755,
  1513.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SHOW_FACTION_SELECT_UI" /></summary>
  1514.         SHOW_FACTION_SELECT_UI = 756,
  1515.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/NEUTRAL_FACTION_SELECT_RESULT" /></summary>
  1516.         NEUTRAL_FACTION_SELECT_RESULT = 757,
  1517.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SOR_START_EXPERIENCE_INCOMPLETE" /></summary>
  1518.         SOR_START_EXPERIENCE_INCOMPLETE = 758,
  1519.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SOR_COUNTS_UPDATED" /></summary>
  1520.         SOR_COUNTS_UPDATED = 759,
  1521.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SELF_RES_SPELL_CHANGED" /></summary>
  1522.         SELF_RES_SPELL_CHANGED = 760,
  1523.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SESSION_TIME_ALERT" /></summary>
  1524.         SESSION_TIME_ALERT = 761,
  1525.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_JOURNAL_LIST_UPDATE" /></summary>
  1526.         PET_JOURNAL_LIST_UPDATE = 762,
  1527.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BATTLE_PET_CURSOR_CLEAR" /></summary>
  1528.         BATTLE_PET_CURSOR_CLEAR = 763,
  1529.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MOUNT_CURSOR_CLEAR" /></summary>
  1530.         MOUNT_CURSOR_CLEAR = 764,
  1531.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GROUP_ROSTER_UPDATE" /></summary>
  1532.         GROUP_ROSTER_UPDATE = 765,
  1533.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GROUP_JOINED" /></summary>
  1534.         GROUP_JOINED = 766,
  1535.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PVP_POWER_UPDATE" /></summary>
  1536.         PVP_POWER_UPDATE = 767,
  1537.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_OPENING_START" /></summary>
  1538.         PET_BATTLE_OPENING_START = 768,
  1539.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_OPENING_DONE" /></summary>
  1540.         PET_BATTLE_OPENING_DONE = 769,
  1541.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_HEALTH_CHANGED" /></summary>
  1542.         PET_BATTLE_HEALTH_CHANGED = 770,
  1543.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_MAX_HEALTH_CHANGED" /></summary>
  1544.         PET_BATTLE_MAX_HEALTH_CHANGED = 771,
  1545.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_TURN_STARTED" /></summary>
  1546.         PET_BATTLE_TURN_STARTED = 772,
  1547.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_PET_CHANGED" /></summary>
  1548.         PET_BATTLE_PET_CHANGED = 773,
  1549.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_ABILITY_CHANGED" /></summary>
  1550.         PET_BATTLE_ABILITY_CHANGED = 774,
  1551.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_CAPTURED" /></summary>
  1552.         PET_BATTLE_CAPTURED = 775,
  1553.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_XP_CHANGED" /></summary>
  1554.         PET_BATTLE_XP_CHANGED = 776,
  1555.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_LEVEL_CHANGED" /></summary>
  1556.         PET_BATTLE_LEVEL_CHANGED = 777,
  1557.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_FINAL_ROUND" /></summary>
  1558.         PET_BATTLE_FINAL_ROUND = 778,
  1559.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_OVER" /></summary>
  1560.         PET_BATTLE_OVER = 779,
  1561.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_CLOSE" /></summary>
  1562.         PET_BATTLE_CLOSE = 780,
  1563.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_PET_ROUND_RESULTS" /></summary>
  1564.         PET_BATTLE_PET_ROUND_RESULTS = 781,
  1565.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_PET_ROUND_PLAYBACK_COMPLETE" /></summary>
  1566.         PET_BATTLE_PET_ROUND_PLAYBACK_COMPLETE = 782,
  1567.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_ACTION_SELECTED" /></summary>
  1568.         PET_BATTLE_ACTION_SELECTED = 783,
  1569.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_AURA_APPLIED" /></summary>
  1570.         PET_BATTLE_AURA_APPLIED = 784,
  1571.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_AURA_CHANGED" /></summary>
  1572.         PET_BATTLE_AURA_CHANGED = 785,
  1573.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_AURA_CANCELED" /></summary>
  1574.         PET_BATTLE_AURA_CANCELED = 786,
  1575.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_PVP_DUEL_REQUESTED" /></summary>
  1576.         PET_BATTLE_PVP_DUEL_REQUESTED = 787,
  1577.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_PVP_DUEL_REQUEST_CANCEL" /></summary>
  1578.         PET_BATTLE_PVP_DUEL_REQUEST_CANCEL = 788,
  1579.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_QUEUE_PROPOSE_MATCH" /></summary>
  1580.         PET_BATTLE_QUEUE_PROPOSE_MATCH = 789,
  1581.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_QUEUE_PROPOSAL_DECLINED" /></summary>
  1582.         PET_BATTLE_QUEUE_PROPOSAL_DECLINED = 790,
  1583.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_QUEUE_PROPOSAL_ACCEPTED" /></summary>
  1584.         PET_BATTLE_QUEUE_PROPOSAL_ACCEPTED = 791,
  1585.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_PET_TYPE_CHANGED" /></summary>
  1586.         PET_BATTLE_PET_TYPE_CHANGED = 792,
  1587.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHALLENGE_MODE_MAPS_UPDATE" /></summary>
  1588.         CHALLENGE_MODE_MAPS_UPDATE = 793,
  1589.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHALLENGE_MODE_START" /></summary>
  1590.         CHALLENGE_MODE_START = 794,
  1591.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHALLENGE_MODE_RESET" /></summary>
  1592.         CHALLENGE_MODE_RESET = 795,
  1593.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHALLENGE_MODE_COMPLETED" /></summary>
  1594.         CHALLENGE_MODE_COMPLETED = 796,
  1595.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHALLENGE_MODE_NEW_RECORD" /></summary>
  1596.         CHALLENGE_MODE_NEW_RECORD = 797,
  1597.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHALLENGE_MODE_LEADERS_UPDATE" /></summary>
  1598.         CHALLENGE_MODE_LEADERS_UPDATE = 798,
  1599.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SPELL_CONFIRMATION_PROMPT" /></summary>
  1600.         SPELL_CONFIRMATION_PROMPT = 799,
  1601.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SPELL_CONFIRMATION_TIMEOUT" /></summary>
  1602.         SPELL_CONFIRMATION_TIMEOUT = 800,
  1603.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BONUS_ROLL_ACTIVATE" /></summary>
  1604.         BONUS_ROLL_ACTIVATE = 801,
  1605.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BONUS_ROLL_DEACTIVATE" /></summary>
  1606.         BONUS_ROLL_DEACTIVATE = 802,
  1607.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BONUS_ROLL_STARTED" /></summary>
  1608.         BONUS_ROLL_STARTED = 803,
  1609.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BONUS_ROLL_FAILED" /></summary>
  1610.         BONUS_ROLL_FAILED = 804,
  1611.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BONUS_ROLL_RESULT" /></summary>
  1612.         BONUS_ROLL_RESULT = 805,
  1613.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SHOW_LOOT_TOAST" /></summary>
  1614.         SHOW_LOOT_TOAST = 806,
  1615.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SHOW_LOOT_TOAST_UPGRADE" /></summary>
  1616.         SHOW_LOOT_TOAST_UPGRADE = 807,
  1617.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SHOW_PVP_FACTION_LOOT_TOAST" /></summary>
  1618.         SHOW_PVP_FACTION_LOOT_TOAST = 808,
  1619.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BLACK_MARKET_OPEN" /></summary>
  1620.         BLACK_MARKET_OPEN = 809,
  1621.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BLACK_MARKET_CLOSE" /></summary>
  1622.         BLACK_MARKET_CLOSE = 810,
  1623.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BLACK_MARKET_UNAVAILABLE" /></summary>
  1624.         BLACK_MARKET_UNAVAILABLE = 811,
  1625.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BLACK_MARKET_ITEM_UPDATE" /></summary>
  1626.         BLACK_MARKET_ITEM_UPDATE = 812,
  1627.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BLACK_MARKET_BID_RESULT" /></summary>
  1628.         BLACK_MARKET_BID_RESULT = 813,
  1629.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BLACK_MARKET_OUTBID" /></summary>
  1630.         BLACK_MARKET_OUTBID = 814,
  1631.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BLACK_MARKET_WON" /></summary>
  1632.         BLACK_MARKET_WON = 815,
  1633.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/QUICK_TICKET_SYSTEM_STATUS" /></summary>
  1634.         QUICK_TICKET_SYSTEM_STATUS = 816,
  1635.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ITEM_RESTORATION_BUTTON_STATUS" /></summary>
  1636.         ITEM_RESTORATION_BUTTON_STATUS = 817,
  1637.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/QUICK_TICKET_THROTTLE_CHANGED" /></summary>
  1638.         QUICK_TICKET_THROTTLE_CHANGED = 818,
  1639.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LOOT_ITEM_AVAILABLE" /></summary>
  1640.         LOOT_ITEM_AVAILABLE = 819,
  1641.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LOOT_ROLLS_COMPLETE" /></summary>
  1642.         LOOT_ROLLS_COMPLETE = 820,
  1643.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LOOT_ITEM_ROLL_WON" /></summary>
  1644.         LOOT_ITEM_ROLL_WON = 821,
  1645.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SCENARIO_UPDATE" /></summary>
  1646.         SCENARIO_UPDATE = 822,
  1647.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SCENARIO_CRITERIA_UPDATE" /></summary>
  1648.         SCENARIO_CRITERIA_UPDATE = 823,
  1649.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SCENARIO_POI_UPDATE" /></summary>
  1650.         SCENARIO_POI_UPDATE = 824,
  1651.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SCENARIO_COMPLETED" /></summary>
  1652.         SCENARIO_COMPLETED = 825,
  1653.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_JOURNAL_PET_DELETED" /></summary>
  1654.         PET_JOURNAL_PET_DELETED = 826,
  1655.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_JOURNAL_PET_REVOKED" /></summary>
  1656.         PET_JOURNAL_PET_REVOKED = 827,
  1657.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_JOURNAL_PET_RESTORED" /></summary>
  1658.         PET_JOURNAL_PET_RESTORED = 828,
  1659.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_JOURNAL_CAGE_FAILED" /></summary>
  1660.         PET_JOURNAL_CAGE_FAILED = 829,
  1661.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LOOT_HISTORY_FULL_UPDATE" /></summary>
  1662.         LOOT_HISTORY_FULL_UPDATE = 830,
  1663.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LOOT_HISTORY_ROLL_COMPLETE" /></summary>
  1664.         LOOT_HISTORY_ROLL_COMPLETE = 831,
  1665.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LOOT_HISTORY_ROLL_CHANGED" /></summary>
  1666.         LOOT_HISTORY_ROLL_CHANGED = 832,
  1667.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LOOT_HISTORY_AUTO_SHOW" /></summary>
  1668.         LOOT_HISTORY_AUTO_SHOW = 833,
  1669.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ITEM_UPGRADE_MASTER_OPENED" /></summary>
  1670.         ITEM_UPGRADE_MASTER_OPENED = 834,
  1671.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ITEM_UPGRADE_MASTER_CLOSED" /></summary>
  1672.         ITEM_UPGRADE_MASTER_CLOSED = 835,
  1673.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ITEM_UPGRADE_MASTER_SET_ITEM" /></summary>
  1674.         ITEM_UPGRADE_MASTER_SET_ITEM = 836,
  1675.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ITEM_UPGRADE_MASTER_UPDATE" /></summary>
  1676.         ITEM_UPGRADE_MASTER_UPDATE = 837,
  1677.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_JOURNAL_PETS_HEALED" /></summary>
  1678.         PET_JOURNAL_PETS_HEALED = 838,
  1679.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_JOURNAL_NEW_BATTLE_SLOT" /></summary>
  1680.         PET_JOURNAL_NEW_BATTLE_SLOT = 839,
  1681.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_JOURNAL_TRAP_LEVEL_SET" /></summary>
  1682.         PET_JOURNAL_TRAP_LEVEL_SET = 840,
  1683.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_OTHER_PARTY_CHANGED" /></summary>
  1684.         UNIT_OTHER_PARTY_CHANGED = 841,
  1685.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ARENA_PREP_OPPONENT_SPECIALIZATIONS" /></summary>
  1686.         ARENA_PREP_OPPONENT_SPECIALIZATIONS = 842,
  1687.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_JOURNAL_AUTO_SLOTTED_PET" /></summary>
  1688.         PET_JOURNAL_AUTO_SLOTTED_PET = 843,
  1689.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_QUEUE_STATUS" /></summary>
  1690.         PET_BATTLE_QUEUE_STATUS = 844,
  1691.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SPELL_POWER_CHANGED" /></summary>
  1692.         SPELL_POWER_CHANGED = 845,
  1693.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SCRIPT_ACHIEVEMENT_PLAYER_NAME" /></summary>
  1694.         SCRIPT_ACHIEVEMENT_PLAYER_NAME = 846,
  1695.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/NEW_WMO_CHUNK" /></summary>
  1696.         NEW_WMO_CHUNK = 847,
  1697.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PET_BATTLE_LOOT_RECEIVED" /></summary>
  1698.         PET_BATTLE_LOOT_RECEIVED = 848,
  1699.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LOSS_OF_CONTROL_ADDED" /></summary>
  1700.         LOSS_OF_CONTROL_ADDED = 849,
  1701.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LOSS_OF_CONTROL_UPDATE" /></summary>
  1702.         LOSS_OF_CONTROL_UPDATE = 850,
  1703.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/QUEST_CHOICE_UPDATE" /></summary>
  1704.         QUEST_CHOICE_UPDATE = 851,
  1705.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/QUEST_CHOICE_CLOSE" /></summary>
  1706.         QUEST_CHOICE_CLOSE = 852,
  1707.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BATTLEPET_FORCE_NAME_DECLENSION" /></summary>
  1708.         BATTLEPET_FORCE_NAME_DECLENSION = 853,
  1709.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_ABSORB_AMOUNT_CHANGED" /></summary>
  1710.         UNIT_ABSORB_AMOUNT_CHANGED = 854,
  1711.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UNIT_HEAL_ABSORB_AMOUNT_CHANGED" /></summary>
  1712.         UNIT_HEAL_ABSORB_AMOUNT_CHANGED = 855,
  1713.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LFG_BONUS_FACTION_ID_UPDATED" /></summary>
  1714.         LFG_BONUS_FACTION_ID_UPDATED = 856,
  1715.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MAP_BAR_UPDATE" /></summary>
  1716.         MAP_BAR_UPDATE = 857,
  1717.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LOADING_SCREEN_ENABLED" /></summary>
  1718.         LOADING_SCREEN_ENABLED = 858,
  1719.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LOADING_SCREEN_DISABLED" /></summary>
  1720.         LOADING_SCREEN_DISABLED = 859,
  1721.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BATTLEGROUND_POINTS_UPDATE" /></summary>
  1722.         BATTLEGROUND_POINTS_UPDATE = 860,
  1723.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BATTLEGROUND_OBJECTIVES_UPDATE" /></summary>
  1724.         BATTLEGROUND_OBJECTIVES_UPDATE = 861,
  1725.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_LOOT_SPEC_UPDATED" /></summary>
  1726.         PLAYER_LOOT_SPEC_UPDATED = 862,
  1727.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PVP_ROLE_UPDATE" /></summary>
  1728.         PVP_ROLE_UPDATE = 863,
  1729.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SIMPLE_BROWSER_WEB_PROXY_FAILED" /></summary>
  1730.         SIMPLE_BROWSER_WEB_PROXY_FAILED = 864,
  1731.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SIMPLE_BROWSER_WEB_ERROR" /></summary>
  1732.         SIMPLE_BROWSER_WEB_ERROR = 865,
  1733.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VIGNETTE_ADDED" /></summary>
  1734.         VIGNETTE_ADDED = 866,
  1735.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/VIGNETTE_REMOVED" /></summary>
  1736.         VIGNETTE_REMOVED = 867,
  1737.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ENCOUNTER_START" /></summary>
  1738.         ENCOUNTER_START = 868,
  1739.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ENCOUNTER_END" /></summary>
  1740.         ENCOUNTER_END = 869,
  1741.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BOSS_KILL" /></summary>
  1742.         BOSS_KILL = 870,
  1743.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/INSTANCE_GROUP_SIZE_CHANGED" /></summary>
  1744.         INSTANCE_GROUP_SIZE_CHANGED = 871,
  1745.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SUPER_TRACKED_QUEST_CHANGED" /></summary>
  1746.         SUPER_TRACKED_QUEST_CHANGED = 872,
  1747.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PROVING_GROUNDS_SCORE_UPDATE" /></summary>
  1748.         PROVING_GROUNDS_SCORE_UPDATE = 873,
  1749.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PRODUCT_CHOICE_UPDATE" /></summary>
  1750.         PRODUCT_CHOICE_UPDATE = 874,
  1751.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/RECRUIT_A_FRIEND_SYSTEM_STATUS" /></summary>
  1752.         RECRUIT_A_FRIEND_SYSTEM_STATUS = 875,
  1753.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_STARTED_MOVING" /></summary>
  1754.         PLAYER_STARTED_MOVING = 876,
  1755.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_STOPPED_MOVING" /></summary>
  1756.         PLAYER_STOPPED_MOVING = 877,
  1757.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/RECRUIT_A_FRIEND_INVITATION_FAILED" /></summary>
  1758.         RECRUIT_A_FRIEND_INVITATION_FAILED = 878,
  1759.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/RECRUIT_A_FRIEND_INVITER_FRIEND_ADDED" /></summary>
  1760.         RECRUIT_A_FRIEND_INVITER_FRIEND_ADDED = 879,
  1761.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/RECRUIT_A_FRIEND_CAN_EMAIL" /></summary>
  1762.         RECRUIT_A_FRIEND_CAN_EMAIL = 880,
  1763.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LUA_WARNING" /></summary>
  1764.         LUA_WARNING = 881,
  1765.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/BN_CHAT_MSG_ADDON" /></summary>
  1766.         BN_CHAT_MSG_ADDON = 882,
  1767.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/MOUNT_JOURNAL_USABILITY_CHANGED" /></summary>
  1768.         MOUNT_JOURNAL_USABILITY_CHANGED = 883,
  1769.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/QUEST_REMOVED" /></summary>
  1770.         QUEST_REMOVED = 884,
  1771.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TASK_PROGRESS_UPDATE" /></summary>
  1772.         TASK_PROGRESS_UPDATE = 885,
  1773.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_UPDATE" /></summary>
  1774.         GARRISON_UPDATE = 886,
  1775.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_BUILDING_UPDATE" /></summary>
  1776.         GARRISON_BUILDING_UPDATE = 887,
  1777.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_BUILDING_PLACED" /></summary>
  1778.         GARRISON_BUILDING_PLACED = 888,
  1779.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_BUILDING_REMOVED" /></summary>
  1780.         GARRISON_BUILDING_REMOVED = 889,
  1781.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_BUILDING_LIST_UPDATE" /></summary>
  1782.         GARRISON_BUILDING_LIST_UPDATE = 890,
  1783.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_BUILDING_ERROR" /></summary>
  1784.         GARRISON_BUILDING_ERROR = 891,
  1785.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_ARCHITECT_OPENED" /></summary>
  1786.         GARRISON_ARCHITECT_OPENED = 892,
  1787.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_ARCHITECT_CLOSED" /></summary>
  1788.         GARRISON_ARCHITECT_CLOSED = 893,
  1789.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_MISSION_NPC_OPENED" /></summary>
  1790.         GARRISON_MISSION_NPC_OPENED = 894,
  1791.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_MISSION_NPC_CLOSED" /></summary>
  1792.         GARRISON_MISSION_NPC_CLOSED = 895,
  1793.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_BUILDING_ACTIVATED" /></summary>
  1794.         GARRISON_BUILDING_ACTIVATED = 896,
  1795.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_BUILDING_ACTIVATABLE" /></summary>
  1796.         GARRISON_BUILDING_ACTIVATABLE = 897,
  1797.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_MISSION_LIST_UPDATE" /></summary>
  1798.         GARRISON_MISSION_LIST_UPDATE = 898,
  1799.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_MISSION_STARTED" /></summary>
  1800.         GARRISON_MISSION_STARTED = 899,
  1801.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_MISSION_COMPLETE_RESPONSE" /></summary>
  1802.         GARRISON_MISSION_COMPLETE_RESPONSE = 900,
  1803.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_MISSION_FINISHED" /></summary>
  1804.         GARRISON_MISSION_FINISHED = 901,
  1805.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_MISSION_BONUS_ROLL_COMPLETE" /></summary>
  1806.         GARRISON_MISSION_BONUS_ROLL_COMPLETE = 902,
  1807.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_MISSION_BONUS_ROLL_LOOT" /></summary>
  1808.         GARRISON_MISSION_BONUS_ROLL_LOOT = 903,
  1809.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_RANDOM_MISSION_ADDED" /></summary>
  1810.         GARRISON_RANDOM_MISSION_ADDED = 904,
  1811.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_FOLLOWER_LIST_UPDATE" /></summary>
  1812.         GARRISON_FOLLOWER_LIST_UPDATE = 905,
  1813.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_FOLLOWER_ADDED" /></summary>
  1814.         GARRISON_FOLLOWER_ADDED = 906,
  1815.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_FOLLOWER_REMOVED" /></summary>
  1816.         GARRISON_FOLLOWER_REMOVED = 907,
  1817.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_FOLLOWER_XP_CHANGED" /></summary>
  1818.         GARRISON_FOLLOWER_XP_CHANGED = 908,
  1819.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_SHOW_LANDING_PAGE" /></summary>
  1820.         GARRISON_SHOW_LANDING_PAGE = 909,
  1821.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_HIDE_LANDING_PAGE" /></summary>
  1822.         GARRISON_HIDE_LANDING_PAGE = 910,
  1823.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_LANDINGPAGE_SHIPMENTS" /></summary>
  1824.         GARRISON_LANDINGPAGE_SHIPMENTS = 911,
  1825.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SHIPMENT_CRAFTER_OPENED" /></summary>
  1826.         SHIPMENT_CRAFTER_OPENED = 912,
  1827.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SHIPMENT_CRAFTER_CLOSED" /></summary>
  1828.         SHIPMENT_CRAFTER_CLOSED = 913,
  1829.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SHIPMENT_CRAFTER_INFO" /></summary>
  1830.         SHIPMENT_CRAFTER_INFO = 914,
  1831.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SHIPMENT_CRAFTER_REAGENT_UPDATE" /></summary>
  1832.         SHIPMENT_CRAFTER_REAGENT_UPDATE = 915,
  1833.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SHIPMENT_UPDATE" /></summary>
  1834.         SHIPMENT_UPDATE = 916,
  1835.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_SHIPMENT_RECEIVED" /></summary>
  1836.         GARRISON_SHIPMENT_RECEIVED = 917,
  1837.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_RECRUITMENT_NPC_OPENED" /></summary>
  1838.         GARRISON_RECRUITMENT_NPC_OPENED = 918,
  1839.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_RECRUITMENT_NPC_CLOSED" /></summary>
  1840.         GARRISON_RECRUITMENT_NPC_CLOSED = 919,
  1841.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_RECRUITMENT_FOLLOWERS_GENERATED" /></summary>
  1842.         GARRISON_RECRUITMENT_FOLLOWERS_GENERATED = 920,
  1843.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_RECRUITMENT_READY" /></summary>
  1844.         GARRISON_RECRUITMENT_READY = 921,
  1845.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_RECRUIT_FOLLOWER_RESULT" /></summary>
  1846.         GARRISON_RECRUIT_FOLLOWER_RESULT = 922,
  1847.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_FOLLOWER_UPGRADED" /></summary>
  1848.         GARRISON_FOLLOWER_UPGRADED = 923,
  1849.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_MONUMENT_SHOW_UI" /></summary>
  1850.         GARRISON_MONUMENT_SHOW_UI = 924,
  1851.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_MONUMENT_CLOSE_UI" /></summary>
  1852.         GARRISON_MONUMENT_CLOSE_UI = 925,
  1853.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_MONUMENT_LIST_LOADED" /></summary>
  1854.         GARRISON_MONUMENT_LIST_LOADED = 926,
  1855.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_MONUMENT_REPLACED" /></summary>
  1856.         GARRISON_MONUMENT_REPLACED = 927,
  1857.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/QUESTLINE_UPDATE" /></summary>
  1858.         QUESTLINE_UPDATE = 928,
  1859.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/QUESTTASK_UPDATE" /></summary>
  1860.         QUESTTASK_UPDATE = 929,
  1861.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_TRADESKILL_NPC_CLOSED" /></summary>
  1862.         GARRISON_TRADESKILL_NPC_CLOSED = 930,
  1863.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TOYS_UPDATED" /></summary>
  1864.         TOYS_UPDATED = 931,
  1865.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/HEIRLOOMS_UPDATED" /></summary>
  1866.         HEIRLOOMS_UPDATED = 932,
  1867.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/HEIRLOOM_UPGRADE_TARGETING_CHANGED" /></summary>
  1868.         HEIRLOOM_UPGRADE_TARGETING_CHANGED = 933,
  1869.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_MONUMENT_SELECTED_TROPHY_ID_LOADED" /></summary>
  1870.         GARRISON_MONUMENT_SELECTED_TROPHY_ID_LOADED = 934,
  1871.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHARACTER_UPGRADE_SPELL_TIER_SET" /></summary>
  1872.         CHARACTER_UPGRADE_SPELL_TIER_SET = 935,
  1873.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_USE_PARTY_GARRISON_CHANGED" /></summary>
  1874.         GARRISON_USE_PARTY_GARRISON_CHANGED = 936,
  1875.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_BUILDINGS_SWAPPED" /></summary>
  1876.         GARRISON_BUILDINGS_SWAPPED = 937,
  1877.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_RECALL_PORTAL_LAST_USED_TIME" /></summary>
  1878.         GARRISON_RECALL_PORTAL_LAST_USED_TIME = 938,
  1879.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_RECALL_PORTAL_USED" /></summary>
  1880.         GARRISON_RECALL_PORTAL_USED = 939,
  1881.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_INVASION_AVAILABLE" /></summary>
  1882.         GARRISON_INVASION_AVAILABLE = 940,
  1883.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_INVASION_UNAVAILABLE" /></summary>
  1884.         GARRISON_INVASION_UNAVAILABLE = 941,
  1885.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GARRISON_UPGRADEABLE_RESULT" /></summary>
  1886.         GARRISON_UPGRADEABLE_RESULT = 942,
  1887.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/HEARTHSTONE_BOUND" /></summary>
  1888.         HEARTHSTONE_BOUND = 943,
  1889.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/NPE_TUTORIAL_UPDATE" /></summary>
  1890.         NPE_TUTORIAL_UPDATE = 944,
  1891.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TWITTER_STATUS_UPDATE" /></summary>
  1892.         TWITTER_STATUS_UPDATE = 945,
  1893.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TWITTER_LINK_RESULT" /></summary>
  1894.         TWITTER_LINK_RESULT = 946,
  1895.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TWITTER_POST_RESULT" /></summary>
  1896.         TWITTER_POST_RESULT = 947,
  1897.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SOCIAL_ITEM_RECEIVED" /></summary>
  1898.         SOCIAL_ITEM_RECEIVED = 948,
  1899.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SET_GLUE_SCREEN" /></summary>
  1900.         SET_GLUE_SCREEN = 949,
  1901.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/START_GLUE_MUSIC" /></summary>
  1902.         START_GLUE_MUSIC = 950,
  1903.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/DISCONNECTED_FROM_SERVER" /></summary>
  1904.         DISCONNECTED_FROM_SERVER = 951,
  1905.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/OPEN_STATUS_DIALOG" /></summary>
  1906.         OPEN_STATUS_DIALOG = 952,
  1907.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_STATUS_DIALOG" /></summary>
  1908.         UPDATE_STATUS_DIALOG = 953,
  1909.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CLOSE_STATUS_DIALOG" /></summary>
  1910.         CLOSE_STATUS_DIALOG = 954,
  1911.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ADDON_LIST_UPDATE" /></summary>
  1912.         ADDON_LIST_UPDATE = 955,
  1913.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHARACTER_LIST_UPDATE" /></summary>
  1914.         CHARACTER_LIST_UPDATE = 956,
  1915.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_SELECTED_CHARACTER" /></summary>
  1916.         UPDATE_SELECTED_CHARACTER = 957,
  1917.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/OPEN_REALM_LIST" /></summary>
  1918.         OPEN_REALM_LIST = 958,
  1919.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GET_PREFERRED_REALM_INFO" /></summary>
  1920.         GET_PREFERRED_REALM_INFO = 959,
  1921.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UPDATE_SELECTED_RACE" /></summary>
  1922.         UPDATE_SELECTED_RACE = 960,
  1923.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SELECT_LAST_CHARACTER" /></summary>
  1924.         SELECT_LAST_CHARACTER = 961,
  1925.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SELECT_FIRST_CHARACTER" /></summary>
  1926.         SELECT_FIRST_CHARACTER = 962,
  1927.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GLUE_SCREENSHOT_SUCCEEDED" /></summary>
  1928.         GLUE_SCREENSHOT_SUCCEEDED = 963,
  1929.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GLUE_SCREENSHOT_FAILED" /></summary>
  1930.         GLUE_SCREENSHOT_FAILED = 964,
  1931.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PATCH_UPDATE_PROGRESS" /></summary>
  1932.         PATCH_UPDATE_PROGRESS = 965,
  1933.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PATCH_DOWNLOADED" /></summary>
  1934.         PATCH_DOWNLOADED = 966,
  1935.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SUGGEST_REALM" /></summary>
  1936.         SUGGEST_REALM = 967,
  1937.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SUGGEST_REALM_WRONG_PVP" /></summary>
  1938.         SUGGEST_REALM_WRONG_PVP = 968,
  1939.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SUGGEST_REALM_WRONG_CATEGORY" /></summary>
  1940.         SUGGEST_REALM_WRONG_CATEGORY = 969,
  1941.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SHOW_SERVER_ALERT" /></summary>
  1942.         SHOW_SERVER_ALERT = 970,
  1943.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/FRAMES_LOADED" /></summary>
  1944.         FRAMES_LOADED = 971,
  1945.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/FORCE_RENAME_CHARACTER" /></summary>
  1946.         FORCE_RENAME_CHARACTER = 972,
  1947.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/FORCE_DECLINE_CHARACTER" /></summary>
  1948.         FORCE_DECLINE_CHARACTER = 973,
  1949.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SHOW_SURVEY_NOTIFICATION" /></summary>
  1950.         SHOW_SURVEY_NOTIFICATION = 974,
  1951.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_ENTER_PIN" /></summary>
  1952.         PLAYER_ENTER_PIN = 975,
  1953.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CLIENT_ACCOUNT_MISMATCH" /></summary>
  1954.         CLIENT_ACCOUNT_MISMATCH = 976,
  1955.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_ENTER_MATRIX" /></summary>
  1956.         PLAYER_ENTER_MATRIX = 977,
  1957.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SCANDLL_ERROR" /></summary>
  1958.         SCANDLL_ERROR = 978,
  1959.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SCANDLL_DOWNLOADING" /></summary>
  1960.         SCANDLL_DOWNLOADING = 979,
  1961.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SCANDLL_FINISHED" /></summary>
  1962.         SCANDLL_FINISHED = 980,
  1963.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SERVER_SPLIT_NOTICE" /></summary>
  1964.         SERVER_SPLIT_NOTICE = 981,
  1965.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TIMER_ALERT" /></summary>
  1966.         TIMER_ALERT = 982,
  1967.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ACCOUNT_MESSAGES_AVAILABLE" /></summary>
  1968.         ACCOUNT_MESSAGES_AVAILABLE = 983,
  1969.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ACCOUNT_MESSAGES_HEADERS_LOADED" /></summary>
  1970.         ACCOUNT_MESSAGES_HEADERS_LOADED = 984,
  1971.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ACCOUNT_MESSAGES_BODY_LOADED" /></summary>
  1972.         ACCOUNT_MESSAGES_BODY_LOADED = 985,
  1973.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CLIENT_TRIAL" /></summary>
  1974.         CLIENT_TRIAL = 986,
  1975.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PLAYER_ENTER_TOKEN" /></summary>
  1976.         PLAYER_ENTER_TOKEN = 987,
  1977.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GAME_ACCOUNTS_UPDATED" /></summary>
  1978.         GAME_ACCOUNTS_UPDATED = 988,
  1979.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CLIENT_CONVERTED" /></summary>
  1980.         CLIENT_CONVERTED = 989,
  1981.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/RANDOM_CHARACTER_NAME_RESULT" /></summary>
  1982.         RANDOM_CHARACTER_NAME_RESULT = 990,
  1983.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ACCOUNT_DATA_INITIALIZED" /></summary>
  1984.         ACCOUNT_DATA_INITIALIZED = 991,
  1985.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/GLUE_UPDATE_EXPANSION_LEVEL" /></summary>
  1986.         GLUE_UPDATE_EXPANSION_LEVEL = 992,
  1987.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/DISPLAY_PROMOTION" /></summary>
  1988.         DISPLAY_PROMOTION = 993,
  1989.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LAUNCHER_LOGIN_STATUS_CHANGED" /></summary>
  1990.         LAUNCHER_LOGIN_STATUS_CHANGED = 994,
  1991.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LOGIN_STARTED" /></summary>
  1992.         LOGIN_STARTED = 995,
  1993.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/LOGIN_STOPPED" /></summary>
  1994.         LOGIN_STOPPED = 996,
  1995.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/SCREEN_FIRST_DISPLAYED" /></summary>
  1996.         SCREEN_FIRST_DISPLAYED = 997,
  1997.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHARACTER_UPGRADE_STARTED" /></summary>
  1998.         CHARACTER_UPGRADE_STARTED = 998,
  1999.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHARACTER_UPGRADE_ABORTED" /></summary>
  2000.         CHARACTER_UPGRADE_ABORTED = 999,
  2001.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHAR_RESTORE_COMPLETE" /></summary>
  2002.         CHAR_RESTORE_COMPLETE = 1000,
  2003.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ACCOUNT_CHARACTER_LIST_RECIEVED" /></summary>
  2004.         ACCOUNT_CHARACTER_LIST_RECIEVED = 1001,
  2005.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ACCOUNT_DATA_RESTORED" /></summary>
  2006.         ACCOUNT_DATA_RESTORED = 1002,
  2007.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHARACTER_UNDELETE_STATUS_CHANGED" /></summary>
  2008.         CHARACTER_UNDELETE_STATUS_CHANGED = 1003,
  2009.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/CHARACTER_UNDELETE_FINISHED" /></summary>
  2010.         CHARACTER_UNDELETE_FINISHED = 1004,
  2011.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TOKEN_CAN_VETERAN_BUY_UPDATE" /></summary>
  2012.         TOKEN_CAN_VETERAN_BUY_UPDATE = 1005,
  2013.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/STORE_PRODUCTS_UPDATED" /></summary>
  2014.         STORE_PRODUCTS_UPDATED = 1006,
  2015.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/STORE_CONFIRM_PURCHASE" /></summary>
  2016.         STORE_CONFIRM_PURCHASE = 1007,
  2017.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/STORE_STATUS_CHANGED" /></summary>
  2018.         STORE_STATUS_CHANGED = 1008,
  2019.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/STORE_PRODUCT_DELIVERED" /></summary>
  2020.         STORE_PRODUCT_DELIVERED = 1009,
  2021.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/STORE_PURCHASE_LIST_UPDATED" /></summary>
  2022.         STORE_PURCHASE_LIST_UPDATED = 1010,
  2023.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/STORE_PURCHASE_ERROR" /></summary>
  2024.         STORE_PURCHASE_ERROR = 1011,
  2025.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/STORE_ORDER_INITIATION_FAILED" /></summary>
  2026.         STORE_ORDER_INITIATION_FAILED = 1012,
  2027.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/AUTH_CHALLENGE_UI_INVALID" /></summary>
  2028.         AUTH_CHALLENGE_UI_INVALID = 1013,
  2029.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/AUTH_CHALLENGE_FINISHED" /></summary>
  2030.         AUTH_CHALLENGE_FINISHED = 1014,
  2031.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ADDON_LOADED" /></summary>
  2032.         ADDON_LOADED = 1015,
  2033.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ADDON_ACTION_FORBIDDEN" /></summary>
  2034.         ADDON_ACTION_FORBIDDEN = 1016,
  2035.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/ADDON_ACTION_BLOCKED" /></summary>
  2036.         ADDON_ACTION_BLOCKED = 1017,
  2037.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/UI_SCALE_CHANGED" /></summary>
  2038.         UI_SCALE_CHANGED = 1018,
  2039.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/DISPLAY_SIZE_CHANGED" /></summary>
  2040.         DISPLAY_SIZE_CHANGED = 1019,
  2041.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PRODUCT_ASSIGN_TO_TARGET_FAILED" /></summary>
  2042.         PRODUCT_ASSIGN_TO_TARGET_FAILED = 1020,
  2043.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/PRODUCT_DISTRIBUTIONS_UPDATED" /></summary>
  2044.         PRODUCT_DISTRIBUTIONS_UPDATED = 1021,
  2045.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TOKEN_DISTRIBUTIONS_UPDATED" /></summary>
  2046.         TOKEN_DISTRIBUTIONS_UPDATED = 1022,
  2047.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TOKEN_BUY_RESULT" /></summary>
  2048.         TOKEN_BUY_RESULT = 1023,
  2049.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TOKEN_SELL_RESULT" /></summary>
  2050.         TOKEN_SELL_RESULT = 1024,
  2051.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TOKEN_AUCTION_SOLD" /></summary>
  2052.         TOKEN_AUCTION_SOLD = 1025,
  2053.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TOKEN_MARKET_PRICE_UPDATED" /></summary>
  2054.         TOKEN_MARKET_PRICE_UPDATED = 1026,
  2055.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TOKEN_SELL_CONFIRM_REQUIRED" /></summary>
  2056.         TOKEN_SELL_CONFIRM_REQUIRED = 1027,
  2057.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TOKEN_BUY_CONFIRM_REQUIRED" /></summary>
  2058.         TOKEN_BUY_CONFIRM_REQUIRED = 1028,
  2059.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TOKEN_REDEEM_CONFIRM_REQUIRED" /></summary>
  2060.         TOKEN_REDEEM_CONFIRM_REQUIRED = 1029,
  2061.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TOKEN_REDEEM_FRAME_SHOW" /></summary>
  2062.         TOKEN_REDEEM_FRAME_SHOW = 1030,
  2063.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TOKEN_REDEEM_GAME_TIME_UPDATED" /></summary>
  2064.         TOKEN_REDEEM_GAME_TIME_UPDATED = 1031,
  2065.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TOKEN_REDEEM_RESULT" /></summary>
  2066.         TOKEN_REDEEM_RESULT = 1032,
  2067.         /// <summary>In-game event. For more information, see <see cref="!:http://wowprogramming.com/docs/events/TOKEN_STATUS_CHANGED" /></summary>
  2068.         TOKEN_STATUS_CHANGED = 1033,
  2069.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement