Time command

This commit is contained in:
Daniel Odendahl Jr
2017-12-08 14:08:18 +00:00
parent f2cbd19d63
commit 681b48eecb
2 changed files with 34 additions and 1 deletions
+33
View File
@@ -0,0 +1,33 @@
const { Command } = require('discord.js-commando');
module.exports = class TimeCommand extends Command {
constructor(client) {
super(client, {
name: 'time',
aliases: ['time-zone'],
group: 'events',
memberName: 'time',
description: 'Responds with the current time in a particular location.',
details: '**Zones**: <https://en.wikipedia.org/wiki/List_of_tz_database_time_zones>',
args: [
{
key: 'timeZone',
label: 'time zone',
prompt: 'Which time zone do you want to get the time of?',
type: 'string',
parse: timeZone => timeZone.replace(/ /g, '_').toUpperCase()
}
]
});
}
run(msg, { timeZone }) {
if (timeZone === 'NEOPIA/STANDARD') timeZone = 'AMERICA/VANCOUVER';
try {
const time = new Date().toLocaleTimeString('en-US', { timeZone });
return msg.say(`The current time in ${timeZone} is ${time}.`);
} catch (err) {
return msg.reply('Invalid time zone. Refer to <https://en.wikipedia.org/wiki/List_of_tz_database_time_zones>.');
}
}
};
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiaobot",
"version": "56.3.1",
"version": "56.4.0",
"description": "Your personal server companion.",
"main": "XiaoBot.js",
"scripts": {