welcome message

merge-requests/3/head
Loïc Bersier 5 years ago
parent 75e9252f30
commit 72325aa98a

@ -0,0 +1,39 @@
const { Command } = require('discord-akairo');
const fs = require('fs');
class welcomeCommand extends Command {
constructor() {
super('welcome', {
aliases: ['welcome'],
category: 'admin',
channelRestriction: 'guild',
userPermissions: ['MANAGE_CHANNELS'],
args: [
{
id: 'message',
type: 'string',
match: 'rest'
}
],
description: {
content: 'Set welcome message when user join, can use [member] to get the name of the user joining and [server] to get the name of the server',
usage: '[welcome message]',
examples: ['everyone welcome [adjectives] [member] and welcome on [server]']
}
});
}
async exec(message, args) {
let welcomeChannel = message.channel.id;
fs.writeFile(`./welcome/${message.guild.id}.json`, `{"channel": "${welcomeChannel}", "message": "${args.message}"}`, function (err) {
if (err) {
console.log(err);
}
});
return message.channel.send(`This channel will now be used to welcome new user with the following message: ${args.message}`);
}
}
module.exports = welcomeCommand;
Loading…
Cancel
Save