add blep command (#4)
This commit is contained in:
parent
78541dcecf
commit
36066ad3d8
3 changed files with 18 additions and 1 deletions
4
app.js
4
app.js
|
@ -7,6 +7,7 @@ import {
|
|||
} from "discord-interactions";
|
||||
import { Client, GatewayIntentBits, ActivityType } from "discord.js";
|
||||
import {
|
||||
blep,
|
||||
help,
|
||||
pet,
|
||||
schedule_message,
|
||||
|
@ -42,6 +43,9 @@ function handle_application_command(state, data, channel_id) {
|
|||
case "help":
|
||||
return help(state);
|
||||
|
||||
case "blep":
|
||||
return blep(state);
|
||||
|
||||
default:
|
||||
console.error(`unknown command: ${name}`);
|
||||
return res.status(400).json({ error: "unknown command" });
|
||||
|
|
|
@ -41,8 +41,14 @@ export function help(state) {
|
|||
state,
|
||||
`Hi, I'm sily-bot!
|
||||
Here are the available commands and their descriptions:
|
||||
- \`/blep\` blep.
|
||||
- \`/help\` Show this message.
|
||||
- \`/pet\` You can pet sily-bot.
|
||||
- \`/schedule-message <message> <cron>\` Schedule a message to be send later. Works like Linux cron jobs in the format second minute hour day month weekday. Put the number (or name of month or weekday) in each spot. If you want it to run every second, minute, etc. instead of once when it reaches the provided number, use a * instead of a number. For instance, to run a job every minute on January 4th, you might use 0 * * 4 January *. The bot replies with a UUID that can be used to cancel the cron job later.
|
||||
- \`/schedule-message <message> <cron>\` Schedule a message to be send later. Works like Linux cron jobs in the format second minute hour day month weekday. Put the number (or name of month or weekday) in each spot. If you want it to run every second, minute, etc. instead of once when it reaches the provided number, use a \`*\` instead of a number. For instance, to run a job every minute on January 4th, you might use \`0 * * 4 January *\`. The bot replies with a UUID that can be used to cancel the cron job later.
|
||||
- \`/unschedule-message <id>\` Stop sending a message with the given id.`,
|
||||
);
|
||||
}
|
||||
|
||||
export function blep(state) {
|
||||
return send(state, `≽^•𐃷•^≼`);
|
||||
}
|
||||
|
|
|
@ -3,6 +3,13 @@ import "dotenv/config";
|
|||
import { REST, Routes } from "discord.js";
|
||||
|
||||
const commands = [
|
||||
{
|
||||
name: "blep",
|
||||
description: "blep",
|
||||
type: 1,
|
||||
integration_types: [0],
|
||||
contexts: [0],
|
||||
},
|
||||
{
|
||||
name: "help",
|
||||
description: "get help",
|
||||
|
|
Loading…
Add table
Reference in a new issue