September 9, 20178 yr 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.
September 9, 20178 yr Lua.LuaDoString ("QuestChoiceFrameOption1.Click ();"); Or :Click(); Something like that.
September 10, 20178 yr Author 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.
September 10, 20178 yr 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)
Create an account or sign in to comment