Code:
namespace Oxide.Plugins
{
[Info("[KGF]TEXT COMMANDS", "LEGENDA VIE", 1.0)]
[Description("Custom server announcement plugin WWW.KGF.VC")]
public class kgftextcmd : RustPlugin
{
[ChatCommand("info")]
void infoCommand(BasePlayer player, string command, string[] args)
{
player.ChatMessage("[<color=#0099CC>KGF.VC</color>] <color=white>•</color> HELP\n\n If it's your first time on our server type <color=white>/tutorial</color>\n Type /kgf to access the main menu.");
return;
}
[ChatCommand("help")]
void helpCommand(BasePlayer player, string command, string[] args)
{
player.ChatMessage("[<color=#0099CC>KGF.VC</color>] <color=white>•</color> HELP\n\n If it's your first time on our server type <color=white>/tutorial</color>\n Type /kgf to access the main menu.");
return;
}