Changeset 487 for TFP-WebServer/CommandExtensions/src
- Timestamp:
- Jun 17, 2024, 5:25:43 PM (5 months ago)
- Location:
- TFP-WebServer/CommandExtensions/src/Commands
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
TFP-WebServer/CommandExtensions/src/Commands/Exception.cs
r405 r487 6 6 [UsedImplicitly] 7 7 public class ConsoleCmdException : ConsoleCmdAbstract { 8 p rotectedoverride string[] getCommands () {8 public override string[] getCommands () { 9 9 return new[] { "exception" }; 10 10 } … … 19 19 } 20 20 21 p rotectedoverride string getDescription () {21 public override string getDescription () { 22 22 return "Throw an exception / log messages"; 23 23 } -
TFP-WebServer/CommandExtensions/src/Commands/Give.cs
r405 r487 6 6 [UsedImplicitly] 7 7 public class Give : ConsoleCmdAbstract { 8 p rotectedoverride string getDescription () {8 public override string getDescription () { 9 9 return "give an item to a player (entity id or name)"; 10 10 } 11 11 12 p rotectedoverride string getHelp () {12 public override string getHelp () { 13 13 return "Give an item to a player by dropping it in front of that player\n" + 14 14 "Usage:\n" + … … 21 21 } 22 22 23 p rotectedoverride string[] getCommands () {23 public override string[] getCommands () { 24 24 return new[] {"give", string.Empty}; 25 25 } -
TFP-WebServer/CommandExtensions/src/Commands/ListItems.cs
r405 r487 6 6 [UsedImplicitly] 7 7 public class ListItems : ConsoleCmdAbstract { 8 p rotectedoverride string getDescription () {8 public override string getDescription () { 9 9 return "lists all items that contain the given substring"; 10 10 } 11 11 12 p rotectedoverride string[] getCommands () {12 public override string[] getCommands () { 13 13 return new[] {"listitems", "li"}; 14 14 } 15 15 16 p rotectedoverride string getHelp () {16 public override string getHelp () { 17 17 return "List all available item names\n" + 18 18 "Usage:\n" + -
TFP-WebServer/CommandExtensions/src/Commands/Reply.cs
r405 r487 5 5 [UsedImplicitly] 6 6 public class Reply : ConsoleCmdAbstract { 7 p rotectedoverride string getDescription () {7 public override string getDescription () { 8 8 return "send a message to the player who last sent you a PM"; 9 9 } 10 10 11 p rotectedoverride string getHelp () {11 public override string getHelp () { 12 12 return "Usage:\n" + 13 13 " reply <message>\n" + … … 15 15 } 16 16 17 p rotectedoverride string[] getCommands () {17 public override string[] getCommands () { 18 18 return new[] {"reply", "re"}; 19 19 } -
TFP-WebServer/CommandExtensions/src/Commands/SayToPlayer.cs
r405 r487 5 5 [UsedImplicitly] 6 6 public class SayToPlayer : ConsoleCmdAbstract { 7 p rotectedoverride string getDescription () {7 public override string getDescription () { 8 8 return "send a message to a single player"; 9 9 } 10 10 11 p rotectedoverride string getHelp () {11 public override string getHelp () { 12 12 return "Usage:\n" + 13 13 " pm <player name / steam id / entity id> <message>\n" + … … 15 15 } 16 16 17 p rotectedoverride string[] getCommands () {17 public override string[] getCommands () { 18 18 return new[] {"sayplayer", "pm"}; 19 19 } -
TFP-WebServer/CommandExtensions/src/Commands/TestLogSpam.cs
r405 r487 7 7 [UsedImplicitly] 8 8 public class TestLogSpam : ConsoleCmdAbstract { 9 p rotectedoverride string[] getCommands () {9 public override string[] getCommands () { 10 10 return new[] { "tls" }; 11 11 } … … 15 15 public override bool IsExecuteOnClient => true; 16 16 17 p rotectedoverride string getDescription () {17 public override string getDescription () { 18 18 return "Spams the log with until stopped"; 19 19 } 20 20 21 p rotectedoverride string getHelp () {21 public override string getHelp () { 22 22 return @" 23 23 |Usage:
Note:
See TracChangeset
for help on using the changeset viewer.