Anyone found a way to use Premeditation Rogue Skill

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
aardkaz
Posts: 14
Joined: Thu Dec 10, 2009 1:33 am

Anyone found a way to use Premeditation Rogue Skill

#1 Post 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.
aardkaz
Posts: 14
Joined: Thu Dec 10, 2009 1:33 am

Re: Anyone found a way to use Premeditation Rogue Skill

#2 Post 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.
User avatar
Administrator
Site Admin
Posts: 5340
Joined: Sat Jan 05, 2008 4:21 pm

Re: Anyone found a way to use Premeditation Rogue Skill

#3 Post 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>
aardkaz
Posts: 14
Joined: Thu Dec 10, 2009 1:33 am

Re: Anyone found a way to use Premeditation Rogue Skill

#4 Post 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 :)
Grimwauld
Posts: 4
Joined: Mon Nov 23, 2009 7:34 pm

Re: Anyone found a way to use Premeditation Rogue Skill

#5 Post 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.
aardkaz
Posts: 14
Joined: Thu Dec 10, 2009 1:33 am

Re: Anyone found a way to use Premeditation Rogue Skill

#6 Post by aardkaz »

EXCELLENT! Thanks, I didnt even think of making it that way
Post Reply