discord.js get user by id
client.users.cache.find(user => user.id === 'USER-ID')
discord.js get user by id
client.users.cache.find(user => user.id === 'USER-ID')
discord js clear message from id
//Updated to d.js v12 & fixed some bugs |
// Input: [!clear @user <amount>] & [!clear <amount>] !Command name and prefix depend on your code!
const user = message.mentions.users.first();
let amount = !!parseInt(message.content.split(' ')[1]) ? parseInt(message.content.split(' ')[1]) : parseInt(message.content.split(' ')[2])
amount = Math.floor(amount + 1);
if (!amount) return message.reply('You need to specify an amount.');
if (!amount && !user) return message.reply('You need to specify a user and an amount.');
messages.channel.messages.fetch({
limit: 100,
}).then((messages) => {
if (user) {
const filterBy = user ? user.id : Client.user.id;
messages = messages.filter(m => m.author.id === filterBy).array().slice(0, amount);
} else {
messages = amount;
}
message.channel.bulkDelete(messages).catch(error => console.log(error.stack));
});
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us