From 30a2edc9e278ca34760912ab6fee3e3bb76f6858 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期六, 24 十一月 2018 17:26:02 +0800
Subject: [PATCH] Add: B3 11 助战记录列表 #tagGCHelpBattleRecordList Add: B2 08 获得仙缘币信息 #tagMCAddXianyuanCoinMsg

---
 ServerPack/GameServerPack/HB3_PlayerSocial/HelpBattleRecordList     |    0 
 ServerPack/MapServerPack/HB2_ActionMap/AddXianyuanCoinMsg.h         |    9 +++++++++
 ServerPack/GameServerPack/HB3_PlayerSocial/HelpBattleRecordList.des |    1 +
 ServerPack/MapServerPack/HB2_ActionMap/AddXianyuanCoinMsg           |    0 
 ServerPack/MapServerPack/HB2_ActionMap/AddXianyuanCoinMsg.des       |    1 +
 ServerPack/GameServerPack/HB3_PlayerSocial/HelpBattleRecordList.h   |   20 ++++++++++++++++++++
 6 files changed, 31 insertions(+), 0 deletions(-)

diff --git a/ServerPack/GameServerPack/HB3_PlayerSocial/HelpBattleRecordList b/ServerPack/GameServerPack/HB3_PlayerSocial/HelpBattleRecordList
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/ServerPack/GameServerPack/HB3_PlayerSocial/HelpBattleRecordList
diff --git a/ServerPack/GameServerPack/HB3_PlayerSocial/HelpBattleRecordList.des b/ServerPack/GameServerPack/HB3_PlayerSocial/HelpBattleRecordList.des
new file mode 100644
index 0000000..c0cb994
--- /dev/null
+++ b/ServerPack/GameServerPack/HB3_PlayerSocial/HelpBattleRecordList.des
@@ -0,0 +1 @@
+B3 11 助战记录列表 #tagGCHelpBattleRecordList
diff --git a/ServerPack/GameServerPack/HB3_PlayerSocial/HelpBattleRecordList.h b/ServerPack/GameServerPack/HB3_PlayerSocial/HelpBattleRecordList.h
new file mode 100644
index 0000000..56b64b8
--- /dev/null
+++ b/ServerPack/GameServerPack/HB3_PlayerSocial/HelpBattleRecordList.h
@@ -0,0 +1,20 @@
+// B3 11 助战记录列表 #tagGCHelpBattleRecordList
+
+struct    tagGCHelpBattleRecord
+{
+	DWORD		CallPlayerID;	// 邀请助战的玩家ID
+	BYTE		NameLen;
+	char		CallPlayerName[NameLen];	// 邀请助战的玩家名,size = NameLen
+	DWORD		MapID;
+	BYTE		FuncLineID;
+	WORD		XianyuanCoinAdd;	// 增加的仙缘币,0代表已达上限
+	BYTE		Relation;		// 当时的关系:0-无,1-好友,2-盟友
+	BYTE		VIPLV;		// 当时的VIP等级
+};
+
+struct    tagGCHelpBattleRecordList
+{
+	tagHead		 Head;
+	WORD		RecordCount;	// 记录数
+	tagGCHelpBattleRecord		RecordList[RecordCount];
+};
diff --git a/ServerPack/MapServerPack/HB2_ActionMap/AddXianyuanCoinMsg b/ServerPack/MapServerPack/HB2_ActionMap/AddXianyuanCoinMsg
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/ServerPack/MapServerPack/HB2_ActionMap/AddXianyuanCoinMsg
diff --git a/ServerPack/MapServerPack/HB2_ActionMap/AddXianyuanCoinMsg.des b/ServerPack/MapServerPack/HB2_ActionMap/AddXianyuanCoinMsg.des
new file mode 100644
index 0000000..4c67473
--- /dev/null
+++ b/ServerPack/MapServerPack/HB2_ActionMap/AddXianyuanCoinMsg.des
@@ -0,0 +1 @@
+B2 08 获得仙缘币信息 #tagMCAddXianyuanCoinMsg
diff --git a/ServerPack/MapServerPack/HB2_ActionMap/AddXianyuanCoinMsg.h b/ServerPack/MapServerPack/HB2_ActionMap/AddXianyuanCoinMsg.h
new file mode 100644
index 0000000..89562c4
--- /dev/null
+++ b/ServerPack/MapServerPack/HB2_ActionMap/AddXianyuanCoinMsg.h
@@ -0,0 +1,9 @@
+// B2 08 获得仙缘币信息 #tagMCAddXianyuanCoinMsg
+
+struct    tagMCAddXianyuanCoinMsg
+{
+	tagHead		 Head;
+	DWORD		MapID;
+	BYTE		FuncLineID;
+	WORD		XianyuanCoinAdd;	// 增加的仙缘币,0代表已达上限
+};

--
Gitblit v1.8.0