Readme clean up, and added new command

master
masterhc 1 year ago
parent 7b3f623b7f
commit b9c7e60ac1

@ -14,60 +14,62 @@ The default prefix is "!"
## Commands ## Commands
### Admin ### Admin
- **activateStrikes** (Aliases: aStrike)
- **`activateStrikes.js`** (Aliases: aStrike)
- *Description:* Activates strikes for the guild. Can be called again to disable. - *Description:* Activates strikes for the guild. Can be called again to disable.
- **`ban.js`** - **ban**
- *Description:* Bans a user from the server. - *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. - *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. - *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. - *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. - *Description:* Deletes the channel it was used in.
- **`guilds.js`** - **guilds**
- *Description:* Shows a list of guilds that are using Rem-chan. - *Description:* Shows a list of guilds that are using Rem-chan.
- **`kick.js`** - **kick**
- *Description:* Kicks a member from the server. - *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. - *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. - *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. - *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. - *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) - *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. - *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. - *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. - *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. - *Description:* Sets the channel that will receive the rust commits.
- **`strike.js`** - **strike**
- *Description:* Strikes a user. Usage: `!strike @USER REASON` - *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 ### Image

@ -6,7 +6,7 @@ const {Command, ErrorMessage, ErrorType, EmbedBuilder, ActionRowBuilder, ButtonB
super(client, { super(client, {
name: 'poll', name: 'poll',
memberName: '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; this.client = client;

Loading…
Cancel
Save