Bugreporter 93 Posted February 13, 2015 Share Posted February 13, 2015 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. Link to comment Share on other sites More sharing options...
Droidz 2737 Posted February 14, 2015 Share Posted February 14, 2015 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. Link to comment Share on other sites More sharing options...
Bugreporter 93 Posted February 14, 2015 Author Share Posted February 14, 2015 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. Link to comment Share on other sites More sharing options...
Bugreporter 93 Posted February 14, 2015 Author Share Posted February 14, 2015 dup Link to comment Share on other sites More sharing options...
Bugreporter 93 Posted February 14, 2015 Author Share Posted February 14, 2015 dup Link to comment Share on other sites More sharing options...
Droidz 2737 Posted February 20, 2015 Share Posted February 20, 2015 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. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now