Posts

Programming a JavaScript bot for Twitch – Part 2 – Coding

Now that we have a bot running on our twitch channel from part 1, we can now work on coding and adding new features to the bot.

When coding the most important thing is to add notes to remember what each function does, or whatever you will find important at a later stage. You do that by adding // before the comment.

// This is my comment. I need to remember this for later. Important stuff here.

JavaScript will ignore this part of the text and move on to the next code.

Continue reading “Programming a JavaScript bot for Twitch – Part 2 – Coding”

Programming a JavaScript bot for Twitch

I have been programming different chat bots for twitch for about 1.5 years now and its been an amazing journey for learning to code.
Bots I have made include Smart Chat bot, Stranded Deep Wiki, Cyberdyne Systems Skynet, and 7 days to die bot. Each of these bots have have been an adventure of thinking outside the box to add unique features.

In this article I will show you how to make your own chat bot for twitch.

At this point you might want to make a folder on your computer dedicated to the chat bot stuff, and have documentation, downloads, and all the info in there. This will help a ton when you need to work on it more later.

Continue reading “Programming a JavaScript bot for Twitch”