From b17bc9d91ea18693926328a2f04eba51029eb752 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期二, 14 五月 2019 15:20:28 +0800 Subject: [PATCH] 6778 【后端】【2.0】任务接口开发(屏蔽炼丹成功、炼丹某个品级丹成功接口,新增炼某个丹药成功接口) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventShell.py | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventShell.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventShell.py index e9a5a41..a6ed4ea 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventShell.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventShell.py @@ -1794,10 +1794,12 @@ RunQuestEvent(curPlayer, "plusgodweapon", "plusgodweapon", Def_RunQuestType_Normal) return -def EventRespons_RefineItem(curPlayer, alchemyLV): +def EventRespons_RefineItem(curPlayer, alchemyLV, alchemyItemID): #八卦炉炼丹 - RunQuestEvent(curPlayer, "refineitem", alchemyLV, Def_RunQuestType_Normal) - RunQuestEvent(curPlayer, "refineitem", "refineitem", Def_RunQuestType_Normal) + #这两个接口策划暂时不用,先注释,使用新的连某个丹药接口 + #RunQuestEvent(curPlayer, "refineitem", alchemyLV, Def_RunQuestType_Normal) + #RunQuestEvent(curPlayer, "refineitem", "refineitem", Def_RunQuestType_Normal) + RunQuestEvent(curPlayer, "refineitem", alchemyItemID, Def_RunQuestType_Normal) return def EventRespons_RefineStoveUp(curPlayer, alchemyLV): -- Gitblit v1.8.0