Write Twitch in the chat (automatically)?

In
- in Twitch
5

Automatically write to the chat?
Hello,

I would like to automatically write a message in a Twitch Chat every 15 minutes with a script, does anyone know how I implemented this?

Gu

Timer + Twitch API

sa

Just get a nightbot

Lo

That's pretty easy.

Each twitch chat is assigned an IRC channel. The messages are mirrored 1 to 1 (in both directions).

Here is a short tutorial from Twitch himself:

https://dev.twitch.tv/docs/irc/ (the example is JavaScript)

The simplest implementation I've ever made myself was with JAVA. But the main thing is that you come to the IRC channel to read and write there.

In

OK, can you maybe write a script like this because I still have problems with Java

Lo

Since you can use all sorts of languages. The main thing you get somehow a TCP / IP connection and can read / write.

As I said, the example is JavaScript.