Jump to content
  • Bot Auto Accepting Invitations


    ScripterQQ
    • Version: All Product: WRobot General Type: Bug Status: Cannot Reproduce

    Hello, I noticed the Wrobot automatically accepts group invites, I was using battlegrounder and auction house features, but it probably happens with all the products.

    I checked into the options in order to see if I missed some checkbox but didn't find anything.

     

    Thanks for reading



    User Feedback

    Recommended Comments

    Hello, check if this problem is not caused by your wrobot plugins/wow addons.

    You can also try to use WRobot plugin like 

    using System.Threading;
    using wManager.Wow.Enums;
    using wManager.Wow.Helpers;
    
    public class Main : wManager.Plugin.IPlugin
    {
        public void Initialize()
        {
            EventsLua.AttachEventLua(LuaEventsId.PARTY_INVITE_REQUEST, OnInviteRequest);
        }
    
        public void Dispose()
        {
        }
    
        public void Settings()
        {
        }
    
        void OnInviteRequest(object context)
        {
            try
            {
                if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause)
                {
                    Lua.LuaDoString("DeclineGroup();");
                    Thread.Sleep(Usefuls.Latency + 50);
                    Lua.LuaDoString("StaticPopup_Hide('PARTY_INVITE');");
                    // Lua.LuaDoString("LeaveParty();");
                }
            }
            catch { }
        }
    }

    to decline group invitation

    Link to comment
    Share on other sites

    I tried again, and the wrobot was not accpeting group invites (but I was not doing anything), so I think it has something to do with the "click yes button", when invited to group, or when purchasing items on AH, when you need to press "accept/yes" to confirm actions basically, maybe it is that?

    I will try that plugin soon and see what happens.

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