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.
17 lines
758 B
17 lines
758 B
const Discord = require("discord.js");
|
|
|
|
module.exports = {
|
|
name: "logs",
|
|
aliases: ["log", "l", "modlog", "modlogs"],
|
|
help: new Discord.MessageEmbed()
|
|
.setTitle("Help -> Server Logs")
|
|
.setDescription("Comfigure your server's log settings.\n\nLogs will update you on what ")
|
|
.addField("Syntax", "`vip <add|remove|check>`")
|
|
.addField("Notice", "This command is **developer-only**."),
|
|
async execute(message, msg, args, cmd, prefix, mention, client) {
|
|
if (!message.guild) {return message.reply("This command is server-only!");}
|
|
if (!args.length) {return message.channel.send(`Syntax: \`${prefix}vip <add|remove|check>\``);}
|
|
const GuildSettings = require('../models/guild');
|
|
|
|
}
|
|
}; |