From 9506c863b24ebef090fa030a39fc6bbf74daf573 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期三, 17 四月 2019 16:31:34 +0800
Subject: [PATCH] 6459 【后端】【2.0】缥缈仙域开发单(增加攻击NPC次数封包同步)
---
ServerPack/MapServerPack/HA3_Function/NPCAttackCountInfo.h | 14 ++++++++++++++
ServerPack/MapServerPack/HA3_Function/NPCAttackCountInfo.des | 1 +
ServerPack/MapServerPack/HA3_Function/NPCAttackCountInfo | 0
3 files changed, 15 insertions(+), 0 deletions(-)
diff --git a/ServerPack/MapServerPack/HA3_Function/NPCAttackCountInfo b/ServerPack/MapServerPack/HA3_Function/NPCAttackCountInfo
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/ServerPack/MapServerPack/HA3_Function/NPCAttackCountInfo
diff --git a/ServerPack/MapServerPack/HA3_Function/NPCAttackCountInfo.des b/ServerPack/MapServerPack/HA3_Function/NPCAttackCountInfo.des
new file mode 100644
index 0000000..764d605
--- /dev/null
+++ b/ServerPack/MapServerPack/HA3_Function/NPCAttackCountInfo.des
@@ -0,0 +1 @@
+A3 25 NPC已攻击次数信息 #tagMCNPCAttackCountInfo
diff --git a/ServerPack/MapServerPack/HA3_Function/NPCAttackCountInfo.h b/ServerPack/MapServerPack/HA3_Function/NPCAttackCountInfo.h
new file mode 100644
index 0000000..8223982
--- /dev/null
+++ b/ServerPack/MapServerPack/HA3_Function/NPCAttackCountInfo.h
@@ -0,0 +1,14 @@
+// A3 25 NPC已攻击次数信息 #tagMCNPCAttackCountInfo
+
+struct tagMCNPCAttackCount
+{
+ DWORD NPCID;
+ BYTE AttackCount; //已攻击次数
+};
+
+struct tagMCNPCAttackCountInfo
+{
+ tagHead Head;
+ BYTE Count;
+ tagMCNPCAttackCount NPCAttackCountList[Count];
+};
--
Gitblit v1.8.0