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.
44 lines
2.0 KiB
44 lines
2.0 KiB
const Discord = require('discord.js');
|
|
|
|
const UserData = require('../models/user');
|
|
|
|
const {TagFilter} = require('../util/tagfilter');
|
|
const {Tag} = require('../util/tag');
|
|
|
|
module.exports = {
|
|
name: "setstatus",
|
|
aliases: ['sst'],
|
|
meta: {
|
|
category: "",
|
|
perms: "",
|
|
staff: false,
|
|
vip: "",
|
|
serverPerms: [],
|
|
writtenBy: "",
|
|
serverOnly: false
|
|
},
|
|
tags: [],
|
|
help: new Discord.MessageEmbed()
|
|
.setTitle("Help -> Status-Setting")
|
|
.setDescription("Sets the bot's status")
|
|
.addField("Syntax", "`setstatus <status> [type]`")
|
|
.addField('Notice', "This command is **developer-only**"),
|
|
async execute(message, msg, args, cmd, prefix, mention, client) {
|
|
if (!args.length) {return message.channel.send(`Syntax: \`${prefix}setstatus <status> [type]\``);}
|
|
let tu = await UserData.findOne({uid: message.author.id});
|
|
if (!tu || !tu.developer) {return message.channel.send("You must be a Natsuki developer in order to do that!");}
|
|
|
|
let options = new TagFilter([
|
|
new Tag(['s', 'status', 'm', 'msg', 'message'], 'status', 'append'),
|
|
new Tag(['t', 'type'], 'type', 'append')
|
|
]).test(args.join(" "));
|
|
if (!options.status || !options.status.length) {return message.channel.send("You must use the -status tag (and -type if you want a custom type)!");}
|
|
|
|
if (options.status.length > 30) {return message.reply("That status is a bit too long.");}
|
|
if (options.type) {if (!['playing', 'watching', 'listening'].includes(options.type.toLowerCase())) {return message.channel.send("That's not a valid type!");}}
|
|
|
|
if (options.type) {client.user.setActivity(options.status, {type: options.type.toUpperCase()});}
|
|
else {client.user.setActivity(options.status);}
|
|
return message.channel.send(`Status set to: \`${options.type ? `${options.type.slice(0, 1).toUpperCase()}${options.type.slice(1).toLowerCase()}${options.type && options.type.toLowerCase() == 'listening'} ` ? 'to ' : '' : ''}${options.status}\`.`);
|
|
}
|
|
}; |