We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70aef18 commit 8ce202bCopy full SHA for 8ce202b
.gitignore
@@ -23,3 +23,6 @@ packages/*
23
24
wpp.tgz
25
cov-int
26
+
27
+# Rider
28
+.idea
WowPacketParser.sln
@@ -45,6 +45,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WowPacketParserModule.V3_4_
45
EndProject
46
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WowPacketParserModule.V10_0_0_46181", "WowPacketParserModule.V10_0_0_46181\WowPacketParserModule.V10_0_0_46181.csproj", "{D3692488-3D75-42DF-92A3-B46389E2A1C8}"
47
48
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WowPacketParserModule.V4_4_0_53627", "WowPacketParserModule.V4_4_0_53627\WowPacketParserModule.V4_4_0_53627.csproj", "{B2B862DF-4B00-4DCB-A4DB-7BC891AD09B5}"
49
+EndProject
50
Global
51
GlobalSection(SolutionConfigurationPlatforms) = preSolution
52
Debug|Any CPU = Debug|Any CPU
@@ -135,6 +137,10 @@ Global
135
137
{D3692488-3D75-42DF-92A3-B46389E2A1C8}.Debug|Any CPU.Build.0 = Debug|Any CPU
136
138
{D3692488-3D75-42DF-92A3-B46389E2A1C8}.Release|Any CPU.ActiveCfg = Release|Any CPU
139
{D3692488-3D75-42DF-92A3-B46389E2A1C8}.Release|Any CPU.Build.0 = Release|Any CPU
140
+ {B2B862DF-4B00-4DCB-A4DB-7BC891AD09B5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
141
+ {B2B862DF-4B00-4DCB-A4DB-7BC891AD09B5}.Debug|Any CPU.Build.0 = Debug|Any CPU
142
+ {B2B862DF-4B00-4DCB-A4DB-7BC891AD09B5}.Release|Any CPU.ActiveCfg = Release|Any CPU
143
+ {B2B862DF-4B00-4DCB-A4DB-7BC891AD09B5}.Release|Any CPU.Build.0 = Release|Any CPU
144
EndGlobalSection
145
GlobalSection(SolutionProperties) = preSolution
146
HideSolutionNode = FALSE
WowPacketParser/Enums/AccountDataType.cs
@@ -2,18 +2,20 @@ namespace WowPacketParser.Enums
2
{
3
public enum AccountDataType
4
5
- GlobalConfigCache = 0,
6
- PerCharacterConfigCache = 1,
7
- GlobalBindingsCache = 2,
8
- PerCharacterBindingsCache = 3,
9
- GlobalMacrosCache = 4,
10
- PerCharacterMacrosCache = 5,
11
- PerCharacterLayoutCache = 6,
12
- PerCharacterChatCache = 7,
13
- GlobalTTSCache = 8,
14
- PerCharacterTTSCache = 9,
15
- GlobalFlaggedCache = 10,
16
- PerCharacterFlaggedCache = 11,
17
- PerCharacterClickBindingsCache = 12,
+ GlobalConfigCache = 0,
+ PerCharacterConfigCache = 1,
+ GlobalBindingsCache = 2,
+ PerCharacterBindingsCache = 3,
+ GlobalMacrosCache = 4,
+ PerCharacterMacrosCache = 5,
+ PerCharacterLayoutCache = 6,
+ PerCharacterChatCache = 7,
+ GlobalTTSCache = 8,
+ PerCharacterTTSCache = 9,
+ GlobalFlaggedCache = 10,
+ PerCharacterFlaggedCache = 11,
+ PerCharacterClickBindingsCache = 12,
18
+ GlobalEditModeCache = 13,
19
+ PerCharacterEditModeCache = 14,
20
}
21
WowPacketParser/Enums/ClientType.cs
@@ -17,5 +17,6 @@ public enum ClientType
BurningCrusadeClassic = 8,
WotLKClassic = 8,
Dragonflight = 9,
+ CataClassic = 9,
22
WowPacketParser/Enums/ClientVersionBuild.cs
@@ -721,6 +721,8 @@ public enum ClientVersionBuild
721
V3_4_3_51831 = 51831, // both live and ptr
722
V3_4_3_51943 = 51943, // both live and ptr
723
V3_4_3_52237 = 52237, // both live and ptr
724
725
+ V4_4_0_53627 = 53627, // beta
726
727
// Battle.net - should probably not mix this but oh well
728
BattleNetV37165 = 37165,
WowPacketParser/Enums/Opcode.cs
@@ -226,6 +226,7 @@ public enum Opcode
226
CMSG_CHARACTER_RENAME_REQUEST,
227
CMSG_CHARACTER_UPGRADE_MANUAL_UNREVOKE_REQUEST,
228
CMSG_CHARACTER_UPGRADE_START,
229
+ CMSG_CHAR_CREATE_FINALIZE_REINCARNATION,
230
CMSG_CHAR_CUSTOMIZE,
231
CMSG_CHAR_DELETE,
232
CMSG_CHAR_FACTION_CHANGE,
@@ -2435,6 +2436,7 @@ public enum Opcode
2435
2436
SMSG_LIVE_REGION_KEY_BINDINGS_COPY_RESULT,
2437
SMSG_LOAD_CUF_PROFILES, // Cata only
2438
SMSG_LOAD_EQUIPMENT_SET,
2439
+ SMSG_LOBBY_MATCHMAKER_LOBBY_ACQUIRED_SERVER,
2440
SMSG_LOBBY_MATCHMAKER_PARTY_INFO,
2441
SMSG_LOBBY_MATCHMAKER_PARTY_INVITE_REJECTED,
2442
SMSG_LOBBY_MATCHMAKER_RECEIVE_INVITE,
WowPacketParser/Enums/Version/Opcodes.cs
@@ -24,6 +24,7 @@
using WowPacketParser.Enums.Version.V4_3_2_15211;
using WowPacketParser.Enums.Version.V4_3_3_15354;
using WowPacketParser.Enums.Version.V4_3_4_15595;
+using WowPacketParser.Enums.Version.V4_4_0_53627;
using WowPacketParser.Enums.Version.V5_0_4_16016;
29
using WowPacketParser.Enums.Version.V5_0_5_16048;
30
using WowPacketParser.Enums.Version.V5_1_0_16309;
@@ -866,6 +867,8 @@ public static ClientVersionBuild GetOpcodeDefiningBuild(ClientVersionBuild build
866
867
case ClientVersionBuild.V3_4_3_51943:
868
case ClientVersionBuild.V3_4_3_52237:
869
return ClientVersionBuild.V3_4_3_51666;
870
+ case ClientVersionBuild.V4_4_0_53627:
871
+ return ClientVersionBuild.V4_4_0_53627;
872
default:
873
return ClientVersionBuild.V3_3_5a_12340;
874
@@ -1030,6 +1033,8 @@ public static BiDictionary<Opcode, int> GetOpcodeDictionary(ClientVersionBuild b
1030
1033
return Opcodes_3_4_2.Opcodes(direction);
1031
1034
case ClientVersionBuild.V3_4_3_51666:
1032
1035
return Opcodes_3_4_3.Opcodes(direction);
1036
1037
+ return Opcodes_4_4_0.Opcodes(direction);
1038
1039
return Opcodes_3_3_5.Opcodes(direction);
1040
WowPacketParser/Enums/Version/UpdateFields.cs
@@ -1075,6 +1075,10 @@ private static string GetUpdateFieldDictionaryBuildName(ClientVersionBuild build
1075
1076
return "V3_4_3_51666";
1077
1078
1079
+ {
1080
+ return "V4_4_0_53627";
1081
+ }
1082
1083
1084
return "V3_3_5a_12340";
0 commit comments