From 19576609e69aaf5ff7ece05bf007a5f9eb1eaf9a Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期六, 24 十一月 2018 22:15:16 +0800 Subject: [PATCH] 4762 【1.3】【后端】组队功能和助战积分优化;(初版,可测试基本流程) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py | 19 ++++++++++++++++--- 1 files changed, 16 insertions(+), 3 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py index e30008f..c95a629 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py @@ -1877,10 +1877,14 @@ Def_FB_DropDoCountRate = 'DropDoCountRate' # 怪物掉落执行次数万分率 Def_FB_DropDoCountAdd = 'DropDoCountAdd' # 怪物掉落执行次数加成固定值 Def_FB_SingleFBPlayerID = 'SingleFBPlayerID' # 个人副本玩家ID +Def_FB_HelpBattleFBObjID = 'HelpBattleFBObjID_%s' # 助战副本助战NPC机器人/玩家ID对应实例ID, 参数为玩家ID +Def_FB_HelpBattleGoldCall = 'HelpBattleGoldCall_%s' # 助战机器人是否花费召唤, 参数为玩家ID FBPlayerDict_EncourageLV = 'FBPlayerDict_EncourageLV' # 鼓舞等级 FBPlayerDict_IsDelTicket = 'FBPlayerDict_IsDelTicket' # 是否已扣除入场券/进入次数 FBPlayerDict_IsHelpFight = 'FBPlayerDict_IsHelpFight' # 是否助战 + +FBPD_HelpBattleRefreshCount = 'FBPD_HelpBattleRefreshCount' # 助战已刷新次数 #领取奖励标识 ( @@ -3662,6 +3666,9 @@ Def_PDict_IceLodeLastCheckTime = "IceLodeLastCheckTime" #上次补发星级奖励时间 Def_PDict_IceLodeDayLV = "IceLodeDayLV" #今日等级 Def_PDict_IceLodeIsInFBOnDay = "IceLodeIsInFBOnDay" #在副本里过天 + +#助战 +Def_PDict_HelpBattleCheckInCount = "HelpBattleCheckInCount" #助战登记次数, 登记次数*10+今日是否登记过 #------------------------------------------------------------------------------- #类型 Def_PDictType_OnlinePrize Def_PDict1_OnlinePrizeCnt = "OnlinePrizeCnt" # 新手在线已领取奖励次数 @@ -4530,6 +4537,7 @@ Def_Cost_BindJadeWheel, # 绑玉转盘 Def_Cost_WishingWell, # 许愿池刷新 Def_Cost_GodWeapon, # 神兵 +Def_Cost_FBHelpBattle, # 副本助战 #-----------以下为暂时没用的,先不删除,如有新增消费点则放在这些之前------------ Def_Cost_RefreshArrestTask, # 刷新悬赏任务 Def_Cost_OffLineExp, # 兑换离线经验 @@ -4550,7 +4558,7 @@ Def_Cost_Trade, # 交易 Def_Cost_Rename, # 改名 Def_Cost_SkillLvUp, # 技能升级 -) = range(2000, 2000 + 58) +) = range(2000, 2000 + 59) Def_Cost_Reason_SonKey = "reason_name_son" # 消费点原因子类说明key @@ -4636,6 +4644,7 @@ Def_Cost_BindJadeWheel:"BindJadeWheel", Def_Cost_WishingWell:"WishingWell", Def_Cost_GodWeapon:"GodWeapon", +Def_Cost_FBHelpBattle:"FBHelpBattle", } ## ----------------------------------------------------- @@ -4934,7 +4943,10 @@ VIPPrivilege_29, #29 娲皇遗迹购买次数 - 副本总表统一处理 VIPPrivilege_BindJadeWheel, #30 绑玉转盘次数 VIPPrivilege_PrayElixir, #31 丹药祈福次数 -) = range(1, 32) +VIPPrivilege_32, #32 封魔坛自动挑战 +VIPPrivilege_XianyuanCoinUpperAdd, #33 仙缘币上限加成 +VIPPrivilege_XianyuanCoinAddPer, #34 仙缘币获得倍率加成(万分比) +) = range(1, 35) ( @@ -4958,8 +4970,9 @@ ntTouchKill, #触碰后自杀类 17 ntUndeath, #不死类型 18 ntRobot, #上古战场机器人类型 19 +ntHelpBattleRobot, #助战机器人 20 ntMax -) = range(21) +) = range(22) (Def_SkillFuncType_Common, #0为通用技能 -- Gitblit v1.8.0