盗贼野外(自动脚踢2-3星剔骨)
2026年6月22日大约 1 分钟
盗贼野外(自动脚踢2-3星剔骨)
第一步:打开黑兔客户端 → 点击"超级宏" → 新建一个宏 → 把下面代码粘贴进去。
第二步:在游戏里创建一个普通宏 /s S Yewai_Main(),绑到按键上使用。
提示
需要先放好盗贼主控宏在技能栏第一格。
-- ============ 盗贼单体输出宏【野外小怪】 ============
function Yewai_Main()
-- 技能/道具/饰品ID常量
local SPELL_KICK = 1769 -- 脚踢
local ITEM_HEAL_POT = 13446 -- 强效治疗药水
local SPELL_SLICE = 6774 -- 切割
local SPELL_EVISCERATE = 31016 -- 剔骨
local SPELL_SINISTER = 11294 -- 邪恶攻击
local ITEM_SPIDER = 22954 -- 蜘蛛之吻
local ITEM_SLAYER = 23041 -- 屠龙者的纹章
-- 预读战斗状态
local me = GetMeInfo()
local hpPercent = me and (me.health / me.maxHealth * 100) or 100
local kickCD = SCT(SPELL_KICK)
local healPotCD = SCT(ITEM_HEAL_POT)
local sliceTime,_ = ART(SPELL_SLICE)
local cp = CP()
local energy = P(3)
local targetHpLow = HTP(0, 20)
local castSpellID = TSI() -- 判断目标是否在读条
local spiderCD = SCT(ITEM_SPIDER)
local slayerCD = SCT(ITEM_SLAYER)
-- 目标读条自动脚踢
if castSpellID > 0 and kickCD <= 0 and energy >= 25 then
S(SPELL_KICK)
kickCD = SCT(SPELL_KICK)
end
-- 自身血量低于36%,药水冷却就绪自动喝强效治疗药水
if hpPercent < 36 and healPotCD <= 0 then
M('/use 强效治疗药水')
healPotCD = SCT(ITEM_HEAL_POT)
end
-- 刷新切割buff
if cp >= 1 and sliceTime < 2000 and energy >= 25 then
S(SPELL_SLICE)
energy = P(3)
cp = CP()
end
-- 终结技剔骨:连击点>1且目标血量低于20% 或 连击点>2就打剔骨
if energy >= 35 and ((cp > 1 and targetHpLow) or cp > 2) then
S(SPELL_EVISCERATE)
energy = P(3)
cp = CP()
end
-- 邪恶攻击攒星
if cp <= 4 and energy >= 40 then
S(SPELL_SINISTER)
energy = P(3)
cp = CP()
end
-- 饰品自动释放
if spiderCD <= 0 then
M('/use 蜘蛛之吻')
end
if slayerCD <= 0 then
M('/use 屠龙者的纹章')
end
end