很多玩家想知道在游戏中的魔兽世界自动攻击宏一览问题如何解决,源码网小编为玩家们搜集了全网的相关内容,汇总为魔兽世界自动攻击宏一览问题解决办法,帮助有困难的玩家找到合适的方式解决魔兽世界游戏类问题。
1、自动攻击宏
/run for z=1,172 do if IsAttackAction(z)then if not IsCurrentAction(z)then UseAction(z);end;end;end;
需要把“攻击”技能图标拖到任意动作条上。
2、自动选择最近目标宏
/script if GetUnitName("target")==nil then TargetNearestEnemy() end
3、自动魔杖宏
/script if not IsAutoRepeatAction(x) then CastSpellByName("射击"); end
4、自动射击宏
/script if not IsAutoRepeatAction(x) then CastSpellByName("自动射击"); end
反复按不会取消远程武器自动射击。需要把"自动射击"技能图标拖到动作条x位置上。
(x)中的X是动作条对应位置,比如主动作条是1-12,然后次动作条是13-24。