From f545f94c1c8c1e79bb03985419d010d316e6b2d7 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期二, 25 六月 2024 16:15:05 +0800 Subject: [PATCH] 10185 【越南】【港台】【主干】BOSS凭证修改(增加仙盟充值互助活动;) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py index 1ce9307..eab8276 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py @@ -2331,6 +2331,7 @@ 1000 * 10, # 跨服排位 1000 * 10, # 跨服妖魔boss 1000 * 10, # 仙盟阵法 + 1000 * 20, # 仙盟充值互助 300, # 砍树 ] TYPE_Player_Tick_Count = len(TYPE_Player_Tick_Time) @@ -2413,6 +2414,7 @@ TYPE_Player_Tick_Championship, #跨服排位 TYPE_Player_Tick_CrossYaomoBoss, #跨服妖魔boss TYPE_Player_Tick_FamilyZhenfa, #仙盟阵法 +TYPE_Player_Tick_FamilyCTGAssist, #仙盟充值互助 TYPE_Player_Tick_CutTree, #砍树 ) = range(0, TYPE_Player_Tick_Count) @@ -3942,6 +3944,10 @@ #买一送多 Def_PDict_BuyOneID = "BuyOneID_%s" # 玩家身上的活动ID,唯一标识,取活动开始日期time,参数(活动编号) Def_PDict_BuyOneFreeItemState = "BuyOneFreeItemState_%s_%s" # 玩家免费礼包领取记录,参数(活动编号,记录索引) + +#仙盟充值互助活动 +Def_PDict_FamilyCTGAssistID = "FamilyCTGAssistID_%s" # 玩家身上的活动ID,唯一标识,取活动开始日期time,参数(活动编号) +Def_PDict_FamilyCTGAssistAward = "FamilyCTGAssistAward_%s" # 玩家领取记录,参数(活动编号) #限时特惠活动 Def_PDict_SpringSaleID = "SpringSaleID_%s" # 玩家身上的限时特惠活动ID,唯一标识,取活动开始日期time,参数(活动编号) @@ -6023,7 +6029,8 @@ Def_RewardType_ActTask, # 领取任务活动奖励71 Def_RewardType_ActBuyCountGift, # 领取购买次数礼包活动 72 Def_RewardType_Guaji, # 领取挂机收益 73 -)= range(74) +Def_RewardType_FamilyCTGAssist, # 仙盟充值互助奖励 74 +)= range(75) #boss复活相关活动定义 BossRebornActIDList = ( -- Gitblit v1.8.0