View Single Post
05-27-18, 12:31 PM   #2
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,929
#showtooltip
/cast [mod:shift,@arena1];[mod:ctrl,@arena2];[mod:alt,@arena3]Cyclone;[harm]Solar Wrath;Lifebloom
/cast [mod:ctrlshift,@focus]Cyclone


I'm not aware of any order of importance in this example but I could be wrong.

What I see is as follows, while pressing the button:

if you press shift while targeting arena1 ( I assume this is the unit id) then it will cast Cyclone
if you press ctrl while targeting arena2 it will cast Cyclone
if you press alt while targetting arena3 it will cast Cyclone
Otherwise if you are targetting an enemy it will cast Solar Wrath to harm them
Or if you are targetting a friend it will cast Lifebloom

However, because you have put ';' after each mod test it may terminate that test and move straight to the [harm] test.

I believe it then waits for the global cooldown before validating the next line which
While pressing ctrl and shift and you have an active focus it will cast Cyclone on them.

However, it may skip over the second line due to time constraints on the first line's functionality

The following may work ( untested ) so that all tests are made before deciding if Cyclone needs to be cast, and if not then react on the harm test options.
/cast [mod:shift,@arena1],[mod:ctrl,@arena2],[mod:alt,@arena3],[mod:ctrlshift,@focus] Cyclone; [harm]Solar Wrath;Lifebloom
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
  Reply With Quote