From 8b1a20abf619133e66b876adb8583fe00fc3fd0a Mon Sep 17 00:00:00 2001 From: xdh <xiefantasy@qq.com> Date: 星期三, 06 三月 2019 10:07:46 +0800 Subject: [PATCH] 6307 【后端】【2.0】多套装备开发单(删除旧套装) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/QuestRunner.py | 16 +--------------- 1 files changed, 1 insertions(+), 15 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/QuestRunner.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/QuestRunner.py index 1cc2a94..2ab2b6f 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/QuestRunner.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/QuestRunner.py @@ -7232,21 +7232,7 @@ totallv = GameWorld.ToIntDef(curActionNode.GetAttribute("value"), 0) return PlayerHorse.GetHorseSumLV(curPlayer) >= totallv -##2阶强化防具套装件数 -# @param None -# @return None <Suitplus value="cnt"/> -def ConditionType_Suitplus(curPlayer, curMission, curActionNode): - needCnt = GameWorld.ToIntDef(curActionNode.GetAttribute("value"), 0) - - equipSuitTypeDict = IpyGameDataPY.GetFuncEvalCfg('EquipSuitType') - groupCnt = 0 #2阶强化防具套装件数 - for groupType, equipIndexList in equipSuitTypeDict.items(): - for i in equipIndexList: - suiteInfo = ChEquip.GetSuiteInfoByPlace(curPlayer, i) - for suiteType, lv in suiteInfo.items(): - if lv >= 2 and int(groupType) == 1 and suiteType == 2: - groupCnt +=1 - return groupCnt >= needCnt + ##法宝激活个数 # @param None -- Gitblit v1.8.0