From ac4f3139e69d4671a46a299df51159f018a5da13 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期二, 26 十一月 2019 11:35:00 +0800 Subject: [PATCH] 8346 【恺英】【后端】协助系统(封包、表) --- ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py b/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py index 3debd06..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} @@ -107,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