Run server commands via Command()
developUse the Command method to execute a command directly on the server console. This executes the command with the ConsoleSystem.Option.Server permission level.
Command(string command, params object[] args)
command: The string name of the command to run.args: An array of objects to be passed as arguments to the command.
// Example: Running a server command to change time
server.Command("env.time", "12:00");