diff options
Diffstat (limited to 'events/1312.js')
| -rw-r--r-- | events/1312.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/events/1312.js b/events/1312.js new file mode 100644 index 0000000..2a54530 --- /dev/null +++ b/events/1312.js @@ -0,0 +1,12 @@ +const cron = require("node-cron"); + +module.exports = { + name: 'clientReady', + async execute() { + cron.schedule("0 12 13 * * *", async () => { + await globalThis.client.channels.fetch("1259913084819210330"); + globalThis.client.channels.cache.get("1259913084819210330").send("<@1425229394703683614> 13:12"); + }); + } +} + |
