Description updates

This commit is contained in:
Wizzard 2025-02-06 10:50:09 -05:00
parent c42d519a06
commit 0e32bc2fb4
2 changed files with 2 additions and 10 deletions

6
commands/react.js vendored
View File

@ -1,10 +1,6 @@
module.exports = {
name: 'react',
description: `Automatically react with specified emojis to multiple users messages, or stop reacting.\n
Usage:
.react <userID1,userID2,...> <emoji1> <emoji2> ... - React to messages from multiple users with specified emojis.
Example: \`.react 12345,67890 :smile: :thumbsup:\`
.react stop - Stop reacting to users' messages.`,
description: `Automatically react with specified emojis to multiple users messages, or stop reacting.`,
async execute(message, args, deleteTimeout) {
if (args.length === 0) {
if (message.client.targetReactUserIds && message.client.reactEmojis) {

View File

@ -1,10 +1,6 @@
module.exports = {
name: 'reply',
description: `Automatically reply with a specified message to multiple users messages, or stop replying.\n
Usage:
.reply <userID1,userID2,...> <message> - Automatically reply to messages from multiple users with the specified message.
Example: \`.reply 12345,67890 Hello there!\`
.reply stop - Stop replying to users' messages.`,
description: `Automatically reply with a specified message to multiple users messages, or stop replying.`,
async execute(message, args, deleteTimeout) {
if (args.length === 0) {
if (message.client.targetReplyUserIds && message.client.replyMessage) {