-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ Add example command
- Loading branch information
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
using Rocket.API; | ||
using Rocket.Unturned.Chat; | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace UnturnedExamplePlugin.Commands | ||
{ | ||
public class ExampleCommand : IRocketCommand | ||
{ | ||
public AllowedCaller AllowedCaller => AllowedCaller.Player; | ||
|
||
public string Name => "example"; | ||
|
||
public string Help => "Use /example for get example message"; | ||
|
||
public string Syntax => ""; | ||
|
||
public List<string> Aliases => new List<string>(); | ||
|
||
public List<string> Permissions => new List<string>(); | ||
|
||
public void Execute(IRocketPlayer caller, string[] command) | ||
{ | ||
UnturnedChat.Say(caller, $"[{DateTime.Now}] {Plugin.Instance.Random.Next(10000)}"); // Say player message with Rocket | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters