February 13, 201511 yr Is it possible to loot only one boss, not all the mobs on the way? I work on a Stratholm dungeon profile, and after 2-3 runs my bag is full.
February 14, 201511 yr Hello, No you cannot loot only boss. But you can use wow addon like http://www.curse.com/addons/wow/easylootto destroy all useless items.
February 14, 201511 yr Author I have a solution. LootMobs= false and I use the Loot-A-Rang at the last Boss. This work fine, but I need a "Is Complete Condition". Simplest is maybe "Loot A Range ist not usable" (3 Sec cd). Best will be "npc 45152" is empty.
February 20, 201511 yr Try to add this step (just after kill step): Action type: RunCode Parameter: var _units = new List<wManager.Wow.ObjectManager.WoWUnit>(); var tUnit = wManager.Wow.ObjectManager.ObjectManager.GetWoWUnitLootable(); foreach (var woWUnit in tUnit) { if (!wManager.wManagerSetting.IsBlackListedAllConditions(woWUnit) && woWUnit.Entry == 12345) _units.Add(woWUnit); } if (_units.Count > 0) wManager.Wow.Bot.Tasks.LootingTask.Pulse(_units); Replace 12345 by npc id.
Create an account or sign in to comment