From b9c7e60ac1c6b659b6f6a33635687dd7470f2b96 Mon Sep 17 00:00:00 2001 From: masterhc Date: Mon, 26 Feb 2024 23:58:59 +0000 Subject: [PATCH] Readme clean up, and added new command --- README.md | 42 +++++++++++++++++++++-------------------- commands/random/poll.js | 2 +- 2 files changed, 23 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index 2f91b9b..5ee7e72 100644 --- a/README.md +++ b/README.md @@ -14,60 +14,62 @@ The default prefix is "!" ## Commands ### Admin - -- **`activateStrikes.js`** (Aliases: aStrike) +- **activateStrikes** (Aliases: aStrike) - *Description:* Activates strikes for the guild. Can be called again to disable. -- **`ban.js`** +- **ban** - *Description:* Bans a user from the server. -- **`clearchat.js`** (Aliases: clear) +- **clearchat** (Aliases: clear) - *Description:* Clears the channel where it was used. You can pass a message ID to clear around it. -- **`createchannel.js`** (Aliases: channel) +- **createchannel** (Aliases: channel) - *Description:* Creates a text-based channel on the category the command was used. -- **`createvoicechannel.js`** (Aliases: voicechannel) +- **createvoicechannel** (Aliases: voicechannel) - *Description:* Creates a voice-based channel on the category the command was used. -- **`deletechannel.js`** (Aliases: delchannel) +- **deletechannel** (Aliases: delchannel) - *Description:* Deletes the channel it was used in. -- **`guilds.js`** +- **guilds** - *Description:* Shows a list of guilds that are using Rem-chan. -- **`kick.js`** +- **kick** - *Description:* Kicks a member from the server. -- **`prune.js`** +- **prune** - *Description:* Kicks everyone that has no roles on the server and has been on the server for more than 10 days. -- **`purge.js`** +- **purge** - *Description:* Rebuilds the channel it was used in. -- **`removerustcommitschannel.js`** (Aliases: unsetrustcommits, urustc) +- **removerustcommitschannel** (Aliases: unsetrustcommits, urustc) - *Description:* Removes a channel from the rust commits feed. -- **`resetFeedChannel.js`** (Aliases: rsetFeef, rFeed) +- **resetFeedChannel** (Aliases: rsetFeef, rFeed) - *Description:* Resets feed display on this channel. You can then set another feed or the same to use this channel. -- **`setFeedId.js`** (Aliases: setYTFeed, setytf, setYTF) +- **setFeedId** (Aliases: setYTFeed, setytf, setYTF) - *Description:* Sets the message channel where a defined YouTube channel feed will be displayed. (Order: YouTube channel URL, Discord channel ID, Custom message to display when a new video is released) -- **`setFreeGamesChannel.js`** (Aliases: freegamesc, freec) +- **setFreeGamesChannel** (Aliases: freegamesc, freec) - *Description:* Sets the channel that will receive the free games/deals updates. -- **`setRoleRule.js`** (Aliases: rolerule, setrr) +- **setRoleRule** (Aliases: rolerule, setrr) - *Description:* Sets an auto-role rule. Requires four arguments in the following order: MessageID; RoleID; Emoji. MessageID refers to the message where Rem will look for reactions and then set a role to a user. -- **`setcrackwatchchannel.js`** (Aliases: rustcommits, rustc) +- **setcrackwatchchannel** (Aliases: rustcommits, rustc) - *Description:* This command will use the indicated channel to show updates from the CrackWatch website. It is necessary to use this command again each time the bot has an update. -- **`setrustcommitschannel.js`** (Aliases: rustcommits, rustc) +- **setrustcommitschannel** (Aliases: rustcommits, rustc) - *Description:* Sets the channel that will receive the rust commits. -- **`strike.js`** - - *Description:* Strikes a user. Usage: `!strike @USER REASON` +- **strike** + - *Description:* Strikes a user. Usage: !strike @USER REASON +- **poll** + - *Description:* Make a poll of whatever you want. Usage: !poll QUESTION? "OPTION1" "OPTION2" "OPTION3". Be sure to add the quotation marks on the options. + ### Image diff --git a/commands/random/poll.js b/commands/random/poll.js index a64d7d6..d68dcda 100644 --- a/commands/random/poll.js +++ b/commands/random/poll.js @@ -6,7 +6,7 @@ const {Command, ErrorMessage, ErrorType, EmbedBuilder, ActionRowBuilder, ButtonB super(client, { name: 'poll', memberName: 'poll', - description: `Make a poll of what ever you want. Usage: !poll QUESTION? "OPTION1" "OPTION2" "OPTION3" ... Be sure to add the quotation marks on the options.` + description: `Make a poll of what ever you want. Usage: !poll QUESTION? "OPTION1" "OPTION2" "OPTION3"; Be sure to add the quotation marks on the options.` }) this.client = client;