Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 277 Bytes

usdcommandname.md

File metadata and controls

21 lines (16 loc) · 277 Bytes
description
Returns the command name

$commandName

This function returns the name of the current code

Usage

bot.command({
name: "myawesomecommand",
code: `The command name is $commandName`
/*
The bot would return:
"myawesomecommand"
*/
})