createdby 50 Posted December 12, 2017 Share Posted December 12, 2017 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 Link to comment https://wrobot.eu/forums/topic/7977-vindikaar-console/ Share on other sites More sharing options...
Zan 99 Posted December 12, 2017 Share Posted December 12, 2017 Use interact? Link to comment https://wrobot.eu/forums/topic/7977-vindikaar-console/#findComment-36536 Share on other sites More sharing options...
KnightRyder 77 Posted December 12, 2017 Share Posted December 12, 2017 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. Link to comment https://wrobot.eu/forums/topic/7977-vindikaar-console/#findComment-36537 Share on other sites More sharing options...
createdby 50 Posted December 12, 2017 Author Share Posted December 12, 2017 (edited) 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, 2017 by createdby Link to comment https://wrobot.eu/forums/topic/7977-vindikaar-console/#findComment-36541 Share on other sites More sharing options...
Zan 99 Posted December 12, 2017 Share Posted December 12, 2017 Interact with console and use Lua to click the location like a flight path using fstack like you're showing. Link to comment https://wrobot.eu/forums/topic/7977-vindikaar-console/#findComment-36543 Share on other sites More sharing options...
createdby 50 Posted December 12, 2017 Author Share Posted December 12, 2017 (edited) 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, 2017 by createdby Link to comment https://wrobot.eu/forums/topic/7977-vindikaar-console/#findComment-36544 Share on other sites More sharing options...
createdby 50 Posted December 12, 2017 Author Share Posted December 12, 2017 which lua command I have to take and what fstack is the right one Link to comment https://wrobot.eu/forums/topic/7977-vindikaar-console/#findComment-36545 Share on other sites More sharing options...
Zan 99 Posted December 12, 2017 Share Posted December 12, 2017 https://wrobot.eu/forums/topic/7038-how-to-click-questchoiceframeoption1optionbutton/?page=0#comment-31866 Link to comment https://wrobot.eu/forums/topic/7977-vindikaar-console/#findComment-36546 Share on other sites More sharing options...
createdby 50 Posted December 12, 2017 Author Share Posted December 12, 2017 (edited) on the example is this a button but with fstack i have no button option Edited December 12, 2017 by createdby Link to comment https://wrobot.eu/forums/topic/7977-vindikaar-console/#findComment-36548 Share on other sites More sharing options...
Zan 99 Posted December 12, 2017 Share Posted December 12, 2017 Same idea works. Link to comment https://wrobot.eu/forums/topic/7977-vindikaar-console/#findComment-36552 Share on other sites More sharing options...
createdby 50 Posted December 12, 2017 Author Share Posted December 12, 2017 (edited) FlightMapFrameScrollContainerChild:Click() i have tested with RunCode and RunLuaCode but not working Edited December 12, 2017 by createdby Link to comment https://wrobot.eu/forums/topic/7977-vindikaar-console/#findComment-36553 Share on other sites More sharing options...
KnightRyder 77 Posted December 13, 2017 Share Posted December 13, 2017 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. Link to comment https://wrobot.eu/forums/topic/7977-vindikaar-console/#findComment-36557 Share on other sites More sharing options...
createdby 50 Posted December 13, 2017 Author Share Posted December 13, 2017 (edited) 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, 2017 by createdby Link to comment https://wrobot.eu/forums/topic/7977-vindikaar-console/#findComment-36570 Share on other sites More sharing options...
KnightRyder 77 Posted December 13, 2017 Share Posted December 13, 2017 You would need to change the cords 43, 58 to click on whatever you want them to click. Link to comment https://wrobot.eu/forums/topic/7977-vindikaar-console/#findComment-36595 Share on other sites More sharing options...
createdby 50 Posted December 13, 2017 Author Share Posted December 13, 2017 ok i have a addon for coords but the coords not working -.- step by step i have the coords thanks for your help =) Link to comment https://wrobot.eu/forums/topic/7977-vindikaar-console/#findComment-36611 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