Jump to content

bot constantly ignoring mobs on the kill list and bodypulling them


toxic_orator

Recommended Posts

My guess: Respawn is too fast and the server is recycling GUIDs.
GUIDs are supposed to be unique and generated on every spawn. WRobot blacklists them for a while after killing them. 

Droidz offers a solution here: 

A plugin that basically does this (but also unblacklists pretty much everything in the current session - this is not ideal) can be found here: 

 

Link to comment
Share on other sites

Hello,

You can also try to put lower value at the option "BlacklistUnitDefaultTimeMs" :

wManager.wManagerSetting.CurrentSetting.BlacklistUnitDefaultTimeMs = 2 * 60 * 1000; // default = 2 minutes

This option isn't in bot interface, you need to edit setting xml file manually, run code on your profile or use plugin like  :

public class Main : wManager.Plugin.IPlugin
{
    public void Initialize()
    {
        wManager.wManagerSetting.CurrentSetting.BlacklistUnitDefaultTimeMs = 2 * 60 * 1000; // default = 2 minutes
    }

    public void Dispose()
    {
    }

    public void Settings()
    {
    }
}

 

 

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