Example #1
0
        public static bool AddOutput(string sid, string output)
        {
            Dictionary <string, string> args = new Dictionary <string, string>();

            args["output"] = output;
            args["sid"]    = sid;
            return((bool)PluginCall.Call("Server.AddOutput", args));
        }
Example #2
0
        public static bool SendCommand(string sid, string cmd)
        {
            Dictionary <string, string> args = new Dictionary <string, string>();

            args["cmd"] = cmd;
            args["sid"] = sid;
            return((bool)PluginCall.Call("Server.SendCommand", args));
        }
Example #3
0
 public static void PrintFatal(string message)
 {
     PluginCall.Call("FastConsole.PrintFatal", message);
 }
Example #4
0
 public static void PrintError(string message)
 {
     PluginCall.Call("FastConsole.PrintError", message);
 }
Example #5
0
 public static void PrintWarning(string message)
 {
     PluginCall.Call("FastConsole.PrintWarning", message);
 }
Example #6
0
 public static void PrintTrash(string message)
 {
     PluginCall.Call("FastConsole.PrintTrash", message);
 }
Example #7
0
 public static void PrintInfo(string message)
 {
     PluginCall.Call("FastConsole.PrintInfo", message);
 }