
Originally Posted by
Moridam
thanks for the tips re: wamouras, gonna check out both spots and see if anyone's hanging around there next time day rolls around.
another couple of questions: is ultion mantle worth using while perfect counter is up, and if it is, how could i do that with spellcast? i know it's some sort of ifBuffActive type rule, but i'm not entirely sure i've written one of those before. do i need the actual buff ID number, or will the standard name work fine for that?
Can just use the name (<if buffactive="Perfect Counter"> <equip when etc etc/> </if>) just remember that the rule won't fire as you cast perfect counter, need something more like this:
Code:
<if mode="OR" buffactive="Perfect Counter" Spell="Perfect Counter">
<equip when="aftercast|Idle"><back lock="True">Utilion Mantle</back></equip>
</if>
Without autoexec, spellcast can't see you lose perfect counter though, you need to hit something else after it wears to swap back.
Haven't seen testing if it's worthwhile to do this or not, this is just how.