From 640ca897ae55018b9145239ccfb9ea4b64d6bf70 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期三, 04 九月 2024 19:06:21 +0800
Subject: [PATCH] 10249 【越南】【砍树】仙宫(增加累计消耗货币值同步;)

---
 ServerPack/MapServerPack/HB1_Role/UseMoneyTotalInfo     |    0 
 ServerPack/MapServerPack/HB1_Role/UseMoneyTotalInfo.des |    1 +
 ServerPack/MapServerPack/HB1_Role/UseMoneyTotalInfo.h   |   14 ++++++++++++++
 3 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/ServerPack/MapServerPack/HB1_Role/UseMoneyTotalInfo b/ServerPack/MapServerPack/HB1_Role/UseMoneyTotalInfo
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/ServerPack/MapServerPack/HB1_Role/UseMoneyTotalInfo
diff --git a/ServerPack/MapServerPack/HB1_Role/UseMoneyTotalInfo.des b/ServerPack/MapServerPack/HB1_Role/UseMoneyTotalInfo.des
new file mode 100644
index 0000000..76652ab
--- /dev/null
+++ b/ServerPack/MapServerPack/HB1_Role/UseMoneyTotalInfo.des
@@ -0,0 +1 @@
+B1 16 累计消耗货币信息 #tagMCUseMoneyTotalInfo
diff --git a/ServerPack/MapServerPack/HB1_Role/UseMoneyTotalInfo.h b/ServerPack/MapServerPack/HB1_Role/UseMoneyTotalInfo.h
new file mode 100644
index 0000000..7e45012
--- /dev/null
+++ b/ServerPack/MapServerPack/HB1_Role/UseMoneyTotalInfo.h
@@ -0,0 +1,14 @@
+// B1 16 累计消耗货币信息 #tagMCUseMoneyTotalInfo
+
+struct    tagMCUseMoneyTotal
+{
+	BYTE		MoneyType;	// 货币类型,仅同步需要记录的货币类型
+	DWORD		UseTotal;		// 累计消耗货币值
+};
+
+struct    tagMCUseMoneyTotalInfo
+{
+	tagHead		 Head;
+	BYTE		Count;
+	tagMCUseMoneyTotal	InfoList[Count];
+};

--
Gitblit v1.8.0