if((!options.status||!options.status.length)||(!options.type||!options.type.length)){returnmessage.channel.send("You must use -status and -type tags!");}
if(!options.status||!options.status.length){returnmessage.channel.send("You must use the -status tag (and -type if you want a custom type)!");}
if(options.status.length>30){returnmessage.reply("That status is a bit too long.");}
if(options.type){if(!['playing','watching','listening'].includes(options.status.toLowerCase())){returnmessage.channel.send("That's not a valid type!");}}
if(options.type){if(!['playing','watching','listening'].includes(options.type.toLowerCase())){returnmessage.channel.send("That's not a valid type!");}}