June 2, 20196 yr Hello, Is there a option to loot only corpses in "X" radius ? Grinding in group and each char in my group runs to loot the corpse, when nearest bot can do it, so need to lower loot radius for that
June 4, 20196 yr Hello, try code like: wManager.Events.LootingEvents.OnLootingPulse += delegate(WoWUnit unit, CancelEventArgs cancelable) { if (unit.IsValid && unit.GetDistance > 90) { wManager.wManagerSetting.AddBlackList(unit.Guid, 30 * 1000); cancelable.Cancel = true; } }; Line 3 replace 90 by your max distance
Create an account or sign in to comment