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!

ShamWOW for HB2 - An Enhance/Elemental/Resto + PVP/RaF Healbot by Bobby53

Status
Not open for further replies.
I dont know why, but 4.1.5 not working with HB 1.9.5.4....Any ideas friends?
 
Happening to me too, when u are playing for about more or less a pair of hours, the "cast" spells are less responsive, the time between one cast and another is delayed 2 o sometimes more seconds. for example 1 cast only in all fight. Any idea? restarting HB fix it so...i dunno what is wrong.

had the same problem and i actually found a way to fix it.

when the cc checks for adds every add is added to a list but is never removed from it. that causes this list to become very very large.
so the cc goes through all of the units in the list until it finds the one it needs.

fixing this is pretty simple:

you can find the function "CheckForAdds()" at line 3989
just add

foreach (WoWUnit unit in _mobList)
{
if (unit == null || !unit.IsAlive)
{
_mobList.Remove(unit);
}
}

behind the first bracket of CheckForAdds()

it should look like this:
private int CheckForAdds()
{
foreach (WoWUnit unit in _mobList)
{
if (unit == null || !unit.IsAlive)
{
_mobList.Remove(unit);
}
}


Stopwatch timerCFA = new Stopwatch();

[...]
 
Huge thanks mate, +repu for you!! But please, im completely a nuub in coding, could you upload your one fixed? huge thanks in advance
 
Last edited:
There you go ;)
just replace the shaman.cs in the ShamWoW folder
(i hope bobby53 is fine with me uploading edited files from his cc :X)
 

Attachments

hm.. at the moment i'm not really sure whether this actually fixes the problem...
had the bot running with it for 3 hours this morning and it seemed to be working perfect all the time..
but now i had to restart hb and it slows down even after about 60 kills, pretty strange.

but even if it did not fix the problem, it should still speed up the cc since it does not have to "search" for the right unit(s)

does it seem to help you? would be interesting
 
Last edited:
Hey guys, sorry if this is a stupid question but how do i change it from putting flametounge on my both of my weapons and change it so it puts windfury on both of them... cheers :)

EDIT: just installed new version and realised it had a gui... sorry for post

thats the dumbest thing you could do. you should always roll with flametongue on your offhand. it's a 30% dps increase, and if you don't use it - you're a noob.
 
why does the healbot only heal with chain heal? any way to fix that? single target healing with chain heal only is kinda stupid
 
why does the healbot only heal with chain heal? any way to fix that? single target healing with chain heal only is kinda stupid

Based on amount of mana per point healed, Chain Heal is actually the most mana efficient healing spell you have.
 
ShamWOW 4.1.6 Fanupdate.zip for HB 1.9.5.5
I do not take any credit for this, it's 99% Bobby53's work. This cc is flawless! If you expierence problems it is either hb, the profile or you! I will not provide any support for this cc- it does not need it! I will not be answering any stupid questions.

Changelog:
#Updated for HB 1.9.5.5
#tweaked CheckForAdds()
 
Last edited by a moderator:
Thanks for the update. Seems to be working alright.

I have having some issues with PvP tho. At least I think its an issue.

I recently switched over to Enhancement, and when running BGs I notice my guy hardly ever does any damage and mainly worries about healing. Im in the level 70s now, and the BG is about half way in, im at 20k dmg/ 100k healing. I assume it still thinks it in Resto spec?
 
Thanks for the update. Seems to be working alright.

I have having some issues with PvP tho. At least I think its an issue.

I recently switched over to Enhancement, and when running BGs I notice my guy hardly ever does any damage and mainly worries about healing. Im in the level 70s now, and the BG is about half way in, im at 20k dmg/ 100k healing. I assume it still thinks it in Resto spec?

Change the pvp-settings to "Combat Only" in the pvp tab inside the config thingy. If that doesnt do the trick, I have no clue.
 
Anybody have problem with use this CC with Russian wow client?

My bot spam totem.

I Use ShamWOW 4.1.6 Fanupdate.zip for HB 1.9.5.5
 

Attachments

Last edited:
I have a little issue with movement.
I am using it on a lev 50 enhancement shaman and I've noticed this problem for quite sometime.
The bot starts with a ranged pull then moves in mele range. The problem is that it will spin alot when it gets to the target....like trying to get into the middle of the target but spinning like a idiot.

Could the ranged pull be changed to something like:
Cast Lightning Bolts till the targets gets into mele and then engage like normal?
Either that or fix the spinning when the bot moves into mele.
Thanks.

Hm...seems disableing CC movement helps with the spinning problem :) for now at least.
 
Last edited:
Status
Not open for further replies.
Back
Top