Try using this http://www.thebuddyforum.com/archives/21741-plugin-nav-autoprecision-no-more-stop-go.html
If that does not fix it then we are at least narrowing down what is causing the issue.
the link does not work for me i get "access denied"

Try using this http://www.thebuddyforum.com/archives/21741-plugin-nav-autoprecision-no-more-stop-go.html
If that does not fix it then we are at least narrowing down what is causing the issue.
Try using this http://www.thebuddyforum.com/archives/21741-plugin-nav-autoprecision-no-more-stop-go.html
If that does not fix it then we are at least narrowing down what is causing the issue.
Try this
Hi Natfoth,
I tried with AutoPrecision and nothing changed for me, still got the paus at almost every waypoint. I tried changing the values, I tried with it on, with it off, on different toons, cc's and profiles. I tried with AutoAngler2 and with GatherBuddy2 and got the same results. I also tried with every single plugin turned off and sometimes with a few turned on. Here is a log on my druid from trying to farm herbs.
//!CompilerOption:Optimize:On
// the above line is a flag that turns on optimization.. leave it as it is
// ********************* Highvoltz's Premium Honorbuddy Plugin Template **********************
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Windows.Forms;
using System.Diagnostics;
using System.IO;
using Styx;
using Styx.Helpers;
using Styx.Logic;
using Styx.Logic.AreaManagement;
using Styx.Logic.BehaviorTree;
using Styx.Logic.Combat;
using Styx.Logic.Inventory.Frames.Gossip;
using Styx.Logic.Inventory.Frames.LootFrame;
using Styx.Logic.Pathing;
using Styx.Logic.Profiles;
using Styx.Plugins;
using Styx.Plugins.PluginClass;
using Styx.WoWInternals;
using Styx.WoWInternals.World;
using Styx.WoWInternals.WoWObjects;
using System.Collections.Specialized;
namespace AutoPrecision
{
class AutoPrecision : HBPlugin, IDisposable
{
public override string Name { get { return "AutoPrecision"; } }
public override string Author { get { return "Highvoltz"; } }
public override Version Version { get { return new Version(1, 0, 0, 0); } }
public override string ButtonText { get { return Name; } }
public override bool WantButton { get { return false; } }
public static AutoPrecision Instance { get; private set; }
LocalPlayer Me = ObjectManager.Me;
public AutoPrecision() { Instance = this; }
public override void OnButtonPress()
{
}
float speedModifer = 1.8f; // 1.5 is the default quest PathPrecision
public override void Initialize()
{
Logging.Write("[AutoPrecision] loaded");
}
public override void Pulse()
{
// runspeed is 7, while in quest mode 1.5 precision is used so I'm using that as my minimum precision
float speed = Me.MovementInfo.CurrentSpeed;
Navigator.PathPrecision = speed > 7 ? (speedModifer * speed) / 7f : speedModifer;
}
}
}
did u copied the plugin in the correct directory? it is not listed
did activated the plugin?
Could u please use this? and report back (incl. log)
I went back to using the last version of the bot (before the current one) and it works fine again. Guess I'll use it until another update.
How do you download an older version of HB? I went to the archives section but I don't have the permission to access the previous version of HB. I guess in the future I won't delete an outdated version.![]()
whats the version you need?