mirror of
https://github.com/project-redbud/FunGame-Server.git
synced 2025-04-22 12:09:36 +08:00

* 添加ServerController;DataRequest添加GetNotice * DataRequest添加Reg * 添加RoomS * 修改架构之Connect * 迁移其他的Socket业务至DataRequest * 更新连接服务器的逻辑 * 修改架构之Login * 更新Core * 修复IntoRoom Bug * 修复ForceLogOut Bug * 修复CreateRoom QuitRoom IntoRoom * 修复QuitRoom Bug和进入房间的广播 * 添加查看列表指令,完善kick和forcelogout * 数量显示错误 * 修复QuitRoom ConnectingCount Bug
23 lines
889 B
C#
23 lines
889 B
C#
namespace Milimoe.FunGame.Server.Others
|
|
{
|
|
public class OrderDictionary
|
|
{
|
|
public const string Help = "help";
|
|
public const string Quit = "quit";
|
|
public const string Exit = "exit";
|
|
public const string Close = "close";
|
|
public const string Restart = "restart";
|
|
public const string AddBanned1 = "ban -add";
|
|
public const string AddBanned2 = "ban -a";
|
|
public const string RemoveBanned1 = "ban -remove";
|
|
public const string RemoveBanned2 = "ban -r";
|
|
public const string Kick = "kick";
|
|
public const string Logout = "logout";
|
|
public const string ShowList = "showlist";
|
|
public const string ShowClients1 = "showclients";
|
|
public const string ShowClients2 = "clients";
|
|
public const string ShowUsers1 = "showusers";
|
|
public const string ShowUsers2 = "users";
|
|
}
|
|
}
|