From bef073f48eb7c60a5e30e22f5c6d89144ac2e688 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期一, 26 十一月 2018 11:08:18 +0800 Subject: [PATCH] 4762 【后端】增加自己过关获得仙缘币同步; --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py | 23 ++++++++++++++++++++--- 1 files changed, 20 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..6c1d7ed 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py @@ -1877,10 +1877,16 @@ 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' # 助战已刷新次数 +FBPD_HelpBattleFBFightPower = 'FBPD_HelpBattleFBFightPower' # 副本战力 +FBPD_HelpBattleFBBaseHurt = 'FBPD_HelpBattleFBBaseHurt' # 副本伤害 #领取奖励标识 ( @@ -3124,6 +3130,7 @@ Def_PlayerKey_SuperHitRateReduce = "SuperHitRateReduce" # 抗致命一击概率 Def_PlayerKey_IgnoreDefRateReduce = "IgnoreDefRateReduce" # 抗无视防御概率 Def_PlayerKey_LastHurtValue = "LastHurtValue" # 最后一次伤害值 +Def_PlayerKey_LastHurtNPCObjID = "LastHurtNPCObjID" # 最后攻击的NPCObjID Def_PlayerKey_ReduceSkillCDPer = "ReduceSkillCDPer" # 减技能CD万分率 Def_PlayerKey_CommMapExpRate = "CommMapExpRate" # 常规地图经验倍率加成 Def_PlayerKey_FinalHurtPer = "FinalHurtPer" # 最终伤害百分比 @@ -3662,6 +3669,10 @@ Def_PDict_IceLodeLastCheckTime = "IceLodeLastCheckTime" #上次补发星级奖励时间 Def_PDict_IceLodeDayLV = "IceLodeDayLV" #今日等级 Def_PDict_IceLodeIsInFBOnDay = "IceLodeIsInFBOnDay" #在副本里过天 + +#助战 +Def_PDict_HelpBattleCheckInCount = "HelpBattleCheckInCount" #助战登记次数, 登记次数*10+今日是否登记过 +Def_PDict_HelpBattleTotalCount = "HelpBattleTotalCount" #累计助战次数 #------------------------------------------------------------------------------- #类型 Def_PDictType_OnlinePrize Def_PDict1_OnlinePrizeCnt = "OnlinePrizeCnt" # 新手在线已领取奖励次数 @@ -4530,6 +4541,7 @@ Def_Cost_BindJadeWheel, # 绑玉转盘 Def_Cost_WishingWell, # 许愿池刷新 Def_Cost_GodWeapon, # 神兵 +Def_Cost_FBHelpBattle, # 副本助战 #-----------以下为暂时没用的,先不删除,如有新增消费点则放在这些之前------------ Def_Cost_RefreshArrestTask, # 刷新悬赏任务 Def_Cost_OffLineExp, # 兑换离线经验 @@ -4550,7 +4562,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 +4648,7 @@ Def_Cost_BindJadeWheel:"BindJadeWheel", Def_Cost_WishingWell:"WishingWell", Def_Cost_GodWeapon:"GodWeapon", +Def_Cost_FBHelpBattle:"FBHelpBattle", } ## ----------------------------------------------------- @@ -4934,7 +4947,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 +4974,9 @@ ntTouchKill, #触碰后自杀类 17 ntUndeath, #不死类型 18 ntRobot, #上古战场机器人类型 19 +ntHelpBattleRobot, #助战机器人 20 ntMax -) = range(21) +) = range(22) (Def_SkillFuncType_Common, #0为通用技能 -- Gitblit v1.8.0