From d0f353b00a2a805b3327e9fd7f49d55dcc0ec39a Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期四, 11 七月 2019 13:44:55 +0800 Subject: [PATCH] 7954 【主干】【后端】跨服PVP匹配机器人规则优化(改为由跨服服务器决定是否匹配机器人) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py | 10 ++-------- 1 files changed, 2 insertions(+), 8 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py index 2db25a8..7461689 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py @@ -1180,8 +1180,6 @@ "CrossRealmPKDan":( ("BYTE", "DanLV", 1), ("WORD", "LVUpScore", 0), - ("BYTE", "MatchRobotRate", 0), - ("BYTE", "MatchRobotRateEx", 0), ), "CrossRealmPKDanAward":( @@ -3894,15 +3892,11 @@ def __init__(self): self.DanLV = 0 - self.LVUpScore = 0 - self.MatchRobotRate = 0 - self.MatchRobotRateEx = 0 + self.LVUpScore = 0 return def GetDanLV(self): return self.DanLV # 段位等级 - def GetLVUpScore(self): return self.LVUpScore # 升段位所需积分 - def GetMatchRobotRate(self): return self.MatchRobotRate # 匹配机器人基础概率,百分率 - def GetMatchRobotRateEx(self): return self.MatchRobotRateEx # 匹配机器人失败次数附加概率,百分率 + def GetLVUpScore(self): return self.LVUpScore # 升段位所需积分 # 跨服竞技场段位奖励表 class IPY_CrossRealmPKDanAward(): -- Gitblit v1.8.0