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!

HB ARCHIVES: Singular--DO NOT DELETE

In last singular Shaman spell Ascendance dont casts, whenever True or False in options
(Ench shaman)
How to fix it?
 
Hi bobby53,

Thanks for all the work you are putting into this.

I've been using Singular for my Fury warrior and there are three things I would like you to look at.

1.
There is no support for the Sudden Death talent. I've manually edited this into my own routine as highest priority in both normal range and execute range:
//Execute when Sudden Death procs
Spell.Cast("Execute", ret => StyxWoW.Me.HasAura("Sudden Death")),


2.
Noxxic says that you should only use Bloodthirst when not Enraged. In my opinion this is only true when you've talented Unquenchable Thirst.
The problem with this is that sometimes the routine skips a GCD because it is Enraged, but has no rage for any abilities. This seems like a waste of a GCD.
BT also generates rage so I don't think it should be skipped when you do not have Unquenchable Thirst and are Enraged.

On Icy Veins it says:
Use Bloodthirst:
When you are not Enraged, if you have chosen the Unquenchable Thirst talent.
When you are not Enraged, or you have less than 80 Rage, if you have not chosen the Unquenchable Thirst talent.


I've manually edited the requirements for BT into:
//Bloodthirst on cooldown when not Enraged or RagePercent < 80. Procs Bloodsurge.
Spell.Cast("Bloodthirst", ret => !IsEnraged || Me.RagePercent < 80),


3.
In the Execute rotation it says to execute when Enraged or Rage >= 60. Your code beneath only contains the RagePercent > 60.
//Execute while Enraged or with >= 60 Rage.
Spell.Cast("Execute", req => Me.RagePercent >= 60)

I changed it to:
//Execute while Enraged or with >= 60 Rage.
Spell.Cast("Execute", req => IsEnraged || Me.RagePercent >= 60)

Hope this helps...

I added a log for the routine if you might want to look at it.
 

Attachments

Last edited:
Hi bobby53,

Thanks for all the work you are putting into this.

I've been using Singular for my Fury warrior and there are two things I would like you to look at.

1.
There is no support for the Sudden Death talent. I've manually edited this into my own routine as highest priority in both normal range and execute range:
//Execute when Sudden Death procs
Spell.Cast("Execute", ret => StyxWoW.Me.HasAura("Sudden Death")),


2.
Noxxic says that you should only use Bloodthirst when not Enraged. In my opinion this is only true when you've talented Unquenchable Thirst.
The problem with this is that sometimes the routine skips a GCD because it is Enraged, but has no rage for any abilities. This seems like a waste of a GCD.
BT also generates rage so I don't think it should be skipped when you do not have Unquenchable Thirst and are Enraged.

On Icy Veins it says:
Use Bloodthirst:
When you are not Enraged, if you have chosen the Unquenchable Thirst talent.
When you are not Enraged, or you have less than 80 Rage, if you have not chosen the Unquenchable Thirst talent.


I've manually edited the requirements for BT into:
//Bloodthirst on cooldown when not Enraged or RagePercent < 80. Procs Bloodsurge.
Spell.Cast("Bloodthirst", ret => !IsEnraged || Me.RagePercent < 80),


Hope this helps...

I added a log for the routine if you might want to look at it.


Nice Metski :)

Can you upload your routine, or pm it to me please? I'd like to give it a try.

Thanks in advance.
 
Quick question, is it possible for the bot to focus down a certain boss first? How do I make the bot see the boss as another add? So it wont kill every add in a pack but kill the boss first
 
Hey bobby53, can you post a changelog for the new version you just came out with today? It didn't come in the zip file like it usually does.
 
Quick Note: just posted two releases in quick succession. If you run a Death Knight, be sure to use 4.0.0.3826 if you use Glyph of Blood Boil (fixes for exception occurring in that specific case)

-Bobby53
 
Quick Note: just posted two releases in quick succession. If you run a Death Knight, be sure to use 4.0.0.3826 if you use Glyph of Blood Boil (fixes for exception occurring in that specific case)

-Bobby53

i removed the Glyph of Blood Boil and the CR start fine

thx bobby
 
Last edited:
With version Singular-4-3826 I'm having some problems with the Shadow Priest routine.

It keeps on spamming Mind Spike. I think it has to do with the aura "Surge of Darkness". When I change the aura name to it's proc spell id (Me.HasAura(87160)) it works normally.

Also the routine casts Prayer of Mending below 90% HP, because this is now a cast spell it takes you out of Shadowform. Maybe it would be better to remove this or lower the HP requirement to 40% or something.

Info for both issues is in the log.
 

Attachments

Last edited:
Ret paladin isn't casting any spells with any of the bot bases. Tried clean installs of latest version along with beta version of honorbuddy. Combat hasn't worked with my paladin for the past couple releases.
 

Attachments

When doing LFR on my fury warrior when my Battle Shout gets overwritten by a hunter buff or dk buff it automatically does Battle Shout again. This looks really bottish because this happens a lot (70 battle shouts in I think 1 LFR, see attached log).

Could you put in a check if there is a similair buff already active so that it does not spam Battle Shout.
 

Attachments

Having problems with feral druid routine. Wants to come out of form to faerie fire first then go kitty. Please fix?
 
View attachment 3580 2014-10-25 19.27.txt My Arms warrior randomly going to def stance and staying in it for ever. And sure i have chosen Battle stance in Class config. I switch it manually but after some time it goes def again.

P.S. Okay. As i can guess its all about taunt which puts me to DS. I have found its using it. I excluded it from Common.cs and it seems its okay now. It should be removed from the rotation imho.
 
Last edited:
When doing LFR on my fury warrior when my Battle Shout gets overwritten by a hunter buff or dk buff it automatically does Battle Shout again. This looks really bottish because this happens a lot (70 battle shouts in I think 1 LFR, see attached log).

Could you put in a check if there is a similair buff already active so that it does not spam Battle Shout.

it does the same for legacy of the emperor on windwalker monk.
 
not sure if its the cc thats something wrong with, but the priest wont move at all. if i walk up to the tank in dungeonbuddy it starts to heal, but it wont go on its own. every other class that ive tried have no problems with that, tried to reinstall hb but nothing helps. and my lock seems to love humping the mail box in sw..
 
Back
Top