From 4551dd1308ab484688ca96be2be8b811fd3a23e6 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期二, 12 二月 2019 21:02:45 +0800 Subject: [PATCH] 6196 【后端】【1.6】跨服匹配添加机器人 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py index 046d524..0ac851a 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py @@ -1169,6 +1169,7 @@ "CrossRealmPKDan":( ("BYTE", "DanLV", 1), + ("WORD", "LVUpScore", 0), ), "CrossRealmPKDanAward":( @@ -3737,10 +3738,12 @@ class IPY_CrossRealmPKDan(): def __init__(self): - self.DanLV = 0 + self.DanLV = 0 + self.LVUpScore = 0 return - def GetDanLV(self): return self.DanLV # 段位等级 + def GetDanLV(self): return self.DanLV # 段位等级 + def GetLVUpScore(self): return self.LVUpScore # 升段位所需积分 # 跨服竞技场段位奖励表 class IPY_CrossRealmPKDanAward(): -- Gitblit v1.8.0