From 195e2265947cb7341ff21b1de1bb35a26d48ec92 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期三, 20 十一月 2019 19:56:28 +0800
Subject: [PATCH] 8341 【恺英】【后端】强化进化系统优化(强化大师封包)
---
ClientPack/ClientToMapServer/CA5_Function/ActivateMasterPlusLV.h | 8 ++++++++
ServerPack/MapServerPack/HA3_Function/MasterPlusLVInfo | 0
ClientPack/ClientToMapServer/CA5_Function/ActivateMasterPlusLV.des | 1 +
ServerPack/MapServerPack/HA3_Function/MasterPlusLVInfo.des | 1 +
ServerPack/MapServerPack/HA3_Function/MasterPlusLVInfo.h | 14 ++++++++++++++
ClientPack/ClientToMapServer/CA5_Function/ActivateMasterPlusLV | 0
6 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/ClientPack/ClientToMapServer/CA5_Function/ActivateMasterPlusLV b/ClientPack/ClientToMapServer/CA5_Function/ActivateMasterPlusLV
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/ClientPack/ClientToMapServer/CA5_Function/ActivateMasterPlusLV
diff --git a/ClientPack/ClientToMapServer/CA5_Function/ActivateMasterPlusLV.des b/ClientPack/ClientToMapServer/CA5_Function/ActivateMasterPlusLV.des
new file mode 100644
index 0000000..afcaf4c
--- /dev/null
+++ b/ClientPack/ClientToMapServer/CA5_Function/ActivateMasterPlusLV.des
@@ -0,0 +1 @@
+A5 C7 激活大师强化等级 #tagCMActivateMasterPlusLV
diff --git a/ClientPack/ClientToMapServer/CA5_Function/ActivateMasterPlusLV.h b/ClientPack/ClientToMapServer/CA5_Function/ActivateMasterPlusLV.h
new file mode 100644
index 0000000..0688401
--- /dev/null
+++ b/ClientPack/ClientToMapServer/CA5_Function/ActivateMasterPlusLV.h
@@ -0,0 +1,8 @@
+// A5 C7 激活大师强化等级 #tagCMActivateMasterPlusLV
+
+struct tagCMActivateMasterPlusLV
+{
+ tagHead Head;
+ BYTE ClassLV; // 所属装备阶
+ WORD MasterPlusLV; // 大师强化等级
+};
diff --git a/ServerPack/MapServerPack/HA3_Function/MasterPlusLVInfo b/ServerPack/MapServerPack/HA3_Function/MasterPlusLVInfo
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/ServerPack/MapServerPack/HA3_Function/MasterPlusLVInfo
diff --git a/ServerPack/MapServerPack/HA3_Function/MasterPlusLVInfo.des b/ServerPack/MapServerPack/HA3_Function/MasterPlusLVInfo.des
new file mode 100644
index 0000000..825560d
--- /dev/null
+++ b/ServerPack/MapServerPack/HA3_Function/MasterPlusLVInfo.des
@@ -0,0 +1 @@
+A3 C2 大师强化等级激活信息 #tagMCMasterPlusLVInfo
diff --git a/ServerPack/MapServerPack/HA3_Function/MasterPlusLVInfo.h b/ServerPack/MapServerPack/HA3_Function/MasterPlusLVInfo.h
new file mode 100644
index 0000000..b9fd6b5
--- /dev/null
+++ b/ServerPack/MapServerPack/HA3_Function/MasterPlusLVInfo.h
@@ -0,0 +1,14 @@
+// A3 C2 大师强化等级激活信息 #tagMCMasterPlusLVInfo
+
+struct tagMCMasterPlusLV
+{
+ BYTE ClassLV;
+ WORD MasterPlusLV; // 已经激活的最高大师强化等级,向下兼容
+};
+
+struct tagMCMasterPlusLVInfo
+{
+ tagHead Head;
+ BYTE Count; // 信息个数
+ tagMCMasterPlusLV MasterPlusLVInfoList[Count]; // 信息列表
+};
--
Gitblit v1.8.0