From 59fb43b7acf47602826bac40be6e225b699aa673 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期五, 22 九月 2023 13:20:39 +0800
Subject: [PATCH] 9936 【BT0.1】【主干】人族法宝(任务 进度)给予奖励

---
 ServerPack/MapServerPack/HA3_Function/CustomAwardInfo.h   |   15 +++++++++++++++
 ServerPack/MapServerPack/HA3_Function/CustomAwardInfo.des |    1 +
 ServerPack/MapServerPack/HA3_Function/CustomAwardInfo     |    0 
 3 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/ServerPack/MapServerPack/HA3_Function/CustomAwardInfo b/ServerPack/MapServerPack/HA3_Function/CustomAwardInfo
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/ServerPack/MapServerPack/HA3_Function/CustomAwardInfo
diff --git a/ServerPack/MapServerPack/HA3_Function/CustomAwardInfo.des b/ServerPack/MapServerPack/HA3_Function/CustomAwardInfo.des
new file mode 100644
index 0000000..4e17006
--- /dev/null
+++ b/ServerPack/MapServerPack/HA3_Function/CustomAwardInfo.des
@@ -0,0 +1 @@
+A3 CC 自定义奖励信息 #tagMCCustomAwardInfo
diff --git a/ServerPack/MapServerPack/HA3_Function/CustomAwardInfo.h b/ServerPack/MapServerPack/HA3_Function/CustomAwardInfo.h
new file mode 100644
index 0000000..d65899f
--- /dev/null
+++ b/ServerPack/MapServerPack/HA3_Function/CustomAwardInfo.h
@@ -0,0 +1,15 @@
+// A3 CC 自定义奖励信息 #tagMCCustomAwardInfo
+
+struct	tagMCCustomAwardState
+{
+	BYTE		KeyNum;		// 奖励记录key编号,0~255,每个key存31个ID记录  0-30为编号0, 31-61为编号1..
+	DWORD		CanGetState;	// 是否可领取;按位记录是否可领取
+	DWORD		GetState;		// 是否已领取;按位记录是否已领取
+};
+
+struct	tagMCCustomAwardInfo
+{
+	tagHead		Head;
+	BYTE		RecordStateCnt;	// 记录个数
+	tagMCCustomAwardState		RecordStateList[RecordStateCnt];	// 记录列表
+};

--
Gitblit v1.8.0