javascript - How does bulkDelete work? - Stack Overflow

I tried using bulkDelete to make my bot delete its message but I get this error:(node:5724) UnhandledPr

I tried using bulkDelete to make my bot delete its message but I get this error:

(node:5724) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: Bad Request
(node:5724) DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

And here is my code:

const Discord = require('discord.js');
const bot = new Discord.Client();
const config = require("./config.json");

bot.on('ready', () =>{
    console.log('I am ready!');
});

//var cleanarr=[];

bot.on("message", message =>{
    if (message.author.bot) return;
var cleanarr=[];
        let mand = message.content.split(" ")[0];
mand = mand.slice(config.prefix.length);

        let args = message.content.split(" ").slice(1);
if (message.content == 'lol'){
    message.channel.sendMessage('LUL');
    cleanarr.unshift(`${message.channel.lastMessageID}`);
    }
if (mand == "clean") {
    message.channel.sendMessage('Cleaning...');
    message.channel.bulkDelete(cleanarr);
    var cleanarr = [];

What does the bulkDelete need? Is it the message id or something else?

I have no idea if I doing this right (obviously I am not) since I started coding with zero knowledge of javascript or anything related.

I tried using bulkDelete to make my bot delete its message but I get this error:

(node:5724) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: Bad Request
(node:5724) DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

And here is my code:

const Discord = require('discord.js');
const bot = new Discord.Client();
const config = require("./config.json");

bot.on('ready', () =>{
    console.log('I am ready!');
});

//var cleanarr=[];

bot.on("message", message =>{
    if (message.author.bot) return;
var cleanarr=[];
        let mand = message.content.split(" ")[0];
mand = mand.slice(config.prefix.length);

        let args = message.content.split(" ").slice(1);
if (message.content == 'lol'){
    message.channel.sendMessage('LUL');
    cleanarr.unshift(`${message.channel.lastMessageID}`);
    }
if (mand == "clean") {
    message.channel.sendMessage('Cleaning...');
    message.channel.bulkDelete(cleanarr);
    var cleanarr = [];

What does the bulkDelete need? Is it the message id or something else?

I have no idea if I doing this right (obviously I am not) since I started coding with zero knowledge of javascript or anything related.

Share Improve this question edited Mar 23, 2018 at 18:02 André 4,4974 gold badges32 silver badges58 bronze badges asked Jan 10, 2017 at 17:38 Neycho KalaydzhievNeycho Kalaydzhiev 211 gold badge1 silver badge3 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 7

The easiest way to delete x messages from a channel is to provide an integer from 2 - 100 as parameters to the <TextChannel>.bulkDelete method.

Example:

message.channel.bulkDelete(100).then(() => {
  message.channel.send("Deleted 100 messages.").then(msg => msg.delete(3000));
});

The discord bulk delete endpoint requires the array of messages you would like deleted. Small note here as of yesterday the bulk delete endpoint will not remove messages older than 2 weeks.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743635172a4482027.html

相关推荐

  • javascript - How does bulkDelete work? - Stack Overflow

    I tried using bulkDelete to make my bot delete its message but I get this error:(node:5724) UnhandledPr

    18小时前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信