November 22, 20223 yr recently the bot has been ignoring random mobs and trying to walk right through them even though they're specified on the profile as a mob that should be targeted
November 22, 20223 yr 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:
November 23, 20223 yr 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() { } }
Create an account or sign in to comment