Jump to content

Recommended Posts

I am trying to get a bot to do some gathering tasks similar to a netherwing egg farm.  The bot is correctly going to the item and picking it up- however, the item requires a select gossip option to complete the gather.  Its not a confirm BOP or I could use the plugin.  This is for a private server so no wowhead links.

 

Thanks

Link to comment
https://wrobot.eu/forums/topic/6708-select-gossip-option1-while-gathering/
Share on other sites

I think the best solution for me is to modify the auto accept plugin but LUA is not my strong suit.  Here is the existing code:

 

       while (isLaunched && Products.IsStarted)
        {
            if (Conditions.ProductIsStartedNotInPause &&
                Lua.LuaDoString<bool>("return StaticPopup1 and StaticPopup1:IsVisible();"))
            {
                System.Threading.Thread.Sleep(100);
                Lua.LuaDoString("StaticPopup1Button1:Click()");
                Logging.Write("[Auto Accept] Popup accepted");
            }
            System.Threading.Thread.Sleep(100 * 5); // Wait .5 sec

 

 

I know i need to change the second command string to be " SelectGossipOption (1)" but not sure what the first dostring should be. 

 

Thanks again.

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...