Jump to content

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.

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?

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 ?;)

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)

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()
    {
    }
}

 

You guys are morons. Someone is clearly attacking his server. If it was that easy to fix he would've already done it.
Give it a few days, it's not like he's not trying.

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