Here is an idea....

what if the admin, or owner, if he wanted to, could talk to his staff from the web without needing to sign into the shard. So he can check in, talk, etc.

Just an early morning idea.
 
This exists.

Here is an excerpt that shows what you can do with it. I install this on ALL my test shards.

Code:
  Console.WriteLine(" ");
  Console.WriteLine("Commands:");
  Console.WriteLine("save  - Performs a forced save.");
  Console.WriteLine("shutdown  - Performs a forced save then shuts down the server.");
  Console.WriteLine("shutdown nosave - Shuts down the server without saving.");
  Console.WriteLine("restart  - Sends a message to players informing them that the server is");
  Console.WriteLine("  restarting, performs a forced save, then shuts down and");
  Console.WriteLine("  restarts the server.");
  Console.WriteLine("restart nosave  - Restarts the server without saving.");
  Console.WriteLine("online  - Shows a list of every person online:");
  Console.WriteLine("  Account, Char Name, IP.");
  Console.WriteLine("bc <message>  - Type this command and your message after it. It will then be");
  Console.WriteLine("  sent to all players.");
  Console.WriteLine("sc <message>  - Type this command and your message after it.It will then be ");
  Console.WriteLine("  sent to all staff.");
  Console.WriteLine("hear  - Copies all local speech to this console:");
  Console.WriteLine("  Char Name (Region name): Speech.");
  Console.WriteLine("pages  - Shows all the pages in the page queue,you type the page");
  Console.WriteLine("  number ,then you type your response to the player.");
  Console.WriteLine("ban <playername>- Kicks and bans the users account.");
  Console.WriteLine("kick <playername>- Kicks the user.");
  Console.WriteLine("list or help  - Shows this list.");
  Console.WriteLine(" ");
  break;
 

Attachments

  • CC2.0.cs
    13.9 KB · Views: 14
Back