Last active
August 2, 2021 14:45
-
-
Save Hamatti/952482808a26cd1f5c7ba4311690857d to your computer and use it in GitHub Desktop.
Very simple Discord bot skeleton
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Discord = require('discord.js'); | |
const cron = require('cron'); | |
const client = new Discord.Client(); | |
client.login(process.env.BOT_TOKEN); | |
const job = new cron.CronJob("00 00 10 * * *", () => { | |
client.channels.cache.get("[channel id]").send("Tick tock"); | |
}); | |
job.start() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment