toxic_orator 3 Posted November 22, 2022 Share Posted November 22, 2022 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 Link to comment https://wrobot.eu/forums/topic/14948-bot-constantly-ignoring-mobs-on-the-kill-list-and-bodypulling-them/ Share on other sites More sharing options...
Matenia 627 Posted November 22, 2022 Share Posted November 22, 2022 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 https://wrobot.eu/forums/topic/14948-bot-constantly-ignoring-mobs-on-the-kill-list-and-bodypulling-them/#findComment-67284 Share on other sites More sharing options...
Droidz 2738 Posted November 23, 2022 Share Posted November 23, 2022 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 https://wrobot.eu/forums/topic/14948-bot-constantly-ignoring-mobs-on-the-kill-list-and-bodypulling-them/#findComment-67290 Share on other sites More sharing options...
toxic_orator 3 Posted November 23, 2022 Author Share Posted November 23, 2022 these solutions work, thank you Link to comment https://wrobot.eu/forums/topic/14948-bot-constantly-ignoring-mobs-on-the-kill-list-and-bodypulling-them/#findComment-67293 Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now