public override void Enable() { ConsoleFunctions.WriteInfoLine("Enabling!!!!!!"); CommandManager.AddCommand(new ExampleCommand("/")); var exampleSystem = new CommandSystem(new [] { "\\" }); exampleSystem.AddCommand(new ExampleCommand("\\")); CommandManager.AddCommandSystem(exampleSystem); }