From 0c589b36181e570c3e345dfc455b5c5e35f5d9ee Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期二, 02 十二月 2025 23:09:20 +0800
Subject: [PATCH] 129 【战斗】战斗系统 - 增加战报下载,同步像素正式环境配置
---
Main/System/Guild/GuildBossManager.cs | 35 +++++++++++++++++++++++++++++++++++
1 files changed, 35 insertions(+), 0 deletions(-)
diff --git a/Main/System/Guild/GuildBossManager.cs b/Main/System/Guild/GuildBossManager.cs
index 6c9e237..72b8fd7 100644
--- a/Main/System/Guild/GuildBossManager.cs
+++ b/Main/System/Guild/GuildBossManager.cs
@@ -92,5 +92,40 @@
return null;
}
+ int lastGuildBossTime;
+
+ // 鑾峰彇鍏細涓殑浼ゅ璁板綍鍋氭帓鍚�
+ public void UpdateGuildBossInfo(HA513_tagMCFamilyActionInfo vNetData)
+ {
+ if (vNetData.ActionType != GuildManager.GuildBossActionType)
+ {
+ return;
+ }
+
+ GuildManager.Instance.TryGetFamilyActions(GuildManager.GuildBossActionType, out var familyActions);
+ if (familyActions == null)
+ {
+ return;
+ }
+ foreach (var action in familyActions)
+ {
+ if (action.Value1 == 1)
+ {
+ return;
+ }
+ }
+ }
+
+}
+
+public class PlayerGuildBossAtkInfo
+{
+ public int playerID;
+ public int atkTime;
+ public int bzTime;
+ public int atkCount;
+ public long totalHurtValue;
+ public int boxCnt;
+
}
--
Gitblit v1.8.0