mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2024-12-22 15:53:08 +02:00
update
This commit is contained in:
parent
74fd489354
commit
61310e09b6
@ -1,9 +1,12 @@
|
||||
const Discord = require('discord.js');
|
||||
const { version } = require('../package.json');
|
||||
module.exports = {
|
||||
name: 'help',
|
||||
description: 'Displays help menu',
|
||||
usage: 'help [command]',
|
||||
usage: '[command]',
|
||||
aliases: ['command', 'commands'],
|
||||
args: false,
|
||||
cooldown: 5,
|
||||
execute(message, args, config, version) {
|
||||
const client = message.client;
|
||||
// command starts here
|
||||
@ -15,7 +18,9 @@ module.exports = {
|
||||
.addField("...", `...`, true)
|
||||
.addField("...", `...`, true)
|
||||
.setFooter(`${client.guilds.get(config.guildID).name} : DiscordTickets by Eartharoid`);
|
||||
message.channel.send({embed})
|
||||
message.channel.send({
|
||||
embed
|
||||
})
|
||||
} else {
|
||||
message.channel.send(`**Prefix =** \`${config.prefix}\`\n**Bot Version =** \`${version}\``)
|
||||
}
|
||||
|
@ -1,7 +1,9 @@
|
||||
module.exports = {
|
||||
name: 'new',
|
||||
description: 'Create a new ticket',
|
||||
usage: 'new [brief description]',
|
||||
usage: '<brief description>',
|
||||
aliases: ['ticket'],
|
||||
args: true,
|
||||
execute(message, args, config) {
|
||||
// command starts here
|
||||
message.delete();
|
||||
|
68
index.js
68
index.js
@ -45,6 +45,8 @@ const config = require('./config.json');
|
||||
const { version, homepage } = require('./package.json');
|
||||
const client = new Discord.Client();
|
||||
client.commands = new Discord.Collection();
|
||||
const cooldowns = new Discord.Collection();
|
||||
|
||||
|
||||
|
||||
const commands = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));
|
||||
@ -78,7 +80,12 @@ client.once('ready', () => { // after bot has logged in
|
||||
console.log(`> Loading '${config.prefix}${command.name}' command`);
|
||||
}
|
||||
console.log(leeks.colors.green(`Logged in as ${client.user.tag}`))
|
||||
client.user.setPresence({ game: { name: config.playing }, status: 'online' })
|
||||
client.user.setPresence({
|
||||
game: {
|
||||
name: config.playing
|
||||
},
|
||||
status: 'online'
|
||||
})
|
||||
// .then(console.log)
|
||||
.catch(console.error);
|
||||
// console.log(leeks.colors.green(`Set playing status as `) + leeks.colors.yellow(`'${config.playing}${config.prefix}help'`));
|
||||
@ -89,7 +96,9 @@ client.once('ready', () => { // after bot has logged in
|
||||
.setColor("#2ECC71")
|
||||
.setDescription(":white_check_mark: **Started succesfully**")
|
||||
.setFooter(`${client.guilds.get(config.guildID).name} : DiscordTickets by Eartharoid`);
|
||||
client.channels.get(config.logChannel).send({embed})
|
||||
client.channels.get(config.logChannel).send({
|
||||
embed
|
||||
})
|
||||
} else {
|
||||
client.channels.get(config.logChannel).send(":white_check_mark: **Started succesfully**")
|
||||
}
|
||||
@ -101,7 +110,9 @@ client.once('ready', () => { // after bot has logged in
|
||||
.setColor("#2ECC71")
|
||||
.setDescription(":white_check_mark: **Required permissions have been granted**")
|
||||
.setFooter(`${client.guilds.get(config.guildID).name} : DiscordTickets by Eartharoid`);
|
||||
client.channels.get(config.logChannel).send({embed})
|
||||
client.channels.get(config.logChannel).send({
|
||||
embed
|
||||
})
|
||||
} else {
|
||||
client.channels.get(config.logChannel).send(":white_check_mark: **Started succesfully**")
|
||||
}
|
||||
@ -114,7 +125,9 @@ client.once('ready', () => { // after bot has logged in
|
||||
.setColor("#E74C3C")
|
||||
.setDescription(":x: **Required permissions have not been granted**\nPlease give the bot the `ADMINISTRATOR` permission")
|
||||
.setFooter(`${client.guilds.get(config.guildID).name} : DiscordTickets by Eartharoid`);
|
||||
client.channels.get(config.logChannel).send({embed})
|
||||
client.channels.get(config.logChannel).send({
|
||||
embed
|
||||
})
|
||||
} else {
|
||||
client.channels.get(config.logChannel).send(":white_check_mark: **Started succesfully**")
|
||||
}
|
||||
@ -127,6 +140,7 @@ client.on('message', message => {
|
||||
if (message.author.bot) return;
|
||||
if (message.channel.type === "dm") {
|
||||
if (message.author.id === client.user.id) return;
|
||||
message.channel.send(`Sorry, commands can only be used on the server.`)
|
||||
if (config.logDMs) {
|
||||
if (config.useEmbeds) {
|
||||
const embed = new Discord.RichEmbed()
|
||||
@ -135,11 +149,15 @@ client.on('message', message => {
|
||||
.addField("Username", message.author.tag, true)
|
||||
.addField("Message", message.content, true)
|
||||
.setFooter(`${client.guilds.get(config.guildID).name} : DiscordTickets by Eartharoid`);
|
||||
client.channels.get(config.logChannel).send({embed})
|
||||
client.channels.get(config.logChannel).send({
|
||||
embed
|
||||
})
|
||||
} else {
|
||||
client.channels.get(config.logChannel).send(`DM received from **${message.author.tag} (${message.author.id})** : \n\n\`\`\`${message.content}\`\`\``);
|
||||
}
|
||||
} else { return };
|
||||
} else {
|
||||
return
|
||||
};
|
||||
|
||||
}
|
||||
if (message.channel.bot) return;
|
||||
@ -151,11 +169,43 @@ client.on('message', message => {
|
||||
|
||||
const [, matchedPrefix] = message.content.match(prefixRegex);
|
||||
const args = message.content.slice(matchedPrefix.length).trim().split(/ +/);
|
||||
const command = args.shift().toLowerCase();
|
||||
if (!client.commands.has(command)) return;
|
||||
const commandName = args.shift().toLowerCase();
|
||||
if (!client.commands.has(commandName)) return;
|
||||
const command = client.commands.get(commandName);
|
||||
|
||||
if (command.args && !args.length) {
|
||||
let reply = `:x: **Arguments were expected but none were provided.**`;
|
||||
|
||||
if (command.usage) {
|
||||
reply += `\n**Usage:** \`${config.prefix}${command.name} ${command.usage}\``;
|
||||
}
|
||||
|
||||
return message.channel.send(reply);
|
||||
};
|
||||
|
||||
|
||||
if (!cooldowns.has(command.name)) {
|
||||
cooldowns.set(command.name, new Discord.Collection());
|
||||
}
|
||||
|
||||
const now = Date.now();
|
||||
const timestamps = cooldowns.get(command.name);
|
||||
const cooldownAmount = (command.cooldown || 3) * 1000;
|
||||
|
||||
if (timestamps.has(message.author.id)) {
|
||||
const expirationTime = timestamps.get(message.author.id) + cooldownAmount;
|
||||
|
||||
if (now < expirationTime) {
|
||||
const timeLeft = (expirationTime - now) / 1000;
|
||||
return message.reply(`please wait ${timeLeft.toFixed(1)} more second(s) before reusing the \`${command.name}\` command.`);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
try {
|
||||
client.commands.get(command).execute(message, args, config, version);
|
||||
// client.commands.get(command).execute(message, args, config);
|
||||
command.execute(message, args, config);
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
message.channel.send(`:x: **Oof!** An error occured whilst executing that command.\nThe issue has been reported.`);
|
||||
|
Loading…
Reference in New Issue
Block a user