Page 1 of 1

Cast Elite Skills 70

Posted: Thu Jan 31, 2013 1:53 pm
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

Re: Cast Elite Skills 70

Posted: Thu Jan 31, 2013 2:29 pm
by rock5

Re: Cast Elite Skills 70

Posted: Thu Jan 31, 2013 7:04 pm
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)

Re: Cast Elite Skills 70

Posted: Thu Jan 31, 2013 9:58 pm
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.

Re: Cast Elite Skills 70

Posted: Fri Feb 01, 2013 2:49 am
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?

Re: Cast Elite Skills 70

Posted: Fri Feb 01, 2013 10:08 am
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

Re: Cast Elite Skills 70

Posted: Fri Feb 01, 2013 12:38 pm
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.

Re: Cast Elite Skills 70

Posted: Fri Feb 01, 2013 12:55 pm
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

Re: Cast Elite Skills 70

Posted: Fri Feb 01, 2013 1:13 pm
by rock5
But doesn't that also cast it out of battle too? Is that what you want?

Re: Cast Elite Skills 70

Posted: Fri Feb 01, 2013 1:27 pm
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()