From dad92ce8acf71cc7ca770571c16a43de65cf78f1 Mon Sep 17 00:00:00 2001 From: xdh <xiefantasy@qq.com> Date: 星期三, 24 十月 2018 14:40:30 +0800 Subject: [PATCH] 4233 【后端】许愿池功能开发 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py | 15 +++++++++++++-- 1 files changed, 13 insertions(+), 2 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py index 7fed019..ec955fe 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py @@ -3618,6 +3618,14 @@ Def_PDict_FlashSaleState = "FlashSaleState" # 玩家身上的限时抢购活动state Def_PDict_FlashSaleMailState = "FlashSaleMailState" # 玩家身上的活动更新提醒邮件状态 Def_PDict_FlashSaleYY = "FlashSaleYY_%s" # 玩家预约限时抢购商品 + +#许愿池活动 +Def_PDict_WishingWellID = "WishingWellID" # 玩家身上的许愿池活动ID,唯一标识,取活动开始日期time值 +Def_PDict_WishingWellFreeTime = "WishingWellFreeTime" # 许愿池免费开始计时时间 +Def_PDict_WishingWellAwardTime = "WishingWellAwardTime" # 许愿池许愿时间 +Def_PDict_WishingWellRefreshCnt = "WishingWellRefreshCnt" # 付费刷新次数 +Def_PDict_WishingWellItem = "WishingWellItem_%s_%s" # 物品ID,是否极品、是否绑定信息 参数(类型,物品数据) +Def_PDict_WishingWellItemCnt = "WishingWellItemCnt_%s_%s" # 物品数量记录 参数(类型,物品数据) #------------------------------------------------------------------------------- #类型 Def_PDictType_OnlinePrize Def_PDict1_OnlinePrizeCnt = "OnlinePrizeCnt" # 新手在线已领取奖励次数 @@ -4460,6 +4468,7 @@ Def_Cost_AlchemyPray, # 丹药祈福 Def_Cost_ResetGreatMasterSkill, # 重置天赋技能 Def_Cost_BindJadeWheel, # 绑玉转盘 +Def_Cost_WishingWell, # 许愿池刷新 #-----------以下为暂时没用的,先不删除,如有新增消费点则放在这些之前------------ Def_Cost_RefreshArrestTask, # 刷新悬赏任务 Def_Cost_OffLineExp, # 兑换离线经验 @@ -4480,7 +4489,7 @@ Def_Cost_Trade, # 交易 Def_Cost_Rename, # 改名 Def_Cost_SkillLvUp, # 技能升级 -) = range(2000, 2000 + 56) +) = range(2000, 2000 + 57) Def_Cost_Reason_SonKey = "reason_name_son" # 消费点原因子类说明key @@ -4564,6 +4573,7 @@ Def_Cost_RuneHole:"RuneHole", Def_Cost_AlchemyPray:"AlchemyPray", Def_Cost_BindJadeWheel:"BindJadeWheel", +Def_Cost_WishingWell:"WishingWell", } ## ----------------------------------------------------- @@ -5006,7 +5016,8 @@ Def_RewardType_FCRecharge, # 仙界盛典充值大礼13 Def_RewardType_FCParty, # 仙界盛典全民来嗨14 Def_RewardType_DownLoad, # 分包下载奖励15 -)= range(16) +Def_RewardType_WishingWell, # 许愿池奖励16 +)= range(17) #boss复活相关活动定义 -- Gitblit v1.8.0