Jump to content

Command with parameters


Wkn

Recommended Posts

I'm actually trying to create /me and /do commands for a roleplay server but I realised that I am not able to use other parameters in "public void CMD_me (Client client)". Is there any option to forward the input text along with /me into this command?

Link to comment
Share on other sites

https://wiki.gtanet.work/index.php?title=Getting_Started_with_Commands

 

[Command("me", GreedyArg = true)]
public void MeCommand(Client player, string action)
{ 
    var msg = "* " + player.Name + " " + action;
    var playersInRadius = NAPI.Player.GetPlayersInRadiusOfPlayer(30, player);

    foreach (var player in playersInRadius)
    {
        NAPI.Chat.SendChatMessageToPlayer(player, msg);
    }
}

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...