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.
38 lines
899 B
38 lines
899 B
const Discord = require('discord.js');
|
|
|
|
module.exports = {
|
|
name: "",
|
|
aliases: [],
|
|
meta: {
|
|
category: '',
|
|
description: "",
|
|
syntax: '` <>`',
|
|
extra: null
|
|
},
|
|
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: [],
|
|
meta: {
|
|
category: '',
|
|
description: "",
|
|
syntax: '` <>`',
|
|
extra: null
|
|
},
|
|
help: "",
|
|
async execute(message, msg, args, cmd, prefix, mention, client) {
|
|
if (!args.length) {return message.channel.send(`Syntax: \`${prefix}\``);}
|
|
}
|
|
}; |