Using placeholders for player info in command?Solved

Hi i am ussing a plugin called Custom Chat Commands and there is a option to make a player use a comand limited o with cooldown, what I want is for players to use one command only for 1 single time and another one every 24 hours.

Admin to give reward points need to type /sr add <playername/id> <amount> the same in console with out the /

my question is how to execute the command and who knows who is executing it, I mean the player's name without having to add it, Or a better way would be that the admin could give himself reward points without adding the name

my apologies for all the explanation and thanks.

 
See the plugin page here for info on placeholders.

Ex. "say {player.name} / {player.id} has used the /noclip command!"

Thanks alot Wulf!!

This is how I have it configured:

      "Command": "dreward",
      "Messages": [
        "You have received 500 reward points."
      ],
      "Permission": "customchatcommands.admin",
      "ConsoleCmd": [
        "sr add {player.name} 500"
      ],
      "UserID": 0,
      "Broadcast": false,
      "RconCmd": [
        "sr add {player.name} 500"
Locked automatically