Jump to content

Nax

WRobot user
  • Posts

    95
  • Joined

  • Last visited

Everything posted by Nax

  1. https://support.minitab.com/en-us/minitab/21/help-and-how-to/data-input-and-output/minitab-files/open-or-disable-backup-files/
  2. Unless you are going to reread all the commands between two clients, its bad practice to write to file to read then just to reread, You should use something like a server to talk together.
  3. @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); } } }
  4. https://stackoverflow.com/questions/19728943/dynamically-loading-dll-referencing-other-dlls
  5. Yes you can but you’d need to load the Dll into memory.
  6. For anyone to be able to help you, we'd need logs Html file.
  7. Which one do you use?
×
×
  • Create New...