From ba9ac7c41060991bf34d8cad6db8f255561b712c Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期四, 27 九月 2018 18:45:42 +0800
Subject: [PATCH] 3906 【后端】新增宝箱开启规则次数特定定制产出;       增加GM命令重置宝箱开启次数: SetChestsUseCount

---
 ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py b/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py
index da04198..07ce69e 100644
--- a/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py
+++ b/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py
@@ -59,11 +59,12 @@
 g_swrhJoinRecord = [] #守护人皇家族今日参加记录(已正常结算)[familyID]
 
 g_bossShuntPlayerInfo = {} # boss分流玩家信息{(mapID, lineID):{playerID:[bossID, teamID, relatedTick], ...}, ...}
-g_bossShuntDeadLine = {} # boss分流线路boss已死亡的线路 {bossID:[lineID, ...], ...}
-g_bossShuntDeadLineChangeBoss = [] # boss分流已死亡线路有变更的boss列表
+g_bossShuntLineState = {} # boss分流线路对应boss状态 {bossID:{lineID:isAlive, ...}, ...}
+g_bossShuntStateChangeBoss = [] # boss分流Boss线路状态有变更的boss列表
 
 g_familyOwnerBossInfo = {} # 地图同步上来的仙盟归属boss信息 {bossID:[curHp, maxHP, ownerFamilyID, ownerFamilyName], ...}
 g_horsePetRobBossHurtPlayerIDInfo = {} # 骑宠争夺有对boss伤血过的玩家ID信息 {bossID:{familyID:[playerID, ...], ...}, ...}
+g_familyKillHorsePetRobBossCntDict = {} # 骑宠争夺仙盟已击杀boss数 {familyID:击杀数, ...}
 
 g_todayPlayerLVDict = {} #今日玩家等级字典 {playerID:lv,..}
 g_yesterdayPlayerLVDict = {} #昨日玩家等级字典{playerID:lv,..}
@@ -73,4 +74,6 @@
 g_questionIDHistory = {}#出过的题记录 {familyid:[出过的题id,..]}
 g_familyAnswerDict = {} #仙盟答题数量 {familyid:[答题数量,tick],..}
 g_familyPartyTopInfo = [] #仙盟宴会答题王 [playerID,名字]
-g_partyheroAnswerDict = {} #仙盟宴会玩家答题数量 {playerid:答题数量,..}
\ No newline at end of file
+g_partyheroAnswerDict = {} #仙盟宴会玩家答题数量 {playerid:答题数量,..}
+
+g_dogzNPCRefreshTimeDict = {} # 神兽副本NPC刷新时间{npcid:剩余刷新时间}
\ No newline at end of file

--
Gitblit v1.8.0