Jump to content

Pathfinder problem again?


Recommended Posts

Sorry for the inconvenience, the server has worked for more than 6 months without problem, but since few days he get troubles, I added security code and more debug logs server side to try to avoid to get this problem again.

Link to comment
Share on other sites

29 minutes ago, Droidz said:

Sorry for the inconvenience, the server has worked for more than 6 months without problem, but since few days he get troubles, I added security code and more debug logs server side to try to avoid to get this problem again.

I had folio hat theory that Lights hope is DDOS:ing youre path finding server to bring it down for catching up ton of bots at once, is there something like this possibly happened?

Link to comment
Share on other sites

Yo, wtfs happening Droidz, several times a day path server down + hundreds of your clients walking against walls and doing dodgy shit. everybody is loosing chars on mass because of that shit. The service we pay performs poorer than freeware, wtf are we paying for when we cant use your product without  getting banned?

 

Got a deal with LH ?;)

Link to comment
Share on other sites

Sorry, I added again codes I hope than this time is good.

Try to use this plugin: PathFinderRequestTimeoutMs.cs

public class Main : wManager.Plugin.IPlugin
{
    public void Initialize()
    {
        wManager.wManagerSetting.CurrentSetting.PathFinderRequestTimeoutMs = 60 * 1000;
    }

    public void Dispose()
    {
    }

    public void Settings()
    {
    }
}

(default time is 12 seconds)

Link to comment
Share on other sites

12 minutes ago, kpeno said:

Need code for pause bot ? Or he is going in the wall

Try PathFinderPathIfDown.cs

public class Main : wManager.Plugin.IPlugin
{
    public void Initialize()
    {
        robotManager.Events.LoggingEvents.OnAddLog += delegate(robotManager.Helpful.Logging.Log log)
        {
            try
            {
                if (log.Text.StartsWith("GetRequest(string url=\"http://pathfinder") ||
                    log.Text.StartsWith("GetRequest(string url=\"https://pathfinder"))
                {
                    robotManager.Products.Products.InPause = true;
                    wManager.Wow.Helpers.MovementManager.StopMove();
                    robotManager.Helpful.Logging.Write("In pause because pathfinder server seem down");
                }
            }
            catch
            {
            }
        };
    }

    public void Dispose()
    {
    }

    public void Settings()
    {
    }
}

 

Link to comment
Share on other sites

15 minutes ago, milkme said:

Has this issue been going on for a while? or is this just happening now?

 

Lats few days... since northdale release

Link to comment
Share on other sites

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...