🧩 Custom Commands

With the custom command system, you can create your own personalized commands for your server. For example, typing !hello could make the bot respond with "Hello!". Perfect for FAQs, fun responses, or community interaction!

🧾 Command List

/ccmd create

Description: Creates a new custom command with your specified response.

Required Permission: Administrator

/ccmd create --prefix [prefix] --name [command name] --content [command content] --embed [true/false] --hideuser [true/false] --role [role]
  • prefix – Command trigger prefix (e.g. !)
  • name – Command name
  • content – The reply message (text or embed)
  • embed – Whether the response is an embed (optional)
  • hideuser – Hide the user's original message (optional)
  • role – Limit usage to specific role (optional)

/ccmd delete

Description: Deletes a previously created custom command.

Required Permission: Administrator

/ccmd delete --name [command name]
  • name – The name of the command to delete

/ccmd edit

Description: Edits the content, embed style, or permission role of an existing command.

Required Permission: Administrator

/ccmd edit --name [command name] --content [new content] --embed [true/false] --hideuser [true/false] --role [new role]
  • name – Command to edit
  • content – New message (optional)
  • embed – Enable/disable embed format (optional)
  • hideuser – Hide the user’s message (optional)
  • role – Assign new role access (optional)

/ccmd list

Description: Displays all custom commands available on your server.

Required Permission: Administrator

/ccmd list