For the complete documentation index, see llms.txt. This page is also available as Markdown.

Creating chat commands

This page will help you to create chat commands in your plugins.

Chat commands are created through attributes and only works with STATIC methods. Here's different examples :

[ChatCommand("hi", "Says hi to you")]
public static string TestCommand(Network_Player player)
{
    return "Hi " + player.GetName();
}

You can add permissions to command natively.

// The last argument is a permission, this will make the command only available
// to users with the said permission granted.
[ChatCommand("hi", "Says hi to allowed users", "myplugin.commands.hi")]
public static string TestCommand(Network_Player player)
{
    return "Hi " + player.GetName();
}

You can also just make it void and do your own stuff without sending a message to the user.

[ChatCommand(name:"hi",docs:"a description",permission:"myplugin.hicommand")]
public static void TestCommand(Network_Player player)
{
    // Do your stuff.
}

Chat commands can also have arguments with a string[] args parameter as shown below.

Last updated