From 78ad2ba94e205bc05882289ff82441987e681141 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期四, 16 十一月 2023 14:46:00 +0800 Subject: [PATCH] 10009 【后端】【BT0.1】【主干】【港台】单笔充值活动增加每日可领取次数,每个档位每日20次 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py index 07a7a6e..e5ac6f5 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py @@ -1691,6 +1691,7 @@ ("DWORD", "TemplateID", 1), ("float", "SingleRechargeValue", 0), ("BYTE", "AwardIndex", 0), + ("WORD", "AwardCountMax", 0), ("dict", "AwardItem", 0), ("char", "NotifyKey", 0), ), @@ -5682,13 +5683,15 @@ self.TemplateID = 0 self.SingleRechargeValue = 0.0 self.AwardIndex = 0 + self.AwardCountMax = 0 self.AwardItem = {} self.NotifyKey = "" return def GetTemplateID(self): return self.TemplateID # 模板ID def GetSingleRechargeValue(self): return self.SingleRechargeValue # 单笔充值额度 - def GetAwardIndex(self): return self.AwardIndex # 返利奖励索引0~31,同个模板中不重复 + def GetAwardIndex(self): return self.AwardIndex # 同个模板中不重复 + def GetAwardCountMax(self): return self.AwardCountMax # 最大领奖次数,最大999次 def GetAwardItem(self): return self.AwardItem # 返利物品信息列表 {职业:[(物品ID,个数,是否绑定),...]} def GetNotifyKey(self): return self.NotifyKey # 全服广播key,默认两个参数(玩家名, 档位额度) -- Gitblit v1.8.0