From 49cfc84f644219fefb382215e1765a8fd81fde48 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期四, 25 九月 2025 09:49:52 +0800 Subject: [PATCH] 129 【战斗】战斗系统-服务端(甘宁技能;) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/Hero.py | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/Hero.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/Hero.py index 9150793..1c9827d 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/Hero.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/Hero.py @@ -71,6 +71,8 @@ ipyDataMgr = IpyGameDataPY.IPY_Data() for index in range(ipyDataMgr.GetHeroCount()): ipyData = ipyDataMgr.GetHeroByIndex(index) + if not ipyData.GetPlayerCanUse(): + continue heroIDList.append(ipyData.GetHeroID()) else: heroIDList = [value2] @@ -148,7 +150,7 @@ # 突破 if value == "b": breakLV = msgList[2] if len(msgList) > 2 else 0 - PlayerHero.SetHeroBreakLV(heroItem, breakLV) + PlayerHero.SetHeroBreakLV(curPlayer, heroItem, breakLV) GameWorld.DebugAnswer(curPlayer, "设置武将突破: %s,itemIndex=%s" % (breakLV, itemIndex)) return @@ -314,7 +316,7 @@ if not IpyGameDataPY.GetIpyGameDataNotLog("HeroQualityBreak", quality, bLV): break breakLV = bLV - PlayerHero.SetHeroBreakLV(heroItem, breakLV, False) + PlayerHero.SetHeroBreakLV(curPlayer, heroItem, breakLV, False) # 星级 starMax = PlayerHero.GetHeroStarMax(heroItem) -- Gitblit v1.8.0