Hello, you cannot blacklist for combat or loot only with default feature.
For blacklist current target for 120 sec for all tasks with default feature:
wManager.wManagerSetting.AddBlackList(wManager.Wow.ObjectManager.ObjectManager.Me.Target, 1000 * 120, true);
You can create your own blacklist system (for combat only in this sample) like:
System.Collections.Generic.List<object> myGuidBlacklist = new System.Collections.Generic.List<object>(); // (you can replace "object" by "Int128" or "ulong")
wManager.Events.FightEvents.OnFightStart += (wManager.Wow.ObjectManager.WoWUnit unit, System.ComponentModel.CancelEventArgs cancelable) =>
{
if (myGuidBlacklist.Contains(unit.Guid))
cancelable.Cancel = true;
};
// ..........
// blacklist my target
myGuidBlacklist.Add(wManager.Wow.ObjectManager.ObjectManager.Me.Target);