diff options
| author | rubinowyblask <rubinowyblask@meow.li> | 2026-04-22 23:26:29 +0200 |
|---|---|---|
| committer | rubinowyblask <rubinowyblask@meow.li> | 2026-04-22 23:27:19 +0200 |
| commit | fbaf7466efed0f04920175dea98610afd15cc61d (patch) | |
| tree | ff954ef66b298999580b19d2d4d609e9d46d054c /events/popehour.js | |
| parent | 68ea97182ffb9478bddfe5bdcb27e134823a3894 (diff) | |
Signed-off-by: rubinowyblask <rubinowyblask@meow.li>
Diffstat (limited to 'events/popehour.js')
| -rw-r--r-- | events/popehour.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/events/popehour.js b/events/popehour.js new file mode 100644 index 0000000..cf84b3d --- /dev/null +++ b/events/popehour.js @@ -0,0 +1,12 @@ +const cron = require("node-cron"); + +module.exports = { + name: 'clientReady', + async execute() { + cron.schedule("0 37 21 * * *", async () => { + await globalThis.client.channels.fetch("1259913084819210330"); + globalThis.client.channels.cache.get("1259913084819210330").send("<@1425229394703683614> jp2gmd"); + }); + } +} + |
