From 94ee1c7ab1faeaf57443860b46d057f4328706db Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期二, 18 十月 2022 18:14:17 +0800 Subject: [PATCH] 9437 【越南】【后端】天帝礼包(AA60封包增加同步需要选择个数) --- ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py b/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py index debbfe6..ad10ecf 100644 --- a/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py +++ b/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py @@ -12,6 +12,8 @@ # #--------------------------------------------------------------------- +g_dbPlayerIDMap = {} # DBPlayer玩家表ID映射关系 {playerID:accID, ...} + g_allMapServerInitOK = False g_pyGameDataManager = None @@ -137,6 +139,16 @@ g_crossFBFuncLinePlayerCountInfo = {} # 跨服副本功能线路人数信息,本服缓存 {mapID:{funcLineID:[playerCount], ...}, ...} +g_unNotifyPlayerCrossMsgDict = {} # 未通知玩家的跨服命令 {playerID:{msgType:[msgInfo], ...}, ...} + +g_crossBattlefieldBuyInfo = {} # 跨服战场购买记录 {zoneID:{hmNum:{playerID:CrossBattlefieldBuy, ...}, ...}, ...} +g_openDateTime = None # 本场次开启的时间 +g_overPlayerIDList = [] # 本场次已经结算的玩家ID列表 + +g_championshipMgr = None # 跨服排位争霸赛管理 + +g_crossActAllRechargeInfo = {} # 跨服全民充值信息,本服用 {zoneID:{playerID:总充值, ...}, ...} + g_familyTalkCache = {} #{familyID:[[time,content,extras],..]} g_worldTalkCache = [] #[[time,name, playerID, content,extras],..] -- Gitblit v1.8.0