KnightRyder 77 Posted September 9, 2017 Share Posted September 9, 2017 Looking to see what code or how to click the QuestChoiceFrameOption1.OptionButton in Quester? Attached picture with /fstack to show what I'm talking about. Also, the Vindicaar Matrix Core is hard to click on, bot seems to think it has to stand on it to be in range. Link to comment https://wrobot.eu/forums/topic/7038-how-to-click-questchoiceframeoption1optionbutton/ Share on other sites More sharing options...
Zan 99 Posted September 9, 2017 Share Posted September 9, 2017 Lua.LuaDoString ("QuestChoiceFrameOption1.Click ();"); Or :Click(); Something like that. Link to comment https://wrobot.eu/forums/topic/7038-how-to-click-questchoiceframeoption1optionbutton/#findComment-31867 Share on other sites More sharing options...
KnightRyder 77 Posted September 10, 2017 Author Share Posted September 10, 2017 Thread t = new Thread(() => { int questId = 47287; while (robotManager.Products.Products.IsStarted) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { if (!Quest.HasQuest(questId)) break; { Lua.LuaDoString ("QuestChoiceFrameOption1:Click()"); } } Thread.Sleep(500); } }); t.Start(); Doesn't seem to be working. Link to comment https://wrobot.eu/forums/topic/7038-how-to-click-questchoiceframeoption1optionbutton/#findComment-31880 Share on other sites More sharing options...
Droidz 2738 Posted September 10, 2017 Share Posted September 10, 2017 Hello, try QuestChoiceFrameOption1.OptionButton:Click() You can also try ( https://github.com/tomrus88/BlizzardInterfaceCode/blob/70dd3cd4aaf56e297731ba40b400ea965430c68e/Interface/AddOns/Blizzard_QuestChoice/Blizzard_QuestChoice.lua#L79 ) QuestChoiceFrameOptionButton_OnEnter(QuestChoiceFrameOption1) Link to comment https://wrobot.eu/forums/topic/7038-how-to-click-questchoiceframeoption1optionbutton/#findComment-31888 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