From 3fc13c42d926d91d3183a9608b769b22b5f4c87c Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期五, 19 七月 2019 20:06:13 +0800 Subject: [PATCH] 8012 【2.0.300】【后端】升星功能调整(消耗不同阶装备概率支持根据等阶差增加或衰减概率) --- ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py b/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py index 1c3fbd9..c5a7150 100644 --- a/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py +++ b/ServerPython/CoreServerGroup/GameServer/Script/PyGameData.py @@ -91,6 +91,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 +107,5 @@ g_crossFBFuncLinePlayerCountInfo = {} # 跨服副本功能线路人数信息,本服缓存 {mapID:{funcLineID:[playerCount], ...}, ...} +g_familyTalkCache = {} #{familyID:[[time,content,extras],..]} +g_worldTalkCache = [] #[[time,name, playerID, content,extras],..] \ No newline at end of file -- Gitblit v1.8.0