Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Unturned_Plugins
using System; using UnityEngine; using Rocket.API; using Rocket.Unturned.Player; using Rocket.Unturned; using Rocket.Unturned.Commands; using Rocket.Unturned.Chat; using System.Collections.Generic; namespace Sample { public class CommandHello : IRocketCommand { public AllowedCaller AllowedCaller => AllowedCaller.Both; public string Name => "hello"; public string Help => "A sample command"; public string Syntax => "<player>"; public List<string> Aliases => new List<string>(); public List<string> Permissions => new List<string>() { "myplugin.permission" }; public void Execute(IRocketPlayer caller, string[] command) { UnturnedChat.Say("Hello!"); } } }
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
Regex - Leading zeros
C# constructor in inheritance
generic stack implementation
saved
TrzyKreski
Šovljanski - beskonačna petlja bez goto-a
Lotto35Generator
Recursive 3
C# URI parts url
C# Extension Method
Please log in to post a comment.