tmijs / tmi.js

💬 Javascript library for the Twitch Messaging Interface. (Twitch.tv)
https://tmijs.com
MIT License
1.54k stars 216 forks source link

automatic message #432

Closed rnesheik closed 3 years ago

rnesheik commented 3 years ago

good night friends, i wanted to know how do i put an automatic message, it keeps repeating every 6 minutes

AlcaDesign commented 3 years ago

You can use a setInterval or setTimeout loop to do this.

setInterval(() => {
    client.say('channel', 'Something');
}, 1000 * 60 * 6);