From ca358a222ca80d523fb232b1fd95b01450f8c1b6 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 24 十二月 2019 14:46:22 +0800
Subject: [PATCH] 8346 【恺英】【后端】协助系统(增加协助boss成功仙盟广播)

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

diff --git a/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py b/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py
index 1c3fbd9..88cb507 100644
--- a/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py
+++ b/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py
@@ -68,6 +68,7 @@
 
 g_todayPlayerLVDict = {} #今日玩家等级字典 {playerID:lv,..}
 g_yesterdayPlayerLVDict = {} #昨日玩家等级字典{playerID:lv,..}
+g_onedayJobPlayerLoginoffTimeDict = {} #近24小时登录/离线的玩家职业数 {职业:{playerID:loginoffTime, ...}}
 
 g_ctgOfflinePlayerInfo = {} # {playerID:[[ctgInfo], ...], ...} # 离线玩家CTG信息缓存
 g_gmtOfflinePlayerInfo = {} # {(queryType, playerFind):[gmtInfo, ...], ...} # 离线玩家GMT信息缓存
@@ -75,7 +76,8 @@
 g_questionIDHistory = {}#出过的题记录 {familyid:[出过的题id,..]}
 g_familyAnswerDict = {} #仙盟答题数量 {familyid:[答题数量,tick],..}
 g_familyPartyTopInfo = [] #仙盟宴会答题王 [playerID,名字]
-g_partyheroAnswerDict = {} #仙盟宴会玩家答题数量 {playerid:答题数量,..}
+g_partyheroAnswerDict = {} #仙盟宴会玩家答对题目数量 {playerid:答题数量,..}
+g_familyAnswerPlayerIDDict = {} #仙盟宴会玩家参与答题数量  {playerID:[题目ID, ...], ...}
 
 g_bourseItemTradingTimeDict = {} # 物品开始交易的时间记录 {guid:tick}
 
@@ -91,6 +93,7 @@
 
 g_crossPKPlayerDict = {} # 跨服PK玩家字典  {playerID:PKPlayer, ...}
 g_crossPKZoneMatchPlayerDict = {} # 跨服PK匹配中的玩家字典 {zoneID:[playerID, ...], ...}
+g_crossPKZoneMatchRobotPlayerDict = {} # 跨服PK匹配机器人的玩家字典 {playerID:PKPlayer, ...}
 g_crossPKRoomDict = {} # 跨服PK房间字典 {roomID:PKRoom, ...}
 g_crossPKRoomID = 0 # 跨服PK当前已经创建到的房间ID,自增创建
 
@@ -106,3 +109,7 @@
 
 g_crossFBFuncLinePlayerCountInfo = {} # 跨服副本功能线路人数信息,本服缓存 {mapID:{funcLineID:[playerCount], ...}, ...}
 
+g_familyTalkCache = {} #{familyID:[[time,content,extras],..]}
+g_worldTalkCache = [] #[[time,name, playerID, content,extras],..]
+
+g_unTJLogoffTime = {} #非脱机离线时间 {playerID:time, ...}

--
Gitblit v1.8.0