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

Stop N Go movement....gets stuck on nothing. LOG attached.

My ton walks, stops, walk, stops, gets "stuck" on nothing, goes through that routine, then FINALLY get to the target.

in outlands.

kicks 1-68 horde Questing.

LOG:

View attachment 25645

It's the plugin "Refreshment Detection" that does this. Shut it off in the Plugins tab and it should stop.
 
set all mount options on "auto" and try again
 
Megs, ill try that :)


Its already at Auto Tony.

Only thing unticked is "Random"
 
Try a fresh install of HB.(Might actually work very well)
 
It was Allrounder doing it to me when that happened.
 
I am using a Fresh HB install :)

I believe it was Refreshment Detection that was doing it.

EDIT:

Nvm, still doing it with Refreshment Detection completely removed on a fresh HB install.
 
Last edited:
Well, the problem is still not fixed, sadly.

It stil stop-n-go, then gets "stuck".
 
Well, the problem is still not fixed, sadly.

It stil stop-n-go, then gets "stuck".

In the log you provided IT IS REFRESHMENT DETECTION that's causing the problem. Any other plugin wouldn't look for Wild Hog Shank in your bags. Give us an updated log.

Edit: Seeing from your new log, it's still Refreshment Detection, it's looking for Smoked Talbuk Venison.
 
Last edited:
Check post before yours please. And don't use caps at me, young lady.

I removed Refreshment Detection COMPLETELY. Deleted the file so it doesn't show up in Plugins because every time I unticked and "Save & Close" it was still ticked.

:)
 
Check post before yours please. And don't use caps at me, young lady.

I removed Refreshment Detection COMPLETELY. Deleted the file so it doesn't show up in Plugins because every time I unticked and "Save & Close" it was still ticked.

:)

My intentions wasn't to be rude :). I edited my last post, look at it.
 
Last edited:
Hmmm. :( I deleted the plugin, I'll restart HB. Maybe that'll do it.

Note: It might have been looking for that item BEFORE I deleted the plugin.

Let me restart HB, and ill post a new log if it happens.
 
Figured this out, still no fix.

Even with Refreshment Detection COMPLETELY deleted and removed, it keeps detecting Filtered Draenic Water in my bags.

That is for mana, I am a rogue, I don't need Mana. But in settings under Drink ID or w/e it says Filtered Draenic Water.
I delete it, Save & Close, and then when I reopen settings, it STILL says Filtered Draenic Water :/
 
[2:22:39 PM:287] Drinking Filtered Draenic Water
[2:22:39 PM:287] Resting.

lol

you are using fpsware rogue's cc, which he directly copied most of the druid stuff from. maybe it's a leftover error from druid cc?
 
Rahhh :( Probably. Anyway I can disable that? Not the CC, but the drinking/resting.

Also, this never started happening until recently. I used to be able to keep all sorts of Mana potion in my non-man character without it ever trying to drink them. Must just be the CC.
 
Last edited:
Hmmm. While the second option sounds SO fun. lol I'll poke around the CC options.

I got curious.
#region Use Mana Potion
public class NeedToUseManaPot : Decorator
{
public NeedToUseManaPot(Composite child) : base(child) { }

protected override bool CanRun(object context)
{
if (!Utils.CombatCheckOk("", true)) return false;
if (Self.IsPowerPercentAbove((Settings.ManaPotion))) return false;
if (Inventory.ManaPotions.IsUseable) return true;

return false;
}
}

What if that bit is removed?

Or even:

#region Eat and Drink
public class NeedToEatDrink : Decorator
{
public NeedToEatDrink(Composite child) : base(child) { }

protected override bool CanRun(object context)
{
if (Me.IsSwimming) return false;
if (Self.IsBuffOnMe("Innervate")) return false; // Druid only

return (!Self.IsBuffOnMe("Food") && Me.HealthPercent < Settings.RestHealth || !Self.IsBuffOnMe("Drink") && Me.ManaPercent < Settings.RestMana);
}
}
 
Last edited:
Megs, ill try that :)


Its already at Auto Tony.

Only thing unticked is "Random"


[11:57:52 AM:661] FindMountAutomatically: False
[11:57:52 AM:661] UseRandomMount: False

thats from your first log
 
Back
Top