You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/commands/fun/fakebot.js

70 lines
1.7 KiB
JavaScript

const { Command } = require('discord-akairo');
class fakebotCommand extends Command {
constructor() {
super('fakebot', {
aliases: ['fakebot', 'fakeuser', 'fakemember'],
category: 'fun',
clientPermissions: ['MANAGE_WEBHOOKS'],
args: [
{
id: 'member',
type: 'user',
prompt: {
start: 'Who should i fake?',
retry: 'Didn\'t find any user named like that, please say the name again.'
}
},
{
id: 'message',
type: 'string',
prompt: {
start: 'What message should i send?',
},
match: 'rest',
}
],
description: {
content: 'Fake a bot/user with webhook',
usage: '[user] [message]',
examples: ['Supositware#1616 hello!']
}
});
}
async exec(message, args) {
let Attachment = (message.attachments).array();
let url;
// Get attachment link
if (Attachment[0]) {
url = Attachment[0].url;
}
message.channel.createWebhook(args.member.username, {
avatar: args.member.displayAvatarURL(),
reason: `Fakebot/user command triggered by: ${message.author.username}`
})
.then(webhook => {
// Have to edit after creation otherwise the picture doesn't get applied
webhook.edit({
name: args.member.username,
avatar: args.member.displayAvatarURL(),
reason: `Fakebot/user command triggered by: ${message.author.username}`
});
this.client.fetchWebhook(webhook.id, webhook.token)
.then(webhook => {
message.delete();
if (url)
webhook.send(args.message, {files: [url]});
else
webhook.send(args.message);
setTimeout(() => {
webhook.delete();
}, 3000);
});
});
}
}
module.exports = fakebotCommand;