blob: cf84b3d95a2ed07990ba1a3bdf6cd132207b50c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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");
});
}
}
|