PDA

View Full Version : EM NS CL...or LB?



Hypermoo
07-15-2008, 05:23 PM
I want to setup an EM NS, then cast chain lightning if it is available, and if it is not available, then cast lightning bolt instead.

I can't use a cast sequence with a reset timer, because this is not my primary macro for casting CL. I can't use castrandom, because I want CL to have priority over LB. I tried just putting LB on the line below CL, but then I just get an error saying spell not ready yet.

Any ideas? ty.

Sarduci
07-15-2008, 05:51 PM
Use a modifier key. When you push shift/alt/etc it can switch it to LB for you.

Ughmahedhurtz
07-15-2008, 05:57 PM
I thought you could do double /castrandom lines, like so:

/cast elemental mastery
/cast nature's swiftness
/castrandom chain lightning
/castrandom lightning bolt

Hypermoo
07-15-2008, 05:59 PM
The time required to realize CL timer is not up, and push an extra key, would make using modifier not a viable option. This is the nuke button for arena, so any wasted time is bad.

Tizer
07-16-2008, 04:52 AM
Drag a normal CL button to an action bar, if its not macro'd and you have a mod, you will see the count down timer for it, then you will know when its ready.

I do this for CL / EM / NS so i always know then the boom button is ready.

Hypermoo
07-16-2008, 08:08 AM
I tried the multiple castrandom lines. I still get the spell is not ready yet error.

The whole point is to have a worry free nuke button. There is already enough going on in arenas, so i'd rather not waste time checking cooldowns. Looks like there isn't much choice though. :(

aNiMaL
07-16-2008, 09:26 AM
adding "#show Chain Lightning" above the rest of the macro shows the tooltip&icon from the spell, so your screen won't get cluttered with buttons.
This is only an option if you don't care for the icon showing the normal spell tho.

Gaffy
07-16-2008, 09:57 AM
I thought you could do double /castrandom lines, like so:

/cast elemental mastery
/cast nature's swiftness
/castrandom chain lightning
/castrandom lightning boltThat would work only if you put a "," after the chain lightning. For castrandom to ignore a spell on cooldown it needs another option. The problem with doing it this way is you then have a 50% chance that it would choose the blank option and move on to the next line when cl is ready. You could put multiple cl's in the castrandom up to the 255 char limit to minimize the chance of it happening but there is always that chance that it will.

Sarduci
07-16-2008, 10:17 AM
I thought you could do double /castrandom lines, like so:

/cast elemental mastery
/cast nature's swiftness
/castrandom chain lightning
/castrandom lightning boltThat would work only if you put a "," after the chain lightning. For castrandom to ignore a spell on cooldown it needs another option. The problem with doing it this way is you then have a 50% chance that it would choose the blank option and move on to the next line when cl is ready. You could put multiple cl's in the castrandom up to the 255 char limit to minimize the chance of it happening but there is always that chance that it will.I was under the impression that /castrandom can't fall through to the next line. Is this documented anywhere?

Toned
07-16-2008, 11:47 AM
#showtooltip Elemental Mastery
/use trinket name
/stopcasting
/use racial
/stopcasting
/cast nature's swiftness
/stopcasting
/cast elemental mastery
/stopcasting
/cast [target=focustarget] chain lightning
/cast [target=focustarget] lightning bolt

This will pop your spell dmg trinket / racial / ns/ em all in 1 press and then CL your focus' target, if CL isn't up then it will LB the focus' target.

Ughmahedhurtz
07-16-2008, 02:28 PM
Boon. Don't need /stopcasting anymore. :P

Gaffy
07-16-2008, 06:08 PM
I thought you could do double /castrandom lines, like so:

/cast elemental mastery
/cast nature's swiftness
/castrandom chain lightning
/castrandom lightning boltThat would work only if you put a "," after the chain lightning. For castrandom to ignore a spell on cooldown it needs another option. The problem with doing it this way is you then have a 50% chance that it would choose the blank option and move on to the next line when cl is ready. You could put multiple cl's in the castrandom up to the 255 char limit to minimize the chance of it happening but there is always that chance that it will.I was under the impression that /castrandom can't fall through to the next line. Is this documented anywhere?I will only if there is the option of doing nothing is there, that's the reason for ending with a comma, it adds a "do nothing" option which would then cause the macro to go to the next line.

Hypermoo
07-18-2008, 08:43 AM
#showtooltip Elemental Mastery
/use trinket name
/stopcasting
/use racial
/stopcasting
/cast nature's swiftness
/stopcasting
/cast elemental mastery
/stopcasting
/cast [target=focustarget] chain lightning
/cast [target=focustarget] lightning bolt

This will pop your spell dmg trinket / racial / ns/ em all in 1 press and then CL your focus' target, if CL isn't up then it will LB the focus' target.Did you test this? As I said above, when I try putting the CL and LB on different lines, I get a spell not ready yet error. It will cast the CL if the timer is up, but never casts the LB.