What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

Bot not facing targets

Samlock

Member
Joined
Jun 26, 2010
Messages
257
Reaction score
2
[SOLVED - thanks ski!]Bot not facing targets

I've had this problem with every version of HB I've tried and every caster class I've tried so far.... Unless the target is infront of the bot, it simply will not turn to face it when pulling. Is this a known issue with a simple fix? My warrior works absolutely fine :mad:

Absolutely basic config, brand new download and extract. No custom classes or anything.
 

Attachments

Last edited:
I had the same problem with my mage, i switched over to Project E and it worked perfect.
 
Well, then add it to the CC. isn't it just one line of code?
 
Use a custom class.

/end discussion.

Though I appreciate the suggestion, I fail to see the need for the "/end discussion". Using a CC doesn't fix the issue for me, I've tried one since starting this thread.

http://www.buddyforum.de/showthread...Death-Chicken-(Feral-amp-Balance)-Version-2.0 that's the one I've tried, but for some reason it doesn't seem to have made a log... Gonna have to head to bed now as I can barely read what's on screen (lack of sleep - boo) but I'll post a log from using that CC too tomorrow.
 
It seems to be a big HB issue with ranged classes.. Every ranged class I tried had this problem.
 
I had a feeling it might be, thanks Tinsil. I'll stick to my warrior for now :)
 
Not having this problem on my lock, but I hardcode in face statements before each spellcast. Wonder what the issue might be.
 
ski - thank you! When you mentioned how you hardcode in face statements before spellcasts, I thought I'd take a look inside the CC. Surprisingly similar to the old ISX stuff I used to play around with, and pretty easy to understand... Borrowed a little knowledge from your Warlock CC, added in WoWMovement.Face(); before a few spellcasts that are used to pull targets and BAM! Works a treat... First spellcast usually fails as the bot is still turning to the target, but at least it is now facing!

Fantasic help mate, I'll be honest I didn't expect this much of a helpful response!

Thanks again guys, to all for your suggestions! *happy druid botter*

EDIT

Thought I'd clarify what I'm doing for those who might be having this issue with their druids too... NOTE: It may not work at higher levels, my druid is currently level 3... :)

Open up the druid CC in notepad, and find these lines:

Code:
{
                    WoWMovement.MoveStop();

                    slog("Pull with Wrath.");

                    Wrath();
                }

All I did was add in the face code, so it becomes:

Code:
{
                    WoWMovement.MoveStop();

                    slog("Pull with Wrath.");
		    WoWMovement.Face();
                    Wrath();
                }

Hope this helps somebody else too :)
 
Last edited:
Worked a treat for me. If it fails to face targets properly when casting any other spell, just search through the CC and find the line(s) where the spell is being cast and add the WoWMovement.MoveStop(); line, should work ok ;)
 
This thread makes me happy. Proactive users get A+'s.
 
Back
Top