Many players want to know how to solve the problem of automatic attack macro list in World of Warcraft in the game. The editor of Source Code Network has collected relevant content from all over the Internet for players, and summarized the solution to the problem of automatic attack macro list of World of Warcraft to help players who have difficulties. Find the right way to solve World of Warcraft game problems.
1. Automatic attack macro
/run for z=1,172 do if IsAttackAction(z)then if not IsCurrentAction(z)then UseAction(z);end;end;end;
You need to drag the "Attack" skill icon to any action bar.
2. Automatically select the nearest target macro
/script if GetUnitName("target")==nil then TargetNearestEnemy() end
3. Automatic wand macro
/script if not IsAutoRepeatAction(x) then CastSpellByName("shoot"); end
4. Automatic shooting macro
/script if not IsAutoRepeatAction(x) then CastSpellByName("AutoShoot"); end
Pressing repeatedly will not cancel automatic fire with ranged weapons. You need to drag the "Auto Shooting" skill icon to the x position of the action bar.
The X in (x) is the corresponding position of the action bar. For example, the main action bar is 1-12, and the secondary action bar is 13-24.