Ignore:
Timestamp:
Jun 17, 2024, 5:25:43 PM (5 months ago)
Author:
alloc
Message:

1.1.0.1 Release for V 1.0

Location:
TFP-WebServer/CommandExtensions/src/Commands
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • TFP-WebServer/CommandExtensions/src/Commands/Exception.cs

    r405 r487  
    66        [UsedImplicitly]
    77        public class ConsoleCmdException : ConsoleCmdAbstract {
    8                 protected override string[] getCommands () {
     8                public override string[] getCommands () {
    99                        return new[] { "exception" };
    1010                }
     
    1919                }
    2020
    21                 protected override string getDescription () {
     21                public override string getDescription () {
    2222                        return "Throw an exception / log messages";
    2323                }
  • TFP-WebServer/CommandExtensions/src/Commands/Give.cs

    r405 r487  
    66        [UsedImplicitly]
    77        public class Give : ConsoleCmdAbstract {
    8                 protected override string getDescription () {
     8                public override string getDescription () {
    99                        return "give an item to a player (entity id or name)";
    1010                }
    1111
    12                 protected override string getHelp () {
     12                public override string getHelp () {
    1313                        return "Give an item to a player by dropping it in front of that player\n" +
    1414                               "Usage:\n" +
     
    2121                }
    2222
    23                 protected override string[] getCommands () {
     23                public override string[] getCommands () {
    2424                        return new[] {"give", string.Empty};
    2525                }
  • TFP-WebServer/CommandExtensions/src/Commands/ListItems.cs

    r405 r487  
    66        [UsedImplicitly]
    77        public class ListItems : ConsoleCmdAbstract {
    8                 protected override string getDescription () {
     8                public override string getDescription () {
    99                        return "lists all items that contain the given substring";
    1010                }
    1111
    12                 protected override string[] getCommands () {
     12                public override string[] getCommands () {
    1313                        return new[] {"listitems", "li"};
    1414                }
    1515
    16                 protected override string getHelp () {
     16                public override string getHelp () {
    1717                        return "List all available item names\n" +
    1818                               "Usage:\n" +
  • TFP-WebServer/CommandExtensions/src/Commands/Reply.cs

    r405 r487  
    55        [UsedImplicitly]
    66        public class Reply : ConsoleCmdAbstract {
    7                 protected override string getDescription () {
     7                public override string getDescription () {
    88                        return "send a message to  the player who last sent you a PM";
    99                }
    1010
    11                 protected override string getHelp () {
     11                public override string getHelp () {
    1212                        return "Usage:\n" +
    1313                               "   reply <message>\n" +
     
    1515                }
    1616
    17                 protected override string[] getCommands () {
     17                public override string[] getCommands () {
    1818                        return new[] {"reply", "re"};
    1919                }
  • TFP-WebServer/CommandExtensions/src/Commands/SayToPlayer.cs

    r405 r487  
    55        [UsedImplicitly]
    66        public class SayToPlayer : ConsoleCmdAbstract {
    7                 protected override string getDescription () {
     7                public override string getDescription () {
    88                        return "send a message to a single player";
    99                }
    1010
    11                 protected override string getHelp () {
     11                public override string getHelp () {
    1212                        return "Usage:\n" +
    1313                               "   pm <player name / steam id / entity id> <message>\n" +
     
    1515                }
    1616
    17                 protected override string[] getCommands () {
     17                public override string[] getCommands () {
    1818                        return new[] {"sayplayer", "pm"};
    1919                }
  • TFP-WebServer/CommandExtensions/src/Commands/TestLogSpam.cs

    r405 r487  
    77        [UsedImplicitly]
    88        public class TestLogSpam : ConsoleCmdAbstract {
    9                 protected override string[] getCommands () {
     9                public override string[] getCommands () {
    1010                        return new[] { "tls" };
    1111                }
     
    1515                public override bool IsExecuteOnClient => true;
    1616
    17                 protected override string getDescription () {
     17                public override string getDescription () {
    1818                        return "Spams the log with until stopped";
    1919                }
    2020
    21                 protected override string getHelp () {
     21                public override string getHelp () {
    2222                        return @"
    2323                        |Usage:
Note: See TracChangeset for help on using the changeset viewer.