#v13.6 message automation

4 messages · Page 1 of 1 (latest)

sterile kestrel
#

how can I make a message automatically send to a channel when the bot starts, and it continuously sends that message?

queen breachBOT
#

• What's your exact discord.js npm list discord.js and node node -v version?
• Post the full error stack trace, not just the top part!
• Show your code!
• Explain what exactly your issue is.
• Not a discord.js issue? Check out #useful-servers.

sterile kestrel
#

djs 13.6.0 node v16.15.0

analog nova
#
const channel = client.channels.cache.get("channl id");
channel.send("hi");
setInterval(() => {
channel.send("hiiiii");
}, 15000 //15s);