mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
Add system.threading
This commit is contained in:
parent
dd99e49ef7
commit
219c9fa95a
2 changed files with 5 additions and 3 deletions
|
@ -54,9 +54,9 @@ namespace HISP.Game.Chat
|
||||||
new CommandRegister('%', "ESCAPE", "", Command.Escape);
|
new CommandRegister('%', "ESCAPE", "", Command.Escape);
|
||||||
|
|
||||||
// User commands
|
// User commands
|
||||||
new CommandRegister('!', "MUTE", "ALL\nGLOBAL\nISLAND\nNEAR\nHERE\nBUDDY\nPM\nBR\nSOCIALS \nLOGINS ", Command.Mute);
|
new CommandRegister('!', "MUTE", "ALL\nGLOBAL\nISLAND\nNEAR\nHERE\nBUDDY\nPM\nBR\nSOCIALS\nLOGINS", Command.Mute);
|
||||||
new CommandRegister('!', "UNMUTE", "ALL\nGLOBAL\nISLAND\nNEAR\nHERE\nBUDDY\nPM\nBR\nSOCIALS \nLOGINS ", Command.UnMute);
|
new CommandRegister('!', "UNMUTE", "ALL\nGLOBAL\nISLAND\nNEAR\nHERE\nBUDDY\nPM\nBR\nSOCIALS\nLOGINS", Command.UnMute);
|
||||||
new CommandRegister('!', "HEAR", "ALL\nGLOBAL\nISLAND\nNEAR\nHERE\nBUDDY\nPM\nBR\nSOCIALS \nLOGINS ", Command.UnMute);
|
new CommandRegister('!', "HEAR", "ALL\nGLOBAL\nISLAND\nNEAR\nHERE\nBUDDY\nPM\nBR\nSOCIALS\nLOGINS", Command.UnMute);
|
||||||
new CommandRegister('!', "AUTOREPLY", "[message]", Command.AutoReply);
|
new CommandRegister('!', "AUTOREPLY", "[message]", Command.AutoReply);
|
||||||
new CommandRegister('!', "QUIZ", "", Command.Quiz);
|
new CommandRegister('!', "QUIZ", "", Command.Quiz);
|
||||||
new CommandRegister('!', "WARP", "<username / location>", Command.Warp);
|
new CommandRegister('!', "WARP", "<username / location>", Command.Warp);
|
||||||
|
|
|
@ -5,8 +5,10 @@ using HISP.Game.Services;
|
||||||
using HISP.Game.SwfModules;
|
using HISP.Game.SwfModules;
|
||||||
using HISP.Game.Chat;
|
using HISP.Game.Chat;
|
||||||
using HISP.Security;
|
using HISP.Security;
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
|
using System.Threading;
|
||||||
|
|
||||||
namespace HISP.Server
|
namespace HISP.Server
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue