From b7bb8308d9b16d2802ccc3c259c871c2b6e58002 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期二, 15 十一月 2022 19:16:05 +0800 Subject: [PATCH] 9748 【BT7】跨服BOSS定时活动(跨服妖魔boss;增加跨服日常活动时间控制;Boss刷新增加支持关联跨服日常活动;优化跨服boss复活剩余时间计算使用跨服时间;) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py | 7 ++++++- 1 files changed, 6 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 2d0c84d..43cafec 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py @@ -778,6 +778,8 @@ Def_AreaType_SkillID_FamilyPK = 20012 # 家族区 Def_AreaType_SkillID_Boss = 20008 # Boss区域 Def_SkillID_SitArea = 20009 # 打坐区域buff + +Def_SkillID_Peace = 23048 # 玩家间和平buff #---------------------------------------------------------------------- #战斗类型 Def_ChanceDefRate = 2000 # 抵御伤害概率, 目前固定20%概率 @@ -2279,6 +2281,7 @@ 1000 * 10, # 跨服战场 1000 * 10, # 幸运云购 1000 * 10, # 跨服排位 + 1000 * 10, # 跨服妖魔boss ] TYPE_Player_Tick_Count = len(TYPE_Player_Tick_Time) @@ -2358,6 +2361,7 @@ TYPE_Player_Tick_Battlefield, #跨服战场 TYPE_Player_Tick_LuckyCloudBuy, #幸运云购 TYPE_Player_Tick_Championship, #跨服排位 +TYPE_Player_Tick_CrossYaomoBoss, #跨服妖魔boss ) = range(0, TYPE_Player_Tick_Count) #--------------------------------------------------------------------- @@ -5651,7 +5655,8 @@ Def_RewardType_ShediaoRedpacket, #射雕红包奖励 50 Def_RewardType_ShediaoEquip, #射雕装备奖励 51 Def_RewardType_CAAllRecharge, #跨服全民充值奖励 52 -)= range(53) +Def_RewardType_CrossYaomoBossHurt, #跨服妖魔boss伤害奖励 53 +)= range(54) #boss复活相关活动定义 -- Gitblit v1.8.0