本帖最后由 idlng 于 2022-7-4 06:28 PM 编辑
有什么意义?
这不多此一举吗?
[Lua] 纯文本查看 复制代码 #showtooltip 压制
if IsSpellCoolDown("压制")==0 and
IsSpellInRange("压制","target") then
CastSpellByName("压制","target")
end
--宏: 设置一个宏名称
在魔蜂里释放这个宏, 需要宏名称:
[Lua] 纯文本查看 复制代码 if BeeIsRun("宏名称") then
BeeRun("宏名称")
end
方法2:
建个脚本 以宏的方式输出
[Lua] 纯文本查看 复制代码 RunMacroText("if IsSpellCoolDown("压制") == 0 and IsSpellInRange("压制","target") then\nCastSpellByName("压制","target")\nend;")
|