xs12345 发表于 2022-2-22 17:05:29

痛苦SS用2次痛苦无偿怎么解决啊 大神们

--插入技能
if BeeCastSpellFast() then return;end
--保命
if IsEquippableItem("极效治疗石") and BeeUnitHealth("player","%")<55 and GetItemCooldown("极效治疗石")==0 then
    BeeRun("/cast 极效治疗石");
    return;
end
if BeeUnitMana("player","%")<20 and BeeUnitHealth("player","%")>20 then
    BeeRun("/cast 生命分流");
    return;
end
--自动补BUFF部分
if BeePlayerBuffTime("邪甲术")<1 and BeeUnitMana("player","%",0)>0 then
    BeeRun("/cast 邪甲术")
end
--瞬发暗影箭
if BeePlayerBuffTime("暗影冥想")>0
then
    BeeRun("/cast 暗影箭")
end
if UnitExists("target")==1 and not UnitIsDeadOrGhost("target") and BeeTargetDeBuffTime("腐蚀术")<1
then
    BeeRun("/cast 腐蚀术")
end
--输出
if BeeTargetDeBuffTime("腐蚀术")>=1 and BeeSpellCoolDown("鬼影缠身")==0
then
    BeeRun("/cast 鬼影缠身")
end
if BeeTargetDeBuffTime("鬼影缠身")>=1 and BeeTargetDeBuffTime("痛苦无常")<4
then
    BeeRun("/cast 痛苦无常")
end
if BeeTargetDeBuffTime("鬼影缠身")>=1 and BeeTargetDeBuffTime("痛苦无常")>=4 and BeeTargetDeBuffTime("痛苦诅咒")<6
then
    BeeRun("/cast 痛苦诅咒")
end
if BeeTargetDeBuffTime("鬼影缠身")>=1 and BeeTargetDeBuffTime("痛苦无常")>=4 and BeeTargetDeBuffTime("痛苦诅咒")>=6 and BeeUnitHealth("target","%")>25
then
    BeeRun("/cast 暗影箭")
end
if BeeTargetDeBuffTime("鬼影缠身")>=1 and BeeTargetDeBuffTime("痛苦无常")>=4 and BeeTargetDeBuffTime("痛苦诅咒")>=6 and BeeUnitHealth("target","%")<=25 and BeeTargetDeBuffTime("吸取灵魂")<=8
then
    BeeRun("/cast 吸取灵魂")
end

fuqianmeng 发表于 2022-3-9 19:59:16

现在好像也没有一个好的解决方案...

herokh91 发表于 2023-3-7 15:06:00

BeeRun("/cast 痛苦无常")这句修改一下,改成BeeRun("/castsequence 痛苦无常,生命分流") ,我这么改了就没重复了。

山坡上的流氓 发表于 2023-3-7 15:07:37

不是 你这个什么怎么跟我发的那个痛苦术这么相似呢 你加个痛苦无常的打断就好了

billows523 发表于 2023-6-14 00:26:37

想问一下 ,吸取灵魂为什么要8秒打断,重新使用
页: [1]
查看完整版本: 痛苦SS用2次痛苦无偿怎么解决啊 大神们