Dcom 0 Posted February 28, 2018 Share Posted February 28, 2018 Hey everyone, I am having issues making the quester profile for Ferocitas the Dream Eater(2459) received from NPC Tallonkai Swiftroot(3567). Essentially the quest is to kill 7 Gnarlpine Mystics(7235) and Ferocitias(7234) and Loot the Gnarlpine Necklace(8049) off of Fero's corpse. The quest requires you open the Gnarlpine Necklace(8049) giving you the Tallonkai's Jewel(8050). I have tried using ItemsManager.UseItem(8049) as a runcode but that only opens the necklace it won't make the bot loot the jewel inside. I have tried it as a KillandLoot && KillandLoot + RunCode && KillandLoot + RunCode+Gatherer Does anyone have any thoughts on how to complete this quest? Ferocitas The Dream Eater(2459).xml Link to comment https://wrobot.eu/forums/topic/8773-kill-and-loot-quest-with-looted-item-being-opened/ Share on other sites More sharing options...
Dcom 0 Posted February 28, 2018 Author Share Posted February 28, 2018 I don't believe autoloot is available in WoW version 1.12.1. I have tried to use the addon Xloot but that hasn't seemed to help either. Link to comment https://wrobot.eu/forums/topic/8773-kill-and-loot-quest-with-looted-item-being-opened/#findComment-40341 Share on other sites More sharing options...
Dcom 0 Posted February 28, 2018 Author Share Posted February 28, 2018 Hmm, nice find. Unfortunately there must be some operator error going on because it still won't loot the item. Autoloot does work if I manually shift right-click on a loot item from dead body and on the necklace to extract the jewel (I destroyed the item to repick it up). Thoughts? I have the run code I'm using below: Link to comment https://wrobot.eu/forums/topic/8773-kill-and-loot-quest-with-looted-item-being-opened/#findComment-40346 Share on other sites More sharing options...
Matenia 628 Posted March 2, 2018 Share Posted March 2, 2018 (edited) Wow 1.12.1 doesn't have auto loot. You can however, call the function to look all items in the current loot window manually - Interact.InteractGameObjectAutoLoot() does exactly that, actually. However you need your latency setting in the wRobot avanced settings to be pretty high (350-500). Just call Usefuls.WaitIsCastingAndLooting(); Thread.Sleep(200); /call AutoLoot in client string[] asm = { //$"mov ecx, {alloc}", $"call {0x4C1FA0}", wManager.Wow.Memory.WowMemory.RetnToHookCode }; wManager.Wow.Memory.WowMemory.InjectAndExecute(asm); Edit: I just noticed why your code couldn't work to begin with - this is how you find the game object correctl, then loot it. var gObj= ObjectManager.GetWoWGameObjectByEntry(8049).FirstOrDefault(); if (gObj != null) { Interact.InteractGameObjectAutoLoot(gObj.GetBaseAddress, true); Thread.Sleep(Usefuls.Latency); Usefuls.WaitIsCastingAndLooting(); } Edited March 2, 2018 by Matenia Link to comment https://wrobot.eu/forums/topic/8773-kill-and-loot-quest-with-looted-item-being-opened/#findComment-40577 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