From 587f43bce904c6350d70181a9c1ac8dc5af8e6f8 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期三, 05 六月 2024 14:11:33 +0800 Subject: [PATCH] 10173 【主干】【香港】【越南】BOSS凭证(购买次数礼包活动增加折扣信息及免费次数礼包) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerActLoginNew.py | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerActLoginNew.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerActLoginNew.py index 56d75f7..ffa9d5b 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerActLoginNew.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerActLoginNew.py @@ -161,6 +161,7 @@ ipyData = IpyGameDataPY.GetIpyGameData("ActLoginNew", cfgID) if not ipyData: return + moneyType, moneyValue = ipyData.GetRepSignCostMoneyInfo() templateID = ipyData.GetTemplateID() dayIpyDataList = IpyGameDataPY.GetIpyGameDataList("ActLoginNewAward", templateID) if not dayIpyDataList: @@ -173,7 +174,8 @@ actPack.StartDate = startDateStr actPack.EndtDate = endDateStr actPack.LimitLV = ipyData.GetLVLimit() - actPack.RepSignCostMoney = ipyData.GetRepSignCostMoneyInfo() + actPack.RepSignMoneyType = moneyType + actPack.RepSignMoneyValue = moneyValue actPack.AwardDayList = [] for dayIpyData in dayIpyDataList: -- Gitblit v1.8.0