xdh
2019-05-09 02f8c83ffab335d63d18bdde30e61bd2233f1f87
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventShell.py
@@ -1911,9 +1911,9 @@
    RunQuestEvent(curPlayer, "thinkfabao", 'thinkfabao', Def_RunQuestType_Normal)
    return
def EventRespons_ElementSkill(curPlayer):
    #选择五行专精
    RunQuestEvent(curPlayer, "elementskill", 'elementskill', Def_RunQuestType_Normal)
def EventRespons_ElementSkill(curPlayer, mainSkillID, updSelectSkillLV):
    #激活五行专精 主技能ID_激活等级.xml
    RunQuestEvent(curPlayer, "elementskill", '%s_%s'%(mainSkillID, updSelectSkillLV), Def_RunQuestType_Normal)
    return
def EventRespons_EquipStarUp(curPlayer):
@@ -1931,9 +1931,10 @@
    RunQuestEvent(curPlayer, "equipitem", 'equipitem', Def_RunQuestType_Normal)
    return
def EventRespons_SkillUp(curPlayer, FuncType):
def EventRespons_SkillUp(curPlayer, FuncType, skillLV):
    #升级技能
    RunQuestEvent(curPlayer, "skillup", FuncType, Def_RunQuestType_Normal)
    RunQuestEvent(curPlayer, "skillup", '%s_%s' % (FuncType, skillLV), Def_RunQuestType_Normal)
    return
#---------------------------------------------------------------------