From 6eee8d7a2d4cdd93c71449b66b8b5ad39f99a0dc Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期三, 18 九月 2024 11:09:05 +0800 Subject: [PATCH] 1111 【越南】【砍树】【英文】废弃23048和平光环技能buff验证; --- ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py b/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py index d97fb10..518c228 100644 --- a/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py +++ b/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py @@ -20,6 +20,10 @@ g_pyGameDataManager = None +g_onlinePlayerMgr = None # 玩家在线管理 + +g_billboardMgrMgr = None # 本服榜单管理 + g_commMapLineInfo = {} # 地图线路真实地图虚拟线信息 {(dataMapID, lineID):(realMapID, copyMapID), ...} g_commMapLineRouteDict = {} # 地图线路路由服务索引信息 {(dataMapID, lineID):routeServerIndex, ...} g_commMapLinePlayerCountDict = {} # 常规地图分线人数 {dataMapID:{lineID:人数, ...}} @@ -84,6 +88,7 @@ g_familyPartyTopInfo = [] #仙盟宴会答题王 [playerID,名字] g_partyheroAnswerDict = {} #仙盟宴会玩家答对题目数量 {playerid:答题数量,..} g_familyAnswerPlayerIDDict = {} #仙盟宴会玩家参与答题数量 {playerID:[题目ID, ...], ...} +g_chuangongPlayerDict = {} #传功玩家信息 {playerID:[目标玩家ID, ...], ...} g_redPacketMgr = None # RedPacketMgr @@ -111,6 +116,7 @@ g_luckyCloudBuyNumDict = {} # 幸运云购购买记录 {zoneID:[LuckyCloudBuyNum, ...], ...} g_luckyCloudBuyLotteryDict = {} # 幸运云购开奖记录 {zoneID:[LuckyCloudBuyLottery, ...], ...} g_unNotifyCloudBuyNumDict = {} # 未通知的跨服云购购买信息 {playerID:msgData, ...} +g_luckyCloudBuyRemainCountDict = {} # 幸运云购剩余购买份数 {zoneID:remainCount, ...} - 子服用 g_crossActInfoDict = None # 跨服运营活动信息 {actName:{actInfoDict}, ...} @@ -144,6 +150,7 @@ g_unNotifyPlayerCrossMsgDict = {} # 未通知玩家的跨服命令 {playerID:{msgType:[msgInfo], ...}, ...} g_crossBattlefieldBuyInfo = {} # 跨服战场购买记录 {zoneID:{hmNum:{playerID:CrossBattlefieldBuy, ...}, ...}, ...} +g_crossBattlefieldSysCallBuyList = [] # 跨服战场系统场次购买召集玩家ID列表 [playerID, ...] g_openDateTime = None # 本场次开启的时间 g_overPlayerIDList = [] # 本场次已经结算的玩家ID列表 @@ -155,4 +162,6 @@ g_familyTalkCache = {} #{familyID:[[time,content,extras],..]} g_worldTalkCache = [] #[[time,name, playerID, content,extras],..] +g_xiangongCanLikeTimeDict = {} # 本服玩家对应仙宫可点赞最新时间信息 {playerID:{仙宫ID:addTime, ...}, ...} + g_unTJLogoffTime = {} #非脱机离线时间 {playerID:time, ...} -- Gitblit v1.8.0