aboutsummaryrefslogtreecommitdiff
path: root/src/plugins
diff options
context:
space:
mode:
authorBerlin <39058370+somerandomcloud@users.noreply.github.com>2022-10-12 18:19:42 +0200
committerGitHub <noreply@github.com>2022-10-12 18:19:42 +0200
commitebe62a17907b980d0c25177f647cb45135475a17 (patch)
treed5ab2e3293ba8ebe4100fb48835f19c2b2385076 /src/plugins
parent09b3f6d19b717dc5d3a2e824b02848edeb7f8862 (diff)
downloadVencord-ebe62a17907b980d0c25177f647cb45135475a17.tar.gz
Vencord-ebe62a17907b980d0c25177f647cb45135475a17.tar.bz2
Vencord-ebe62a17907b980d0c25177f647cb45135475a17.zip
FakeClyde (plugin) and sendBotMessage (API addition) (#66)
Co-authored-by: Ven <vendicated@riseup.net>
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/echo.ts23
1 files changed, 23 insertions, 0 deletions
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 });
+ },
+ },
+ ]
+});