1
0
Fork 0
This repository has been archived on 2019-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Galactic_Colors_Control/Galactic Colors Control Server/Commands/Server/ServerCloseCommand.cs

33 lines
1.1 KiB
C#
Raw Normal View History

2016-10-09 12:27:08 +00:00
using System;
using System.Net.Sockets;
namespace Galactic_Colors_Control_Server.Commands
{
2016-11-03 20:01:16 +00:00
public class ServerCloseCommand : ICommand
2016-10-09 12:27:08 +00:00
{
public string Name { get { return "close"; } }
2016-11-03 20:01:16 +00:00
public string DescText { get { return "Close server."; } }
public string HelpText { get { return "Use /server close to close server for connections"; } }
public Manager.CommandGroup Group { get { return Manager.CommandGroup.server; } }
2016-10-09 12:27:08 +00:00
public bool IsServer { get { return true; } }
public bool IsClient { get { return false; } }
2016-10-11 10:09:51 +00:00
public bool IsClientSide { get { return false; } }
2016-10-09 12:27:08 +00:00
public bool IsNoConnect { get { return false; } }
public int minArgs { get { return 0; } }
2016-11-06 09:59:05 +00:00
public int maxArgs { get { return 0; } }
2016-10-09 12:27:08 +00:00
public void Execute(string[] args, Socket soc, bool server = false)
{
if (Program._open)
{
Program._open = false;
Logger.Write("Server closed", Logger.logType.warm);
}
else
{
2016-11-06 09:59:05 +00:00
Utilities.ConsoleWrite("Server allready close");
2016-10-09 12:27:08 +00:00
}
}
}
}