Page 1 of 1

Need Help for BM

Posted: Fri Apr 22, 2011 6:54 am
by M4gm4
Hi, can someone show me, how i create a profile for an Battlemonk ?

<skills_priest> .... i dont know how it works with the elite and rebuff.

Code: Select all

<skill name="PRIEST_BATTLE_MONK_STANCE" hotkey="VK_4" priority="100" rebuffcut="900" inbattle="true" />
		<skill name="PRIEST_POWER_BUILD_UP" hotkey="VK_5" priority="99" rebuffcut="900" inbattle="true" />
		<skill name="PRIEST_AMPLIFIED_ATTACK" hotkey="VK_6" priority="98" rebuffcut="1800" inbattle="true" />
does not work ..
the char runs, hit , buff, hit , buff ,,buff, buff, ...out of mana ,,

Re: Need Help for BM

Posted: Fri Apr 22, 2011 7:04 am
by lisa
Maybe double check the buff id for battle monk?

make a macro of this

Code: Select all

/script i=1 while UnitBuff( "player", i) ~= nil do name, __, __, ID = UnitBuff( "player", i) SendSystemChat(name.." "..ID) i = i + 1 end
It will give you the buff Id's. If it says 501977 for battle monk then the issue is something else.

Do you get the bot to cast battle monk in your profile, like on skill cast ?

I'm not sure what rebuffcut is, haven't seen that before.

Re: Need Help for BM

Posted: Fri Apr 22, 2011 7:10 am
by M4gm4
BATTLE_MONK_STANCE iss an elite buff from P/W

i need, that the script buffs , and rebuff after 15 minutes

Re: Need Help for BM

Posted: Fri Apr 22, 2011 7:13 am
by rock5
rebuffcut is used if you want to recast a buff before it expires. By setting rebuffcut to 900 you are saying you want to recast the skill 15 minutes before it is due to expire. Remove that and it should work.

Re: Need Help for BM

Posted: Fri Apr 22, 2011 7:19 am
by M4gm4
yayyyyy BIG THX ,, it works now ^^
thanks thanks thanks :)