From 26648c57894a86709f792332e07632bfd5e29a16 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期二, 06 七月 2021 17:07:09 +0800 Subject: [PATCH] 9063 【BT2】【BT3】【主干】【后端】新增宝箱跟据境界开启物品(宝箱产出表新增境界字段) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py index 63f01bd..95040f5 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py @@ -959,6 +959,7 @@ "ChestsAward":( ("DWORD", "ChestsItemID", 1), + ("WORD", "RealmLV", 0), ("WORD", "AwardLV", 0), ("dict", "SelectItemDict", 0), ("dict", "FixedItemDict", 0), @@ -3830,6 +3831,7 @@ def __init__(self): self.ChestsItemID = 0 + self.RealmLV = 0 self.AwardLV = 0 self.SelectItemDict = {} self.FixedItemDict = {} @@ -3851,6 +3853,7 @@ return def GetChestsItemID(self): return self.ChestsItemID # 宝箱物品ID + def GetRealmLV(self): return self.RealmLV # 境界等级 def GetAwardLV(self): return self.AwardLV # 宝箱奖励等级 def GetSelectItemDict(self): return self.SelectItemDict # 选择物品ID对应个数字典,规定只能选一个 def GetFixedItemDict(self): return self.FixedItemDict # 固定产出物品ID对应个数字典 -- Gitblit v1.8.0