1. How is this done?

    My plugin class is a RustPlugin, not a CovalencePlugin.
     
  2. Example:
    Code:
    ConsoleSystem.Run(ConsoleSystem.Option.Server.Quiet(), "weather.fog 0");
     
  3. Wulf

    Wulf Community Admin

    You can still run a command via Covalence even if your plugin is not a CovalencePlugin:
    Code:
    covalence.Server.Command("weather.fog 0");
     
  4. This seems to work best for my plugin.
    Thank you.