最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How does bulkDelete work? - Stack Overflow

programmeradmin1浏览0评论

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.

发布评论

评论列表(0)

  1. 暂无评论