From 7240dd26ac42798cfa680bde1e07e1c3c833ef1a Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期一, 28 四月 2025 11:14:37 +0800
Subject: [PATCH] 10367 【越南】【英语】【BT】【砍树】仙盟攻城战-服务端(C0 28增加同步玩家仙盟ID)

---
 ServerPack/MapServerPack/HA3_Function/SkillElementInfo.h |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/ServerPack/MapServerPack/HA3_Function/SkillElementInfo.h b/ServerPack/MapServerPack/HA3_Function/SkillElementInfo.h
index 23a9022..aab2af7 100644
--- a/ServerPack/MapServerPack/HA3_Function/SkillElementInfo.h
+++ b/ServerPack/MapServerPack/HA3_Function/SkillElementInfo.h
@@ -1,11 +1,19 @@
 // A3 09 技能五行专精信息 #tagMCSkillElementInfo
 
+struct	tagMCSkillElementActiveData
+{
+	DWORD	SkillID; // 技能ID
+	BYTE	ActiveLV; // 激活等级
+};
+
+
+
 struct	tagMCSkillElementData
 {
 	DWORD	MainSkillID; // 主技能ID
 	DWORD	ElementSkillID; // 选择的专精技能ID
 	BYTE	SkillCnt; // 数量
-	DWORD	ActiveSkillID[SkillCnt]; // 激活的技能ID
+	tagMCSkillElementActiveData	ActiveSkill[SkillCnt]; // 激活的技能ID
 };
 
 

--
Gitblit v1.8.0