diff options
| author | Fuwn <[email protected]> | 2022-05-17 21:38:57 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-05-17 21:38:57 -0700 |
| commit | 20dc3dd0bbb2289195086cb3fe4f880aa9235882 (patch) | |
| tree | fee9b213a432c33e12b416e9eacf7ec861e9b093 /mod.ts | |
| parent | feat(config): update class members (diff) | |
| download | macy-20dc3dd0bbb2289195086cb3fe4f880aa9235882.tar.xz macy-20dc3dd0bbb2289195086cb3fe4f880aa9235882.zip | |
feat(mod): more instructions for setup
This commit also moves my (Fuwn) ID into its own constant.
Diffstat (limited to 'mod.ts')
| -rw-r--r-- | mod.ts | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -12,6 +12,7 @@ import { APPROVED_ROLE, BREAKOUT_ROOM_EIGHT_ROLE, CLASS_MEMBERS, + FUWN_ID, LOBBY_CHANNEL, } from "./config.ts"; @@ -118,7 +119,7 @@ deploy.handle("verify", async (d: deploy.ApplicationCommandInteraction) => { if (member.nick === name) { d.respond({ content: "Someone with that exact name is already verified! If you " + - "think this is an error, DM <@217348698294714370>.", + `think this is an error, DM <@${FUWN_ID}>.`, ephemeral: true, }); @@ -190,9 +191,15 @@ deploy.handle("queue", (d: deploy.ApplicationCommandInteraction) => { deploy.handle("setup", (_: deploy.ApplicationCommandInteraction) => { deploy.client.client?.channels.sendMessage( LOBBY_CHANNEL, - "To access the rest of the server, send a message structured like so: " + + "To access the rest of the server, send a message structured like this: " + "`/verify [name]`, with `name` being your full name as shown in Zoom." + "\n\nAn example of a valid verification request looks like this: " + - "`/verify Zoltan Szabatin`.", + "`/verify Zoltan Szabatin`.\n\nIf you are unable to verify yourself; " + + "first, check if your name is recognized as a class member using the " + + "`/check [name]` command, with `name` being your full name as show in " + + "Zoom. An example of a valid check command looks like: " + + "`/check Zoltan Szabatin`.\n\nIf you are unable to verify yourself and " + + "your name is not recognized as a class member, you should then DM " + + `<@${FUWN_ID}>.`, ); }); |