UNPKG

@getsolara/solara.js

Version:

A lightweight and modular Discord bot framework built on discord.js v14, with truly optional feature packages.

9 lines 309 B
module.exports = { name: "$messageID", description: "Returns the ID of the command message (if applicable).", takesBrackets: false, execute: async (context, args) => { if (!context.message) return "[Error: Command is not a message]"; return context.message.id; } };