aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/echo.ts
blob: 9e79800f2d9896412744cef1bbeca53b49805ff7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 });
            },
        },
    ]
});