Wkn Posted April 19, 2019 Posted April 19, 2019 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?
Flashrex Posted April 19, 2019 Posted April 19, 2019 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); } }
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now