You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
const Discord = require('discord.js');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
name: "",
|
|
|
|
aliases: [],
|
|
|
|
help: new Discord.MessageEmbed()
|
|
|
|
.setTitle("Help -> ")
|
|
|
|
.setDescription("")
|
|
|
|
.addField("Syntax", "``"),
|
|
|
|
async execute(message, msg, args, cmd, prefix, mention, client) {
|
|
|
|
if (!args.length) {return message.channel.send(`Syntax: \`${prefix}\``);}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
//OR
|
|
|
|
|
|
|
|
const Discord = require('discord.js');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
name: "",
|
|
|
|
aliases: [],
|
|
|
|
help: "",
|
|
|
|
async execute(message, msg, args, cmd, prefix, mention, client) {
|
|
|
|
if (!args.length) {return message.channel.send(`Syntax: \`${prefix}\``);}
|
|
|
|
}
|
|
|
|
};
|