December 12, 20178 yr Hi everyone I am currently writing the Argus questline and I have a problemhow did the bot use the Vindikaar Console? and how does he click my first point? other Problem Waypoint on Vindikaar no aviable? thanks for answer best gregards
December 12, 20178 yr The only way I found to be able to do it is with robotManager.Helpful.Mouse.CurseurWindowPercentagePosition(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, 43, 58); robotManager.Helpful.Mouse.ClickLeft(); Just have to change the cords depending on which point you want to click on. Bad part is it will actually move your mouse if you are doing something in another window.
December 12, 20178 yr Author thanks for this info Use interact? i have tested with use interact with Npc and the bot use the console, but i have no idea for click the point on the map robotManager.Helpful.Mouse.CurseurWindowPercentagePosition(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, 43, 58); robotManager.Helpful.Mouse.ClickLeft(); how did I use that? With RunCode? Edited December 12, 20178 yr by createdby
December 12, 20178 yr Interact with console and use Lua to click the location like a flight path using fstack like you're showing.
December 12, 20178 yr Author can you give me a example? i have interactwithnpc and he use the console but lua code i have no idea thanks for your help test console.xml Edited December 12, 20178 yr by createdby
December 12, 20178 yr https://wrobot.eu/forums/topic/7038-how-to-click-questchoiceframeoption1optionbutton/?page=0#comment-31866
December 12, 20178 yr Author on the example is this a button but with fstack i have no button option Edited December 12, 20178 yr by createdby
December 12, 20178 yr Author FlightMapFrameScrollContainerChild:Click() i have tested with RunCode and RunLuaCode but not working Edited December 12, 20178 yr by createdby
December 13, 20178 yr I use RunCode with this: Thread t = new Thread(() => { int questId = 48199; while (robotManager.Products.Products.IsStarted) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { if (!Quest.HasQuest(questId)) break; { robotManager.Helpful.Mouse.CurseurWindowPercentagePosition(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, 43, 58); robotManager.Helpful.Mouse.ClickLeft(); } } Thread.Sleep(5000); } }); t.Start(); Then I interact with NPC to bring up the map.
December 13, 20178 yr Author thanks for that but if i use this code the bot use the console an click on the map but not on the Point what I need Edited December 13, 20178 yr by createdby
December 13, 20178 yr You would need to change the cords 43, 58 to click on whatever you want them to click.
December 13, 20178 yr Author ok i have a addon for coords but the coords not working -.- step by step i have the coords thanks for your help =)
Create an account or sign in to comment