August 9, 20169 yr Need some assistance in coding, I wish to use RunCode in Quester for the bottom For example I want to move to the NPC, "Lake Frog" to be exact.. ID = 33211 So the location is not fixed. I stumbled across the below while going through the wManager resource. Any example? I am trying to complete "A Blade Fit for a Champion" but the issue would be the bot would not move to the Frog that it is blowing a kiss. How do I get the bot to move to the frog? The code below is for my RunCode while (!Quest.GetLogQuestIsComplete(13673)) { ItemsManager.UseItem(44986); wManager.Wow.Helpers.Lua.RunMacroText("/tar Lake"); wManager.Wow.Helpers.Lua.RunMacroText("/kiss"); System.Threading.Thread.Sleep(10000); // wait 10 sec } able to use the below code? Quote wManager.Wow.Helpers.MovementManager.MoveTo(wManager.Wow.ObjectManager.WoWUnit) Thank you!
August 9, 20169 yr I'll answer this when i wake up in 9 hours . Im off to sleep now. This is possible but i need access to my pc first
August 10, 20169 yr okay i found first problem. The daily has different quest ID for everyday. I'm looking for a way to counter this.... http://www.wowhead.com/quest=13673/a-blade-fit-for-a-champion
August 10, 20169 yr Author The NPC give 3 different quest, should be able to separate it by using IF condition. The ID for the quest are different, with Edge Of Winter, A worthy Weapon and A Blade Fit for a Champion Doing 1 step at a time...
August 10, 20169 yr doesn't work like that. Bot tries to take a specific quest with specific ID if it won't receive the quest it's stuck
August 10, 20169 yr Author I thought of an workaround. For the quest giver, I would not use Pickup Quest. Will use interactwithNpc and choose Option 1.. that should pick up all the quest.
August 10, 20169 yr Author No.. it will be just run once. then will move on to other steps to complete the other quest. I think it will work though. But I need to work on the MoveTo issue first..
August 10, 20169 yr wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(new Vector3(38.23928f, 10.52102f, -4.297345f), NPCID, 1, false); edit the coords and change npcid
August 10, 20169 yr Author I am currently using this as a workaround. however the Npc moves around. So it will not be the optimal code to do it. Is there auto move to Npc without setting the vector?
Create an account or sign in to comment