From 8efdda5afde00682163ae3ec3758a7dcbd29766f Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期六, 11 五月 2024 11:50:32 +0800 Subject: [PATCH] 10156 副本功能玩法关联回合战斗表现(符印塔、天星塔战斗改为回合制,功能玩法不变,配置不变;支持新任务系统中的挑战副本、过关副本;) --- ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py b/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py index d97fb10..b61d39b 100644 --- a/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py +++ b/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py @@ -84,6 +84,7 @@ g_familyPartyTopInfo = [] #仙盟宴会答题王 [playerID,名字] g_partyheroAnswerDict = {} #仙盟宴会玩家答对题目数量 {playerid:答题数量,..} g_familyAnswerPlayerIDDict = {} #仙盟宴会玩家参与答题数量 {playerID:[题目ID, ...], ...} +g_chuangongPlayerDict = {} #传功玩家信息 {playerID:[目标玩家ID, ...], ...} g_redPacketMgr = None # RedPacketMgr @@ -111,6 +112,7 @@ g_luckyCloudBuyNumDict = {} # 幸运云购购买记录 {zoneID:[LuckyCloudBuyNum, ...], ...} g_luckyCloudBuyLotteryDict = {} # 幸运云购开奖记录 {zoneID:[LuckyCloudBuyLottery, ...], ...} g_unNotifyCloudBuyNumDict = {} # 未通知的跨服云购购买信息 {playerID:msgData, ...} +g_luckyCloudBuyRemainCountDict = {} # 幸运云购剩余购买份数 {zoneID:remainCount, ...} - 子服用 g_crossActInfoDict = None # 跨服运营活动信息 {actName:{actInfoDict}, ...} -- Gitblit v1.8.0