What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Priest Routine WoD 6.0.3

Hi there, Pasterke!
I found 1 bug, bot switching between chakras all the time.
Can you fix it?
Hope to hear you soon =)

View attachment 162861

That's a human fault, not a bug.

Select the chakra you want in the Holy Settings.

It's standard serenity for groups <= 10 or if you are not in a group ( = 0) , sanctuary for groups > 10 :)
 
Last edited:
Hi there!

Thank you for the quick response, that's what I have:

2.jpg

P.S. Also I've tried to change the setting for party more then 5 people (few second ago) pressed save and close, nothing happens, checked it was the same as you see on a screen.
 
In the precombatbuffs and combatbuffs he's checking what he need to use.

If you choose Serenity, he will only cast Holy Word: Serenity, on Sanctuary he will cast Holy Word: Sanctuary.

There's no reason he will switch from chakra's, unless you cancel the aura to cast HWSerenity or HWSanctuary.

HWSanctuary should only be used on groups > 10. That's why I put it standard that way in the settings :)

On your picture I see you choose everywhere Serenity, he will never cast HWSanctuary.

For the moment i'm testing it out in dungeons, and it works very good.

Check for new versions, because I update or add litlle changes.
 
Last edited:
using this in LFR, Dungeon and pugs it just keeps trying to buff stamina.. ive not changed any setting and deleted and re-svn'd the combat but it just keeps spamming fortitude. any way to turn off auto buff as a feature?
 
In the precombatbuffs and combatbuffs he's checking what he need to use.

If you choose Serenity, he will only cast Holy Word: Serenity, on Sanctuary he will cast Holy Word: Sanctuary.

There's no reason he will switch from chakra's, unless you cancel the aura to cast HWSerenity or HWSanctuary.

HWSanctuary should only be used on groups > 10. That's why I put it standard that way in the settings :)

On your picture I see you choose everywhere Serenity, he will never cast HWSanctuary.

For the moment i'm testing it out in dungeons, and it works very good.

Check for new versions, because I update or add litlle changes.

Updated to the latest version. Nothing changed =/ Still spamming switching chakras, when I need to use only Serenity in 5 ppl
 
using this in LFR, Dungeon and pugs it just keeps trying to buff stamina.. ive not changed any setting and deleted and re-svn'd the combat but it just keeps spamming fortitude. any way to turn off auto buff as a feature?

Thx for sharing :)

You wasn't he only bot in there and someone also used my routine or another routine with the same wrong code. It should be fixed now. He only check if you have the buff, if others don't have it, don't worry, they will ask for it :)
 
Updated to the latest version. Nothing changed =/ Still spamming switching chakras, when I need to use only Serenity in 5 ppl

I don't know why he do that for you.

There's a check code that goes check in your settings what chakra you choosed for party <= 5.

<buttonChakraSernenity500>True</buttonChakraSernenity500>
<buttonChakraSanctuary500>False</buttonChakraSanctuary500>
<buttonChakraSernenity510>True</buttonChakraSernenity510>
<buttonChakraSanctuary510>False</buttonChakraSanctuary510>
<buttonChakraSernenity520>False</buttonChakraSernenity520>
<buttonChakraSanctuary520>True</buttonChakraSanctuary520>

Those are radiobuttons, you can only choose 1 for each settings.

#region chakras
public static bool needChakraSerenity
{
get
{
if (partyCount > 10) return P.myPrefs.buttonChakraSernenity520;
if (partyCount > 5 && partyCount <= 10) return P.myPrefs.buttonChakraSernenity510;
return P.myPrefs.buttonChakraSernenity500;
}
}
public static bool needChakraSanctuary
{
get
{
if (partyCount > 10) return P.myPrefs.buttonChakraSanctuary520;
if (partyCount > 5 && partyCount <= 10) return P.myPrefs.buttonChakraSanctuary510;
return P.myPrefs.buttonChakraSanctuary500;
}
}
#endregion

Once you saved it then precombatbuffs && combatbuffs go check what your choise was.

if (await CastBuff(CHACKRA_SERENITY, MeIsHoly && needChakraSerenity && !buffExists(CHACKRA_SERENITY, Me))) return true;
if (await CastBuff(CHACKRA_SANCTUARY, MeIsHoly && needChakraSanctuary && !buffExists(CHACKRA_SANCTUARY, Me))) return true;

After that in the combat routine :

if (await CastHeal(HOLY_WORD_SERENITY, _serenityPlayer != null && buffExists(CHACKRA_SERENITY, Me), _serenityPlayer)) return true;
if (await CastGroundSpell(HOLY_WORD_SANCTUARY, _sanctuaryPlayer != null && buffExists(CHACKRA_SANCTUARY, Me), _sanctuaryPlayer)) return true;



As you can see, there's no reason why he would change from chakra. Unless you modified the code by yourself :)
 
Now it spams 'Target is too high level'
And its still trying to buff fortitude

:(

yup still 'more powerful spell is already active' in LFR, Dungeon & any group even small party.
 
Last edited:
Now it spams 'Target is too high level'
And its still trying to buff fortitude

:(

yup still 'more powerful spell is already active' in LFR, Dungeon & any group even small party.

I think you have a plugin problem. More powerfull spell error is one that you get if you wanna use a flask or crystal. Nothing to do with Power Word: Fortitude.
 
I think you have a plugin problem. More powerfull spell error is one that you get if you wanna use a flask or crystal. Nothing to do with Power Word: Fortitude.

Nothing to do with flask or crystal as they are deselected by default. i have no plugins and i have no addons.
i use no other combat rotation so folder only contains your rotation. (i have used the wowking2 trial so i know my bot/client works fine.)
i load HB, select your profile loads fine no error messages.

when pressing start combat log says "Casting: Power Word: Fortitude on: Lvl 100 Horde Priest"
and ingame red error message shows saying 'a More powerful spell is already active' (its trying to cast PW:F)
The rotation doesn't move past this point.

Note: i removed my food buff (feast of waters) and it stops spamming fortitude but now says 'Your target is too high level' when ever a spell is cast.

none of the options for flasks or crystal is selected. yet, like you've said its trying to buff with something..


NOTE 2: Found it!!!!!!
if you have the alchemist item 'Alchemists flask' in your bag it tries to buff you with it constantly.
Alchemist's Flask - Item - World of Warcraft

i deleted the item and now your rotation works fine


!!!! thanks will provide more feed back as we go along many thanks!!!!


Note 3: please provide support for solace :D as its amazing for mana regen.
 
Updated to the latest version. Nothing changed =/ Still spamming switching chakras, when I need to use only Serenity in 5 ppl

i can concur with this users problem, it does just swap from chakra to chakra every 10secs no matter what combination you have the toggle buttons (looking for raid)
 
i can concur with this users problem, it does just swap from chakra to chakra every 10secs no matter what combination you have the toggle buttons (looking for raid)

You guys use an English client ?
 
Back
Top