| | |
| | | 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;
|
| | |
|
| | | }
|
| | |
|