I was wondering if anyone has or knows of a mod that will initiate auto-attack on any hotbar click. Basically, I'm in the process of replacing everything with Ace mods, and would like to switch to Bongos or CardBars from Discord. I tried the switch last week, but my raid DPS went down a lot as I kept forgetting to manually initiate autoattack, and just found myself slamming hotkeys without any rage! :) This is the only problem holding me back from having an almost completely Ace'd add-ons directory.
Also, DY/Retaliate don't have this feature (they will, however, trigger autoattack when you take damage) and I'm so set in my ways, I'd rather not further clog up my hotbar with the auto-attack symbol.
It does almost exactly what I need it for! Although, I'm trying to do one little quick fix for it. I was looking over the code (trying to learn myself, but some stuff still just leaves me boggled) and am trying to edit out the portion that will only initiate auto-attack if I'm in combat. Basically, if I'm in PvP sometimes I will drop out of combat when fighting multiple opponents. With Discord, I could just press one of my keys and it would automatically initiate combat, wether i was already in combat or not. Is it possible to make a quick edit on AutoAttack to remove the check if I'm already in combat? Thanks a bunch!
i do not want to autoattack all the time - just want to start attack when i press a special button that has cd (i.e. sinnister strike). hm maybe possible with a simple macro dunno
actually, that will toggle auto-attack on and off with each press...hmm
Quote from "WoWWiki" »
If you need a way to always engage auto-attack, rather than toggle it on or off, one workaround is AssistUnit("player"): this will always attack if you have "Attack on assist" checked in the Advanced tab of the Interface Options panel.
I was wondering if anyone has or knows of a mod that will initiate auto-attack on any hotbar click. Basically, I'm in the process of replacing everything with Ace mods, and would like to switch to Bongos or CardBars from Discord. I tried the switch last week, but my raid DPS went down a lot as I kept forgetting to manually initiate autoattack, and just found myself slamming hotkeys without any rage! :) This is the only problem holding me back from having an almost completely Ace'd add-ons directory.
Also, DY/Retaliate don't have this feature (they will, however, trigger autoattack when you take damage) and I'm so set in my ways, I'd rather not further clog up my hotbar with the auto-attack symbol.
Thanks in advance for any help guys!
-Ammo
It does almost exactly what I need it for! Although, I'm trying to do one little quick fix for it. I was looking over the code (trying to learn myself, but some stuff still just leaves me boggled) and am trying to edit out the portion that will only initiate auto-attack if I'm in combat. Basically, if I'm in PvP sometimes I will drop out of combat when fighting multiple opponents. With Discord, I could just press one of my keys and it would automatically initiate combat, wether i was already in combat or not. Is it possible to make a quick edit on AutoAttack to remove the check if I'm already in combat? Thanks a bunch!
--Breii
i do not want to autoattack all the time - just want to start attack when i press a special button that has cd (i.e. sinnister strike). hm maybe possible with a simple macro dunno
/attack
/cast Sinister Strike
so..
/script AssistUnit("player"); CastSpellByName("Sinister Strike")
thx a lot.