From 46fbb9a99444693cdbcd0df7f6de0d0511235d56 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期一, 13 十二月 2021 14:46:53 +0800 Subject: [PATCH] 9265 【BT5】【后端】53、新增幸运云购 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py index d92cdd9..61f6aa2 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py @@ -2255,6 +2255,8 @@ 1000 * 5, # 请求协助间隔 1000 * 10, # 竞技场间隔 1000 * 5, # 情缘 + 1000 * 10, # 跨服战场 + 1000 * 10, # 幸运云购 ] TYPE_Player_Tick_Count = len(TYPE_Player_Tick_Time) @@ -2331,6 +2333,8 @@ TYPE_Player_Tick_RequestAssist, #请求协助间隔 TYPE_Player_Tick_Arena, #竞技场间隔 TYPE_Player_Tick_Love, #情缘 +TYPE_Player_Tick_Battlefield, #跨服战场 +TYPE_Player_Tick_LuckyCloudBuy, #幸运云购 ) = range(0, TYPE_Player_Tick_Count) #--------------------------------------------------------------------- @@ -4054,6 +4058,10 @@ Def_PDict_CrossPK_SeasonOrder = "CrossPK_SeasonOrder_%s" # 历史赛季名次,参数,赛季ID Def_PDict_CrossPK_SeasonAwardLV = "CrossPK_SeasonAwardLV_%s" # 历史赛季奖励等级(一般是段位等级,排行奖励的在最高段位等级基础上增加),参数,赛季ID +# 跨服幸运云购 +Def_PDict_LuckyCloudBuy_RoundID = "LuckyCloudBuy_RoundID" # 本轮标识ID +Def_PDict_LuckyCloudBuy_BuyCount = "LuckyCloudBuy_BuyCount" # 本轮已购买份数 + #自动战斗设置记录 Def_PDict_AutoFightSetting = "AFSetting_%s_%s" -- Gitblit v1.8.0