forked from Supositware/Haha-Yes
fakebot/user
This commit is contained in:
parent
a6843af3a5
commit
132a6a0a7c
1 changed files with 63 additions and 0 deletions
63
commands/fun/fakebot.js
Normal file
63
commands/fun/fakebot.js
Normal file
|
@ -0,0 +1,63 @@
|
|||
const { Command } = require('discord-akairo');
|
||||
const fs = require('fs');
|
||||
|
||||
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?',
|
||||
}
|
||||
},
|
||||
{
|
||||
id: 'message',
|
||||
type: 'string',
|
||||
prompt: {
|
||||
start: 'What message shoudl i send?',
|
||||
},
|
||||
match: 'rest',
|
||||
}
|
||||
],
|
||||
description: {
|
||||
content: 'Fake a bot/user with webhook',
|
||||
usage: '',
|
||||
examples: ['']
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
async exec(message, args) {
|
||||
if (!fs.existsSync(`./webhook/${message.guild.id}.json`)) {
|
||||
message.channel.createWebhook('fakebot')
|
||||
.then(webhook => {
|
||||
fs.writeFile(`./webhook/${message.guild.id}.json`, `{"id": "${webhook.id}", "token": "${webhook.token}"}`, function (err) {
|
||||
if (err) {
|
||||
console.log(err);
|
||||
}
|
||||
sendWebhook(this.client);
|
||||
});
|
||||
});
|
||||
} else {
|
||||
sendWebhook(this.client);
|
||||
}
|
||||
|
||||
function sendWebhook(client) {
|
||||
let webhook = require(`../../webhook/${message.guild.id}.json`);
|
||||
client.fetchWebhook(webhook.id, webhook.token)
|
||||
.then(webhook => {
|
||||
webhook.edit({
|
||||
name: args.member.username,
|
||||
avatar: args.member.displayAvatarURL()
|
||||
});
|
||||
return webhook.send(args.message);
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
module.exports = fakebotCommand;
|
Loading…
Reference in a new issue