From 0ad3fdd08fbe9b65e9d7242a8b06e5e5a3116b32 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期三, 18 十二月 2019 20:49:12 +0800
Subject: [PATCH] 8359 【主干】活跃兑换(封包)
---
ClientPack/ClientToMapServer/CB0_Event/ActivityPlaceStart.des | 1 +
ServerPack/MapServerPack/HB0_Event/ActivityPlaceInfo | 0
ServerPack/MapServerPack/HB0_Event/ActivityPlaceInfo.des | 1 +
ClientPack/ClientToMapServer/CB0_Event/ActivityPlaceStart.h | 7 +++++++
ServerPack/MapServerPack/HB0_Event/ActivityPlaceInfo.h | 11 +++++++++++
ClientPack/ClientToMapServer/CB0_Event/ActivityPlaceStart | 0
6 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/ClientPack/ClientToMapServer/CB0_Event/ActivityPlaceStart b/ClientPack/ClientToMapServer/CB0_Event/ActivityPlaceStart
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/ClientPack/ClientToMapServer/CB0_Event/ActivityPlaceStart
diff --git a/ClientPack/ClientToMapServer/CB0_Event/ActivityPlaceStart.des b/ClientPack/ClientToMapServer/CB0_Event/ActivityPlaceStart.des
new file mode 100644
index 0000000..fa28ffa
--- /dev/null
+++ b/ClientPack/ClientToMapServer/CB0_Event/ActivityPlaceStart.des
@@ -0,0 +1 @@
+B0 27 活跃放置启动 #tagCMActivityPlaceStart
diff --git a/ClientPack/ClientToMapServer/CB0_Event/ActivityPlaceStart.h b/ClientPack/ClientToMapServer/CB0_Event/ActivityPlaceStart.h
new file mode 100644
index 0000000..28e6fa6
--- /dev/null
+++ b/ClientPack/ClientToMapServer/CB0_Event/ActivityPlaceStart.h
@@ -0,0 +1,7 @@
+// B0 27 活跃放置启动 #tagCMActivityPlaceStart
+
+struct tagCMActivityPlaceStart
+{
+ tagHead Head;
+ BYTE RewardEndType; //是否结算探索,后端处理奖励后自动启动下一次放置探索;0-无结算启动,1-倒计时结束结算,2-快速结算;
+};
diff --git a/ServerPack/MapServerPack/HB0_Event/ActivityPlaceInfo b/ServerPack/MapServerPack/HB0_Event/ActivityPlaceInfo
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/ServerPack/MapServerPack/HB0_Event/ActivityPlaceInfo
diff --git a/ServerPack/MapServerPack/HB0_Event/ActivityPlaceInfo.des b/ServerPack/MapServerPack/HB0_Event/ActivityPlaceInfo.des
new file mode 100644
index 0000000..aac3f9f
--- /dev/null
+++ b/ServerPack/MapServerPack/HB0_Event/ActivityPlaceInfo.des
@@ -0,0 +1 @@
+B0 27 活跃放置信息 #tagMCActivityPlaceInfo
diff --git a/ServerPack/MapServerPack/HB0_Event/ActivityPlaceInfo.h b/ServerPack/MapServerPack/HB0_Event/ActivityPlaceInfo.h
new file mode 100644
index 0000000..2754f4e
--- /dev/null
+++ b/ServerPack/MapServerPack/HB0_Event/ActivityPlaceInfo.h
@@ -0,0 +1,11 @@
+// B0 27 活跃放置信息 #tagMCActivityPlaceInfo
+
+struct tagMCActivityPlaceInfo
+{
+ tagHead Head;
+ BYTE PlaceState; // 是否启动状态
+ DWORD StartTime; // 开始探索time时间戳,完成一次探索会自动下一次探索并更新该时间
+ BYTE RewardCount; // 累计未领取探索奖励次数
+ BYTE RewardLen;
+ char RewardInfo[RewardLen]; //累计未领取探索奖励 [[itemID, count], ...]
+};
--
Gitblit v1.8.0