用SS的自动碎裂改了下自动假死的脚本,为什么不运行呢?
[Lua] 纯文本查看 复制代码 local Tbl = BeeUnitBuffList("target")
local buff = BeeUnitBuffList("player")
local bysc = "圣盾术,保护之手,寒冰屏障,威慑,消散,致盲,法术反射"
if BeeStringFind(bysc,Tbl) then return;end
if UnitIsDeadOrGhost("target") then return;end
if BeeCastSpellFast() then return;end
if IsShiftKeyDown() and BeeSpellCoolDown("假死")==0 then
BeeRun("/STOPCAST")
BeeRun("/cast 假死")
end
这是有什么问题么
|