Jump to content

Recommended Posts

  • 2 weeks later...
  • 3 weeks later...

I could not get this to work. i disabled every addon (HMP, move during combat,) even the "use path finder" like droidz said, and the fucker still spirals up into the air.

so i gave up and just use a ground mount, sucks i know

There might be a way to use space bar to fly up if you get to a amount of feet close to the ground. I’ve been thinking about adding it to my person / private group channel but you’d have to hard code each and every state into the flying to make sure you don’t fly over a quest mob or fly over a herb. Idk if it’s worth putting my time into it if it only happens to a few people 

I do think it is profile related and this spiraling always happens above terrain thats difficultm e.g. if fly above ruins with lots of walls it happens - if you just put flying waypoints over plain terrain it never happens

  • 2 months later...
  • 3 weeks later...
  • 1 year later...
  • 3 years later...

Hello,

using System.Threading;
using System.Windows.Forms;
using robotManager.Helpful;
using wManager.Wow.Helpers;

public class Main : wManager.Plugin.IPlugin
{
    bool _isLaunched;
    public void Initialize()
    {
        _isLaunched = true;
        while (_isLaunched)
        {
            if (Conditions.InGameAndConnectedAndProductStartedNotInPause)
            {
                if (Usefuls.TextBoxActivated())
                {
                    Logging.Write("Close chat box");
                    Keyboard.PressKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, Keys.Enter);
                }
            }
            Thread.Sleep(500);
        }
    }

    public void Dispose()
    {
        _isLaunched = false;
    }

    public void Settings()
    {
        
    }
}

 

Main.cs

On 8/2/2024 at 12:30 PM, Weer36 said:

But it was sample for behavior, problem is not in opened chatbox. Sometimes bot flyes "to the Moon" without opened chatbox

Check the logs (and share them here) to see what the bot is doing. Enable 3D radar to watch where the bot is trying to go (maybe a profile position is outside the flyable area or an object to pick up).

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...