Cast Elite Skills 70

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
C3PO
Posts: 109
Joined: Sun Jul 10, 2011 2:45 pm

Cast Elite Skills 70

#1 Post by C3PO »

Hello,

I tried to find the skill name for mage/warrior lvl70 (Wisdom and Bravery) but I couldn't find it in the skills DB.
Could someone tell me what it is or how to find it out?

thanks
Last edited by C3PO on Thu Jan 31, 2013 7:27 pm, edited 2 times in total.
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Cast Elite Skills 70

#2 Post by rock5 »

  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan
C3PO
Posts: 109
Joined: Sun Jul 10, 2011 2:45 pm

Re: Cast Elite Skills 70

#3 Post by C3PO »

Sorry .. I wasn't exact enough ;)

I know the name of the skill but whats the name of the skill that the bot uses? (like MAGE_FLAME)
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Cast Elite Skills 70

#4 Post by lisa »

That skill isn't currently in the rombot skills database.

In order to add it we will need to know the skill id and buff Id, if you can get that then it should be easy enough to add.
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Cast Elite Skills 70

#5 Post by rock5 »

I'm confused. That skill looks like a passive that improves "Brute Strength" which also looks like a passive. But the description says "After it is used, it ...". How can it be used it it's a passive?
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan
C3PO
Posts: 109
Joined: Sun Jul 10, 2011 2:45 pm

Re: Cast Elite Skills 70

#6 Post by C3PO »

@Lisa: I don't know how to get the ID for the skill, but the buff ID is: 623148. Maybe you could advise me how to get the skill id.

@rock5: it works like a buff. eg: MAGE_ELEMENTAL_CATALYST
the buff (623148) lasts for 30 sec and the skill has a cool down of 60 sec
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Cast Elite Skills 70

#7 Post by rock5 »

Well the addon ItemPreview tells me the skill id is 499589.

Ok let me take a stab at this

Code: Select all

<skill name="MAGE_WISDOM_AND_BRAVERY" id="499589" type="buff" buffname="623148" range="225" cooldown="60" target="enemy" />
Try that. Put it in skills.xml in the database folder and then add the skill to your profile as usual. I used the trick to use the skill at the beginning of battle.
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan
C3PO
Posts: 109
Joined: Sun Jul 10, 2011 2:45 pm

Re: Cast Elite Skills 70

#8 Post by C3PO »

Thanks a lot!

are you sure that

Code: Select all

target="enemy"
is correct. I thought it needs to be

Code: Select all

target="self"
edit

I changed the entry to

Code: Select all

	<skill name="MAGE_WISDOM_AND_BRAVERY" id="499589" type="buff" buffname="623148" cooldown="60" target="self" />
and tested it and it worked fine.

thanks again
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Cast Elite Skills 70

#9 Post by rock5 »

But doesn't that also cast it out of battle too? Is that what you want?
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan
C3PO
Posts: 109
Joined: Sun Jul 10, 2011 2:45 pm

Re: Cast Elite Skills 70

#10 Post by C3PO »

I was just searching for something like onEnterCombat() but didn't find anything ... but now I understand your trick ;)


will there come something like an onEnterCombat Event?

or better
OnEnterEliteCombat()
OnEnterBossCombat()
Post Reply