mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-14 09:03:03 -04:00
FakeClyde (plugin) and sendBotMessage (API addition) (#66)
Co-authored-by: Ven <vendicated@riseup.net>
This commit is contained in:
parent
09b3f6d19b
commit
ebe62a1790
4 changed files with 53 additions and 3 deletions
23
src/plugins/echo.ts
Normal file
23
src/plugins/echo.ts
Normal file
|
@ -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 });
|
||||
},
|
||||
},
|
||||
]
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue