From f8dab27621ee5061a48b3a0142c6860b360cf0c9 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期三, 16 十月 2019 17:17:27 +0800 Subject: [PATCH] 8262 【主干】【后端】仙盟宴会及传功优化(增加宴会结束倒计时显示) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py | 6 ++++++ 1 files changed, 6 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 e2eec17..57ec83f 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py @@ -533,6 +533,8 @@ "DailyAction":( ("DWORD", "DailyID", 1), + ("dict", "OpenTimeDict", 0), + ("DWORD", "Duration", 0), ("DWORD", "DayTimes", 0), ("DWORD", "DayBuyTimes", 0), ("DWORD", "BuyNeedMoney", 0), @@ -2564,6 +2566,8 @@ def __init__(self): self.DailyID = 0 + self.OpenTimeDict = {} + self.Duration = 0 self.DayTimes = 0 self.DayBuyTimes = 0 self.BuyNeedMoney = 0 @@ -2575,6 +2579,8 @@ return def GetDailyID(self): return self.DailyID # 活动ID + def GetOpenTimeDict(self): return self.OpenTimeDict # 开启时间 + def GetDuration(self): return self.Duration # 持续时间, 0为不限制 def GetDayTimes(self): return self.DayTimes # 每日次数, 0为不限制 def GetDayBuyTimes(self): return self.DayBuyTimes # 每日可购买次数 def GetBuyNeedMoney(self): return self.BuyNeedMoney # 购买次数需要仙玉 -- Gitblit v1.8.0