diff --git a/nohup.out b/nohup.out new file mode 100644 index 0000000..9a88074 --- /dev/null +++ b/nohup.out @@ -0,0 +1,29 @@ +Warning deno task is unstable and may drastically change in the future +Task run:db surreal start --user root --pass root rocksdb://dist/database + + .d8888b. 888 8888888b. 888888b. +d88P Y88b 888 888 'Y88b 888 '88b +Y88b. 888 888 888 888 .88P + 'Y888b. 888 888 888d888 888d888 .d88b. 8888b. 888 888 888 8888888K. + 'Y88b. 888 888 888P' 888P' d8P Y8b '88b 888 888 888 888 'Y88b + '888 888 888 888 888 88888888 .d888888 888 888 888 888 888 +Y88b d88P Y88b 888 888 888 Y8b. 888 888 888 888 .d88P 888 d88P + 'Y8888P' 'Y88888 888 888 'Y8888 'Y888888 888 8888888P' 8888888P' + + +[2022-10-17 17:23:11] INFO  surrealdb::iam Root authentication is enabled +[2022-10-17 17:23:11] INFO  surrealdb::iam Root username is 'root' +[2022-10-17 17:23:11] INFO  surrealdb::dbs Database strict mode is disabled +[2022-10-17 17:23:11] INFO  surrealdb::kvs Starting kvs store at rocksdb://dist/database +[2022-10-17 17:23:11] INFO  surrealdb::kvs Started kvs store at rocksdb://dist/database +[2022-10-17 17:23:11] INFO  surrealdb::net Starting web server on 0.0.0.0:8000 +[2022-10-17 17:23:11] INFO  surrealdb::net Started web server on 0.0.0.0:8000 +[2022-10-17 17:23:47] INFO  surreal::web 127.0.0.1:42368 GET /rpc HTTP/1.1 101 "Deno/1.26.1" 501.53µs +[2022-10-17 17:23:51] INFO  surreal::web 127.0.0.1:34170 GET /rpc HTTP/1.1 101 "Deno/1.26.1" 47.159µs +[2022-10-17 17:25:08] INFO  surreal::web 127.0.0.1:54364 GET /rpc HTTP/1.1 101 "Deno/1.26.1" 46.608µs +[2022-10-17 17:25:52] INFO  surreal::web 127.0.0.1:55846 GET /rpc HTTP/1.1 101 "Deno/1.26.1" 64.642µs +[2022-10-17 17:26:01] INFO  surreal::web 127.0.0.1:46234 GET /rpc HTTP/1.1 101 "Deno/1.26.1" 51.076µs +[2022-10-17 17:39:52] INFO  surreal::web 127.0.0.1:35712 GET /rpc HTTP/1.1 101 "Deno/1.26.1" 47.499µs +[2022-10-17 17:40:08] INFO  surreal::web 127.0.0.1:53630 GET /rpc HTTP/1.1 101 "Deno/1.26.1" 92.533µs +[2022-10-17 18:03:46] INFO  surreal::web 127.0.0.1:42544 GET /rpc HTTP/1.1 101 "Deno/1.26.1" 43.141µs +[2022-10-17 18:05:07] INFO  surreal::web 127.0.0.1:55376 GET /rpc HTTP/1.1 101 "Deno/1.26.1" 41.207µs diff --git a/src/commands/disclaimer.ts b/src/commands/disclaimer.ts new file mode 100644 index 0000000..f5b933c --- /dev/null +++ b/src/commands/disclaimer.ts @@ -0,0 +1,12 @@ +import { sendInteractionResponse, SlashCommandOptions } from "@wackford/mod.ts"; + +export default { + name: "disclaimer", + description: "proves that we are not at fault when the bot says something stupid again", + execute: async (bot, interaction) => { + await sendInteractionResponse(bot, interaction, { + content: `DISCLAIMER: We (Wackyware) do not take any responsibility for the things said by this bot, if they offend you, get the administrator of your server to remove the message. +For more details see https://discord.gg/Pxt9dVDSRn and `, + }); + }, +} as SlashCommandOptions;