From 726121e89f9a619e56b6ad6a6815882d010fbbe3 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 16 四月 2019 15:15:50 +0800
Subject: [PATCH] 6459 【后端】【2.0】缥缈仙域开发单(增加采集奖励结果通知)
---
ServerPack/MapServerPack/HA7_Interaction/CollectAwardItemInfo | 0
ServerPack/MapServerPack/HA7_Interaction/CollectAwardItemInfo.des | 1 +
ServerPack/MapServerPack/HA7_Interaction/CollectAwardItemInfo.h | 16 ++++++++++++++++
3 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/ServerPack/MapServerPack/HA7_Interaction/CollectAwardItemInfo b/ServerPack/MapServerPack/HA7_Interaction/CollectAwardItemInfo
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/ServerPack/MapServerPack/HA7_Interaction/CollectAwardItemInfo
diff --git a/ServerPack/MapServerPack/HA7_Interaction/CollectAwardItemInfo.des b/ServerPack/MapServerPack/HA7_Interaction/CollectAwardItemInfo.des
new file mode 100644
index 0000000..210999a
--- /dev/null
+++ b/ServerPack/MapServerPack/HA7_Interaction/CollectAwardItemInfo.des
@@ -0,0 +1 @@
+A7 18 采集奖励物品通知 #tagMCCollectAwardItemInfo
diff --git a/ServerPack/MapServerPack/HA7_Interaction/CollectAwardItemInfo.h b/ServerPack/MapServerPack/HA7_Interaction/CollectAwardItemInfo.h
new file mode 100644
index 0000000..af638b0
--- /dev/null
+++ b/ServerPack/MapServerPack/HA7_Interaction/CollectAwardItemInfo.h
@@ -0,0 +1,16 @@
+// A7 18 采集奖励物品通知 #tagMCCollectAwardItemInfo
+
+struct tagMCCollectAwardItem
+{
+ DWORD ItemID;
+ BYTE Count;
+ BYTE IsAuctionItem; //是否拍品
+};
+
+struct tagMCCollectAwardItemInfo
+{
+ tagHead Head;
+ DWORD CollectNPCID; //采集的NPCID
+ BYTE Count;
+ tagMCCollectAwardItem AwardItemList[Count]; //奖励物品信息列表
+};
--
Gitblit v1.8.0