This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public enum FeatureStatusFlags | |
| { | |
| VoiceChatAllowed = 0x40, | |
| HasTravelPass = 0x80, | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Flags] | |
| public enum InstanceInfoFlags | |
| { | |
| None = 0, | |
| TrialLevelCap = 0x40, | |
| TrialMoneyCap = 0x80, | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 00000000 CMovementStatus struc ; (sizeof=0x8C) | |
| 00000000 Guid_UNK dq ? | |
| 00000008 Flags dd ? | |
| 0000000C Flags2 dw ? | |
| 0000000E db ? ; undefined | |
| 0000000F db ? ; undefined | |
| 00000010 timestamp dd ? | |
| 00000014 position C4Vector ? | |
| 00000024 field_24 dd ? | |
| 00000028 ShouldReadTransportData db ? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public void Read(StreamHandler Reader) | |
| { | |
| var bits = new BitReader(Reader); | |
| this.Flags = (MovementFlags)bits.ReadInt(30); | |
| this.Flags2 = (MovementFlags2)bits.ReadSmallInt(12); | |
| if (HaveTransportData = bits.ReadBit()) | |
| { | |
| HaveTransportTime2 = bits.ReadBit(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // guild recruiting | |
| [OpcodeDescription("EVENT_LF_GUILD_POST_UPDATED")] | |
| [OpcodeDescription("uint8 flags, if (0x80) { uint32s, string, uint32s }")] | |
| [OpcodeDescription("Script_GetGuildRecruitmentSettings")] | |
| [OpcodeDescription("You are in a guild, and your guild is recruiting.")] | |
| SMSG_LF_GUILD_POST = 6947, | |
| [OpcodeDescription("Script_SetGuildRecruitmentSettings")] | |
| [OpcodeDescription("You are in a guild, and your guild is recruiting.")] | |
| CMSG_LF_GUILD_POST = 16648, | |
| [OpcodeDescription("Script_RequestGuildRecruitmentSettings")] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Packet OpCode="MSG_LIST_STABLED_PETS" Sender="Server"> | |
| <Simple> | |
| <Name>VendorEntityId</Name> | |
| <Type>Guid</Type> | |
| </Simple> | |
| <Simple> | |
| <Name>NumPets</Name> | |
| <Type>Byte</Type> | |
| </Simple> | |
| <Simple> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Flags] | |
| public enum SplineFlags : uint | |
| { | |
| None = 0x00000000, | |
| Forward = 0x00000001, | |
| Backward = 0x00000002, | |
| StrafeLeft = 0x00000004, | |
| StrafeRight = 0x00000008, | |
| TurnLeft = 0x00000010, | |
| TurnRight = 0x00000020, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Flags] | |
| public enum MovementFlags : uint | |
| { | |
| None = 0x00000000, | |
| Forward = 0x00000001, | |
| Backward = 0x00000002, | |
| StrafeLeft = 0x00000004, | |
| StrafeRight = 0x00000008, | |
| TurnLeft = 0x00000010, | |
| TurnRight = 0x00000020, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SMSG_FORCEACTIONSHOW = 31466, | |
| SMSG_PETGODMODE = 29434, | |
| SMSG_REFER_A_FRIEND_EXPIRED = 9974, | |
| SMSG_GODMODE = 30439, | |
| SMSG_DESTRUCTIBLE_BUILDING_DAMAGE = 47726, | |
| CMSG_CHAR_CREATE = 10786, | |
| CMSG_CHAR_ENUM = 4241, | |
| CMSG_CHAR_DELETE = 28210, | |
| SMSG_CHAR_CREATE = 15926, | |
| SMSG_CHAR_ENUM = 50983, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { "MSG_MOVE_SET_RAW_POSITION_ACK", "CMSG_MOVE_CHARM_PORT_CHEAT" }, | |
| { "OBSOLETE_DROP_ITEM", "CMSG_UNCLAIM_LICENSE" }, | |
| { "SMSG_INSPECT", "SMSG_INSPECT_RESULTS_UPDATE" }, | |
| { "SMSG_EQUIPMENT_SET_SAVED", "SMSG_EQUIPMENT_SET_ID" }, | |
| { "CMSG_EQUIPMENT_SET_DELETE", "CMSG_DELETEEQUIPMENT_SET" }, | |
| { "CMSG_INSTANCE_LOCK_WARNING_RESPONSE", "CMSG_INSTANCE_LOCK_RESPONSE" }, | |
| { "CMSG_UNUSED2", "CMSG_DEBUG_PASSIVE_AURA" }, | |
| { "SMSG_INSTANCE_LOCK_WARNING_QUERY", "SMSG_PENDING_RAID_LOCK" }, | |
| { "SMSG_DAMAGE_DONE_OBSOLETE", "CMSG_PERFORM_ACTION_SET" }, | |
| { "SMSG_UNIT_SPELLCAST_START", "SMSG_RESUME_CAST_BAR" }, |