Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
658 views
in Technique[技术] by (71.8m points)

discord.js - i get stucked on my project - i have error

the command just no work. the first one i a execute, and the 2nd is the code

enter image description here

if(command === 'clear'){
    client.commands.get('clear').execute(message, args);
}

module.exports = { 
name: 'clear', 
description: "Clear messages!", 
execute: async function(message, args) { // here were your issue
    if (!args[0]) 
        return message.reply("Please enter the amount of messages to clear!");

    if(isNaN(args[0])) 
        return message.reply("Please type a real number!");

    if(args[0] > 100) 
        return message.reply("You can't remove more than 100 messages!");

    if(args[0] < 1) 
        return message.reply("You have to delete at least one message!");

    await message.channel.messages.fetch({ limit: args[0]}).then(messages =>{
        message.channel.bulkDelete(messages)
    });
} 

}

question from:https://stackoverflow.com/questions/65897218/i-get-stucked-on-my-project-i-have-error

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...