Hello, like this if you know mob guid:
wManager.wManagerSetting.RemoveBlackList(unit.Guid);
or by entry id:
int mobEntryID = 12345;
var mobs = wManager.Wow.ObjectManager.ObjectManager.GetWoWUnitByEntry(mobEntryID);
foreach (var unit in mobs)
{
wManager.wManagerSetting.RemoveBlackList(unit.Guid);
}
Hello, no default feature for that. But you can try to create fish profile (for fishing and gathering), add use this plugin to kill mobs ( https://wrobot.eu/forums/topic/5078-plugin-for-attacking-specific-mobs/#comment-23616 ())
Hello, you cannot with default feature, but you can try code like:
var spell = new Spell("*****");
spell.Launch(false, false);
Thread.Sleep(Usefuls.Latency + 50);
robotManager.Helpful.Mouse.ClickLeft();