Page 1 of 1
Arcane rune macro
Posted: Mon May 24, 2004 11:55 am
by JC
Hi, I don't even know if this is possible, but I'd like a pretty specific macro.
I want a macro that casts arcane rune whenever its not on.
HOWEVER, I do not want it autocasting if I am under 25% mana, and I don't want it casting if I'm spamming some other hotkey. Also, if I press another hotkey in mid-cast, I'd like it to auto-interrupt (dd) and cast the other spell instead.
Posted: Mon May 24, 2004 12:07 pm
by Rusty~
the first thing can be done easily with a macro, and im sure you could find the code on here somewhere without much effort.
for the second thing, you could assign a custombind to each one of your casting "hotkeys", something like:
Code: Select all
/if ( ${Me.Casting.ID} ) /multiline ; /keypress duck;/keypress duck;/cast whatever
Re: Arcane rune macro
Posted: Tue May 25, 2004 3:28 am
by Chill
JC wrote:I want a macro that casts arcane rune whenever its not on.
This isnt even a macro, this is like 1 line to add to some other macro. Well 2 if you count the SpellCast include which you should have already anyway:
Code: Select all
#Include SpellCast.inc
...
/if (!${Me.Buff["Arcane Rune"].Duration}) /call cast "Arcane Rune"
JC wrote:HOWEVER, I do not want it autocasting if I am under 25% mana, and I don't want it casting if I'm spamming some other hotkey...
Code: Select all
]#Include SpellCast.inc
...
/if (${Me.PctMana} > 25) {
/if (!${Me.Casting}) {
/if (!${Me.Buff["Arcane Rune"].Duration}) /call cast "Arcane Rune"
}
}