From 3391e88b28602affbc6235edd616fb5f61663a38 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期五, 14 二月 2020 13:13:17 +0800 Subject: [PATCH] 8375 【主干】【后端】秘境探索修改(经验公式改为每秒的收益) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerActivity.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerActivity.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerActivity.py index 1c98924..e077b0d 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerActivity.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerActivity.py @@ -775,7 +775,7 @@ break if not expLV: expLV, expFormat = lvFormatList[-1] - addExp = eval(FormulaControl.GetCompileFormula("ActivityPlaceExp_%s" % expLV, expFormat)) + addExp = eval(FormulaControl.GetCompileFormula("ActivityPlaceExp_%s" % expLV, expFormat)) * expSeconds playerControl = PlayerControl.PlayerControl(curPlayer) addExp = playerControl.AddExp(addExp, ShareDefine.Def_ViewExpType_Activity) -- Gitblit v1.8.0