How is this done?
My plugin class is a RustPlugin, not a CovalencePlugin.
Solved Execute server command from plugin?
Discussion in 'Rust Development' started by greyhound, Dec 9, 2017.
-
Example:
Code:ConsoleSystem.Run(ConsoleSystem.Option.Server.Quiet(), "weather.fog 0");
-
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");
-
Thank you.