Exemplo n.º 1
0
 public Addons()
 {
     Properties = new ChatCommandProperties()
     {
         CommandSyntax      = "gmod addons <subcommand> [parameter]",
         CommandDescription = "Stellt Befehle zu managen der Addons auf dem GMod Server bereit"
     };
     subCommands.Add("alert", typeof(Alert));
 }
Exemplo n.º 2
0
 public gmCommand()
 {
     Properties = new ChatCommandProperties()
     {
         ShowInHelp    = true,
         Command       = "gmod",
         CommandSyntax = "gmod <subcommand> [parameter]"
     };
     subCommands.Add("addons", typeof(Addons));
 }
Exemplo n.º 3
0
 public permCommand()
 {
     Properties = new ChatCommandProperties()
     {
         ShowInHelp    = true,
         Command       = "permissions",
         CommandAlias  = new string[] { "perm" },
         CommandSyntax = "permissions <subcommand> [parameter]",
     };
 }