刚才回复错了。例如乱射这个,是按ctrl键才对,然后你可以将它修改成鼠标指向施放,这个修改很简单,你自己可以弄一下,然后还有猎豹和豹群守护的切换,改成以下这样会更合适点:
[Lua] 纯文本查看 复制代码 -- 当前不在战斗中、正在移动、不在小队或团队中且没有猎豹守护时
-- 切换为【猎豹守护】—— 提升移动速度,适合跑路
if not BeeUnitAffectingCombat()
and GetUnitSpeed("player") > 0
and not BeeStringFind("猎豹守护", buff)
and not UnitInParty("player")
and not UnitInRaid("player") then
BeeRun("/cast 猎豹守护")
end
-- 当前不在战斗中、正在移动、在小队或团队中且没有猎豹守护时
-- 切换为【豹群守护】—— 提升小队/团队移动速度,适合跑路
if not BeeUnitAffectingCombat()
and GetUnitSpeed("player") > 0
and not BeeStringFind("豹群守护", buff)
and (UnitInParty("player") or UnitInRaid("player")) then
BeeRun("/cast 豹群守护")
end
|