diff --git a/src/ServerConsole.cs b/src/ServerConsole.cs index 690e8ee076..21a465d88b 100644 --- a/src/ServerConsole.cs +++ b/src/ServerConsole.cs @@ -144,6 +144,11 @@ namespace OpenSim // Runs a command with a number of parameters public Object RunCmd(string Cmd, string[] cmdparams) { switch(Cmd) { + case "help": + this.WriteLine("show users - show info about connected users"); + this.WriteLine("shutdown - disconnect all clients and shutdown"); + break; + case "show": ShowCommands(cmdparams[0]); break;