PDA

View Full Version : [WoW] Hex Multiple at once ????



suicidesspyder
10-06-2010, 11:33 PM
Was wondering if theres a macro out there someone might have perfected for a mass hex. Like one button and you can hex 5 different targets at once. Or do we have to play tab hex. Just wondering if its a possible thing.

zenga
10-07-2010, 12:05 AM
If you really want to do it fast, I think your best bet is a comma castsequence in combination with mouseover, something like:

toon A::

/castsequence [target=mouseover, harm] reset=combat Hex,,,,

b:
/castsequence [target=focustarget, harm] reset=combat ,Hex,,,
c:
/castsequence [target=focustarget, harm] reset=combat ,,Hex,,
d:
/castsequence [target=focustarget, harm] reset=combat ,,,Hex,
e:
/castsequence [target=focustarget, harm] reset=combat ,,,,Hex

all bound to same button, though this method will not longer work in cata
for arena you could replace target=focustarget with target=arena1 and target=arena2 etc
and reset with whatever you want

lans83
10-07-2010, 12:25 AM
Since the commas are getting takin out in 4.0, would putting that macro on round-robin work, but have something like:

/castsequence [target=mouseover, harm] reset=combat Hex,null

Or something like that? Maybe something similar for a pack of Hunters to spread Hunter's Mark to more than one target in BGs or dungeons?

Ualaa
10-07-2010, 03:20 PM
I suppose you could set up something on a round-robin.

Have the first press send (Tab) to all characters.
Then the second press does not send (Tab) to the initial toon, but does to all of the others.
The the third press does not send (Tab) to the first two toons, but does to all of the others.
Etc.

Not sure if /TargetEnemyPlayer can be pressed multiple times, and will cycle through the targets or not. If that is the case, that will definitely be better then straight Tab which will get pets, totems, treants and such.

Siaea
10-07-2010, 03:24 PM
Ugh...commas are being removed from castsequences??

Sam DeathWalker
10-07-2010, 06:41 PM
Isboxer: (steps are sequencial key presses of the same key)

Step 1
If lead then /targetenemy
assist lead
If name equal follwer 1 then cast hex

Step 2
If lead then /targetenemy
assist lead
If name equal follwer 2 then cast hex


Step 3
If lead then /targetenemy
assist lead
If name equal follwer 3 then cast hex

Step 4
If lead then /targetenemy
assist lead
If name equal follwer 4 then cast hex

Step 5
If lead then /tagetenemy and /cast hex

http://www.lavishsoft.com/wiki/index.php/ISBoxer:World_of_Warcraft

!if (conditions) /command The given command will only be applied to the macro if the given conditions are met. Examples: !if (character is in "deathknights") /cast Icy Touch, or !if (ftl or not ftl) /say That is the question...
A contional could be (character is "nameoffollowerone").

actually you could shorten it a bit:

if toon 1 /targetenemy /cast hex
if toon 2 /targetenemy 1 /cast hex
if toon 3 /assit toon 1 /target enemy /cast hex
if toon 4 /asssit toon 2 /targetenemey 1 /cast hex
if toon 5 /assist toon 3 /targetenemy /cast hex

/targetenemy 1 will go in oppisite direction of /targetenemy it might work with one key press but I doubt it, probably take 3 for 5 guys. Also if not starting with the same target who knows what will happen. But its preety sure you will get 5 different enemies.