Jump to content

nax

Members
  • Posts

    121
  • Joined

  • Last visited

Everything posted by nax

  1. @cometttorSource Code (Plugin) using robotManager.Helpful; using System; using System.Collections.Generic; using System.Windows; using wManager.Plugin; using wManager.Wow.Helpers; public class Main : IPlugin { public void Initialize() { EventsLuaWithArgs.OnEventsLuaStringWithArgs += AcceptDungeon; } public void Dispose() { EventsLuaWithArgs.OnEventsLuaStringWithArgs -= AcceptDungeon; } public void Settings() { MessageBox.Show("No Settings."); } private void AcceptDungeon(String EventName, List<String> Args) { try { if(EventName.ToString() == "LFG_PROPOSAL_SHOW") { Lua.LuaDoString("AcceptProposal();"); } } catch (Exception ex) { Logging.WriteError("Main > AcceptDungeon > " + ex.StackTrace); } } }
  2. https://stackoverflow.com/questions/19728943/dynamically-loading-dll-referencing-other-dlls
  3. Yes you can but you’d need to load the Dll into memory.
  4. Maybe check if Rend is on target?
  5. For anyone to be able to help you, we'd need logs Html file.
  6. Which one do you use?
×
×
  • Create New...