From 8dff1b6f1c1042e7e8a3a92014fb7dbc1e8e0dd7 Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期一, 18 十一月 2024 22:20:05 +0800
Subject: [PATCH] 0312 排行榜Name2长度改为65
---
ServerPack/MapServerPack/HA3_Function/PlayerStoveMsg.h | 21 ++++++++++++++++-----
1 files changed, 16 insertions(+), 5 deletions(-)
diff --git a/ServerPack/MapServerPack/HA3_Function/PlayerStoveMsg.h b/ServerPack/MapServerPack/HA3_Function/PlayerStoveMsg.h
index 35f3c89..3b8fc41 100644
--- a/ServerPack/MapServerPack/HA3_Function/PlayerStoveMsg.h
+++ b/ServerPack/MapServerPack/HA3_Function/PlayerStoveMsg.h
@@ -1,9 +1,20 @@
// A3 BF 通知客户端炼丹炉信息 #tagMCPlayerStoveMsg
-struct tagMCPlayerStoveMsg
+struct tagMCPlayerStoveInfo
{
- tagHead Head;
- BYTE StoveLV; // 炼丹炉等级
- DWORD StoveExp; // 炼丹炉经验
- DWORD ItemID; // 合成物品id
+ DWORD AlchemyID; // 丹 ID
+ DWORD StartTime; // 开始炼的时间
+ WORD AlchemyTimes; // 炼的次数
+};
+
+
+struct tagMCPlayerStoveMsg
+{
+ tagHead Head;
+ BYTE StoveLV; // 炼丹炉等级
+ DWORD StoveExp; // 炼丹炉经验
+ DWORD ItemID; // 合成物品id
+ WORD ItemCnt; // 丹药数量
+ WORD StoveCnt; // 丹药数量
+ tagMCPlayerStoveInfo InfoList[StoveCnt];
};
--
Gitblit v1.8.0