Jump to content

How to click QuestChoiceFrameOption1.OptionButton


KnightRyder

Recommended Posts

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.

WoWScrnShot_090917_141133.jpg

Link to comment
Share on other sites

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
Share on other sites

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
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...