September 6, 20178 yr Hiya! Does anyone know if it's possible to make the bot ignore the mob that is attacking it, and try to run away from it until it's out of combat? Thanks in advance.
September 6, 20178 yr Hello, https://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=13088
September 6, 20178 yr Author 9 hours ago, Droidz said: Hello, https://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=13088 Great stuff, but is it possible to only enable this for specific mobs? As in, if an elite is attacking you, ignore and keep running, but if normal mob is attacking, fight back.
September 7, 20178 yr You can try code like: wManager.Events.FightEvents.OnFightStart += (target, cancelable) => { if (target.Entry == 1233) { //wManager.wManagerSetting.AddBlackList(target.Guid, 1000 * 60 * 5, true); cancelable.Cancel = true; } }; (run this code only one time)
September 7, 20178 yr Author 3 hours ago, Droidz said: You can try code like: wManager.Events.FightEvents.OnFightStart += (target, cancelable) => { if (target.Entry == 1233) { //wManager.wManagerSetting.AddBlackList(target.Guid, 1000 * 60 * 5, true); cancelable.Cancel = true; } }; (run this code only one time) This does stop fighting back, but the bot does not try to run away, instead just stands there, taking it. I'd like it to continue on its path even if it gets dismounted by an elite.
Create an account or sign in to comment