Page 1 of 1
Anyone found a way to use Premeditation Rogue Skill
Posted: Sat Dec 12, 2009 7:18 am
by aardkaz
I have looked at the configuration options, and was wondering if anyone found a way to setup their profile file so that they made use of the Rogues Premeditation skill, its a great skill to throw up while out of combat before heading into a fight.
I was almost thinking I could do something like make a macro for the number 1 slot on my actionbar, replacing the attack button with a macro that does:
/attack
/Premeditation
but I just cant seem to figure out how to work this skill in.
Any help is greatly appreciated.
Re: Anyone found a way to use Premeditation Rogue Skill
Posted: Mon Dec 14, 2009 1:20 am
by aardkaz
Still have not found a way to cast Premeditation(Rogue) before running in for a fight... anyone know how?
I'll take any solution, addon, code change, extra macro, whatever, I just really want that extra damage for my opening attack.
Re: Anyone found a way to use Premeditation Rogue Skill
Posted: Mon Dec 14, 2009 1:38 am
by Administrator
You could put it in your onLeaveCombat event. This works assuming that the enemies are somewhat nearby so that you have it ready when you're about to attack the next one.
Code: Select all
<onLeaveCombat>
RoMScript("CastSpellByName('Premeditation');");
</onLeaveCombat>
Re: Anyone found a way to use Premeditation Rogue Skill
Posted: Mon Dec 14, 2009 5:43 am
by aardkaz
Awesome, and by doing this the energy will have refilled that I used... and most fights I will probably make it to the next mob in time in most cases. Thanks for the suggestion

Re: Anyone found a way to use Premeditation Rogue Skill
Posted: Mon Dec 14, 2009 8:45 am
by Grimwauld
Code: Select all
<skill name="ROGUE_PREMEDITATION" hotkey="VK_9" priority="100" inbattle="false"/>
works well for enemies with more seperation - casts it as soon as it finds a valid target to squash; misses sometimes b/c agro is gotten first.
Re: Anyone found a way to use Premeditation Rogue Skill
Posted: Tue Dec 15, 2009 1:35 am
by aardkaz
EXCELLENT! Thanks, I didnt even think of making it that way