mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
Time command
This commit is contained in:
@@ -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
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "xiaobot",
|
||||
"version": "56.3.1",
|
||||
"version": "56.4.0",
|
||||
"description": "Your personal server companion.",
|
||||
"main": "XiaoBot.js",
|
||||
"scripts": {
|
||||
|
||||
Reference in New Issue
Block a user