diff --git a/commands/misc/timers.js b/commands/misc/timers.js new file mode 100644 index 0000000..de01136 --- /dev/null +++ b/commands/misc/timers.js @@ -0,0 +1,12 @@ +module.exports = { + name: "timer", + description: "Check your own timers", + execute({client, message}) { + let authorTimers = ""; + client.timers.forEach(timer => { + if(timer.user === message.author.id) + authorTimers += `${timer.reminderDate}\n`; + }); + message.channel.send(`Your timers are:\n${authorTimers}`); + } +}; \ No newline at end of file