From ebe62a17907b980d0c25177f647cb45135475a17 Mon Sep 17 00:00:00 2001 From: Berlin <39058370+somerandomcloud@users.noreply.github.com> Date: Wed, 12 Oct 2022 18:19:42 +0200 Subject: FakeClyde (plugin) and sendBotMessage (API addition) (#66) Co-authored-by: Ven --- src/plugins/echo.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/plugins/echo.ts (limited to 'src/plugins') diff --git a/src/plugins/echo.ts b/src/plugins/echo.ts new file mode 100644 index 0000000..9e79800 --- /dev/null +++ b/src/plugins/echo.ts @@ -0,0 +1,23 @@ +import definePlugin from "../utils/types"; +import { ApplicationCommandInputType, sendBotMessage, findOption, OptionalMessageOption } from "../api/Commands"; +import { ReactionEmoji, Message, MessageReaction, JSMessage } from "discord-types/general"; + +export default definePlugin({ + name: "Echo", + description: "Uses Clydes message function to send a custom message of your choice (locally)", + authors: [{ name: "ICodeInAssembly", id: 702973430449832038n }], + dependencies: ["CommandsAPI"], + commands: [ + { + name: "echo", + description: "Sends a message as Clyde (locally)", + options: [OptionalMessageOption], + inputType: ApplicationCommandInputType.BOT, + execute: (opts, ctx) => { + const message = findOption(opts, "message", ""); + + sendBotMessage(ctx.channel.id, { content: message }); + }, + }, + ] +}); -- cgit