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

Hunter problem - no pet appeared

lofi

New Member
Joined
Jul 12, 2010
Messages
203
Reaction score
15
Whenever the bot dismounts it thinks it does not have a pet, which would not be a big deal.. except that after it casts Call Pet I get a message "No pet appeared" and then it sits there trying to cast Revive Pet. This happens every time the bot dismounts or leave a battleground etc. I tried increasing the Thread.Sleep in the Custom Class after Call pet from 500 to 1500 but it seems to make no difference at all. Has anyone discovered a workaround for this issue?
 
Which CC are you using? Acteon doesnt cause this problem for me.
 
I am using the default Hunter CC that came with HB 1.9.5.3

Here is the code around the revive pet.. I actually modified it to look more like Acteon CC with the 500 and 1500 sleeps. I could try using Acteon but other than this small issue I really like the default CC.

if (!Me.Mounted && !Battlegrounds.IsInsideBattleground && SpellManager.KnownSpells.ContainsKey("Call Pet") && !Me.GotAlivePet)
{
Thread.Sleep(500);
CallPet();
Thread.Sleep(1500);
if (!Me.GotAlivePet)
{
slog("No pet appeared.");
FreezingTrap();
RevivePet();
}
}
 
Have you tried increasing the sleep to 3 seconds or so?
 
Acteon's or Hawkeye are both far superior to the stock CC specially at higher levels when they take advantage of all the spells you have. I would recommend using one of them regardless of if you get this issue solved.
 
Have you tried increasing the sleep to 3 seconds or so?

I will give this a try, although I can tell from watching the game that the pet appears almost immediately (definitely in under second) but I guess it depends how frequently HB updates the game state.

Acteon's or Hawkeye are both far superior to the stock CC specially at higher levels when they take advantage of all the spells you have. I would recommend using one of them regardless of if you get this issue solved.

Well I'm level 46 at the moment. How are Acteon and Hawkeye CCs in PvP? I am running the bot in Mixed mode and I find the default CC is pretty decent in PvP at this level. What level do you recommend for these CCs?
 
It sounds as though the RevivePet function doesn't run Me.GotAlivePet and just checks for a completed cast or something. Can you add if(Me.GotAlivePet){} to the RevivePet code? That way it should run the check everytime it goes to revive. This is assuming it is spamming the revivepet function.
 
Back
Top