$commandName
Returns the name of the slash command that triggered the current execution.
Trigger
This function only works within the context of a slash command.
Usage
$commandName
Example
This example demonstrates how to use $commandName
to display the name of the command that was executed.
Code
$interactionReply[:game_die: $random[1;6]]
$interactionReply[Command ran: `$commandName`]
Result
The bot will roll a dice and then reply with the result and the name of the command used. For example, if the command was /roll
, the bot might respond with: :game_die: 4 Command ran: \
roll``
Related Functions
- Slash command: Learn how to create and trigger slash commands.
- $interactionReply: Send a reply to the interaction that triggered the command.
- $getOption: Retrieve the value of an option provided by the user in the slash command.