From a7d0088f092f3899f4cf8ee75a6420754556a628 Mon Sep 17 00:00:00 2001
From: xdh <xiefantasy@qq.com>
Date: 星期三, 23 一月 2019 15:01:58 +0800
Subject: [PATCH] 6026 子 【开发】【1.5.100】诛仙装备开发 / 【后端】【1.5.100】诛仙装备分解

---
 ServerPack/MapServerPack/HA8_Item/ZhuXianDecomposeResult.des    |    1 +
 ClientPack/ClientToMapServer/CA3_Item/ZhuXianEquipDecompose     |    0 
 ClientPack/ClientToMapServer/CA3_Item/ZhuXianEquipDecompose.h   |   10 ++++++++++
 ServerPack/MapServerPack/HA8_Item/ZhuXianDecomposeResult.h      |   15 +++++++++++++++
 ClientPack/ClientToMapServer/CA3_Item/ZhuXianEquipDecompose.des |    1 +
 ServerPack/MapServerPack/HA8_Item/ZhuXianDecomposeResult        |    0 
 6 files changed, 27 insertions(+), 0 deletions(-)

diff --git a/ClientPack/ClientToMapServer/CA3_Item/ZhuXianEquipDecompose b/ClientPack/ClientToMapServer/CA3_Item/ZhuXianEquipDecompose
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/ClientPack/ClientToMapServer/CA3_Item/ZhuXianEquipDecompose
diff --git a/ClientPack/ClientToMapServer/CA3_Item/ZhuXianEquipDecompose.des b/ClientPack/ClientToMapServer/CA3_Item/ZhuXianEquipDecompose.des
new file mode 100644
index 0000000..7c313c7
--- /dev/null
+++ b/ClientPack/ClientToMapServer/CA3_Item/ZhuXianEquipDecompose.des
@@ -0,0 +1 @@
+A3 32 诛仙装备分解 #tagCMZhuXianEquipDecompose
diff --git a/ClientPack/ClientToMapServer/CA3_Item/ZhuXianEquipDecompose.h b/ClientPack/ClientToMapServer/CA3_Item/ZhuXianEquipDecompose.h
new file mode 100644
index 0000000..f5b4f6c
--- /dev/null
+++ b/ClientPack/ClientToMapServer/CA3_Item/ZhuXianEquipDecompose.h
@@ -0,0 +1,10 @@
+// A3 32 诛仙装备分解 #tagCMZhuXianEquipDecompose
+
+struct	tagCMZhuXianEquipDecompose
+{
+	tagHead		Head;
+	BYTE		Count;		//材料所在背包索引的数量
+	WORD		IndexList[Count];	//材料所在背包索引列表
+	DWORD		ItemIDList[Count];	//材料所在背包物品ID列表
+	BYTE		IsAuto;		//是否自动分解
+};
diff --git a/ServerPack/MapServerPack/HA8_Item/ZhuXianDecomposeResult b/ServerPack/MapServerPack/HA8_Item/ZhuXianDecomposeResult
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/ServerPack/MapServerPack/HA8_Item/ZhuXianDecomposeResult
diff --git a/ServerPack/MapServerPack/HA8_Item/ZhuXianDecomposeResult.des b/ServerPack/MapServerPack/HA8_Item/ZhuXianDecomposeResult.des
new file mode 100644
index 0000000..149704e
--- /dev/null
+++ b/ServerPack/MapServerPack/HA8_Item/ZhuXianDecomposeResult.des
@@ -0,0 +1 @@
+A8 15 诛仙装备分解结果通知 #tagMCZhuXianDecomposeResult
diff --git a/ServerPack/MapServerPack/HA8_Item/ZhuXianDecomposeResult.h b/ServerPack/MapServerPack/HA8_Item/ZhuXianDecomposeResult.h
new file mode 100644
index 0000000..e897c55
--- /dev/null
+++ b/ServerPack/MapServerPack/HA8_Item/ZhuXianDecomposeResult.h
@@ -0,0 +1,15 @@
+// A8 15 诛仙装备分解结果通知 #tagMCZhuXianDecomposeResult
+
+struct	tagMCZhuXianDecomposeItem
+{
+	DWORD		ItemID;		//物品ID
+	BYTE		ItemCnt;		//物品数量
+	BYTE		IsBind;	//是否绑定
+};
+
+struct	tagMCZhuXianDecomposeResult
+{
+	tagHead		Head;
+	BYTE		Cnt;		//数量
+	tagMCZhuXianDecomposeItem		ItemList[Cnt];
+};

--
Gitblit v1.8.0