From 5acd21c7163d1b77db6971e7f0a7faf600ed3177 Mon Sep 17 00:00:00 2001 From: xdh <xiefantasy@qq.com> Date: 星期四, 23 五月 2019 17:54:18 +0800 Subject: [PATCH] 6501 增加神兵任务接口 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventShell.py | 7 ++++++- 1 files changed, 6 insertions(+), 1 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 721a1dd..a181458 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventShell.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventShell.py @@ -1789,9 +1789,14 @@ RunQuestEvent(curPlayer, "passiveset", "passiveset", Def_RunQuestType_Normal) return -def EventRespons_PlusGodWeapon(curPlayer): +def EventRespons_PlusGodWeapon(curPlayer, weaponType): #神兵锤炼 RunQuestEvent(curPlayer, "plusgodweapon", "plusgodweapon", Def_RunQuestType_Normal) + RunQuestEvent(curPlayer, "plusgodweapon", weaponType, Def_RunQuestType_Normal) + return +def EventRespons_GodWeaponUp(curPlayer, weaponType, attrLV): + # 神兵升级 + RunQuestEvent(curPlayer, "godweaponup", "%s_%s"%(weaponType, attrLV), Def_RunQuestType_Normal) return def EventRespons_RefineItem(curPlayer, alchemyLV, alchemyItemID): -- Gitblit v1.8.0