From 0c96af08f55d05ab40eae9f940467dd8eafae44c Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期二, 16 九月 2025 14:07:53 +0800 Subject: [PATCH] 129 【战斗】战斗系统-服务端(增加属性ID技能增伤65、技能减伤66;曹轶技能;被动触发增加属性支持;) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/MainLevel.py | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/MainLevel.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/MainLevel.py index 62016fd..70916dc 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/MainLevel.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/MainLevel.py @@ -28,13 +28,18 @@ if not gmList: GameWorld.DebugAnswer(curPlayer, "重置主线: MainLevel 0") GameWorld.DebugAnswer(curPlayer, "设置主线: MainLevel 章节 关卡 波") - GameWorld.DebugAnswer(curPlayer, "测试掉落: MainLevel d 战锤数") + GameWorld.DebugAnswer(curPlayer, "测试击杀: MainLevel k 消耗战锤数") GameWorld.DebugAnswer(curPlayer, "重置掉落: MainLevel d 0 [是否清掉落背包]") GameWorld.DebugAnswer(curPlayer, "重置战利: MainLevel b 0") GameWorld.DebugAnswer(curPlayer, "设置战利: MainLevel b 战利品ID 已掉落个数") return value = gmList[0] + + if value == "k": + useXiantao = gmList[1] if len(gmList) > 1 else 1 + GameLogic_MainLevel.GMTestKill(curPlayer, useXiantao) + return if value == "d": unXiantao = gmList[1] if len(gmList) > 1 else 1 @@ -47,8 +52,6 @@ ClearPack.__DoLogic_Clear_Pack(curPlayer, IPY_GameWorld.rptIdentify) GameWorld.DebugAnswer(curPlayer, "重置未结算战锤掉落OK!") return - - GameLogic_MainLevel.GMTestKillDrop(curPlayer, unXiantao) return if value == "b": -- Gitblit v1.8.0