PDA

View Full Version : 1 hit button


optiplex
03-12-2006, 03:59 AM
Hi, I'm trying to make a macro that cast Curse of the elements and Immolate in 1 hit or Immolate and conflag in 1 key press.

I'm using this :

/script CastSpellByName('Amplify Curse'); SpellStopCasting(); CastSpellByName('Curse of Agony')

which works on Amplify and CoA

It doesnt work if I change it to :

/script CastSpellByName('Curse of the elements'); SpellStopCasting(); CastSpellByName('Immolate')

?

Sry im nub in macro thing, pls help thanks

Mallstrop
03-12-2006, 05:45 AM
I think it's because you'll cast CoE again and again and again since there's nothing to stop you and it has a global cool down.

I've never looked into WoW macros but I think you'll need to put in a statement to check if it allready has CoE on before you start to cast.

Narak
04-12-2006, 09:35 AM
Because CoE causes the global cooldown it is impossible to do it in one press. It should however work with 2 key presses.

optiplex
05-12-2006, 10:37 AM
It doesnt work in 2 press, It keeps on COE the target hehe.. How do I make it works?

pericles
05-12-2006, 03:49 PM
/script CastSpellByName will permenantly give an error in patch 2.0.1 as this is no longer a supported command in combat.

Check out Neuro's Macro Guide for WoW 2.0 (v2) (http://forums.worldofwarcraft.com/thread.html?topicId=51896128&sid=1) for info on the new macro language syntax. Its actually very flexible.