Jump to content
  • LFG_PROPOSAL_SHOW Bugged.


    TheSmokie
    • Product: WRobot General Type: Bug Status: Unconfirmed

    Hey @Droidz, i am using this function to join RDF, but for some reason it never fires anymore. used to amount a month or so ago.


     

    EventsLua.AttachEventLua(LuaEventsId.LFG_PROPOSAL_SHOW, m => Lua.LuaDoString("AcceptProposal();"));

    image.png.a48411fdecbe42e97196213871bd83b0.png



    User Feedback

    Recommended Comments

    Hi.

    Don't use enum "LuaEventsId" it is obsolete, use string like that:

    EventsLua.AttachEventLua("LFG_PROPOSAL_SHOW", m => Lua.LuaDoString("AcceptProposal();"));

    You can dump all events and check event called when you get this popup, run this code one time when product is started:

                wManager.Wow.Helpers.EventsLuaWithArgs.OnEventsLuaStringWithArgs += (eventid, args) =>
                {
                    Logging.WriteDebug("[EVENT] " + eventid);
                };

     

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