Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+1)

I didn't play the game, because I don't do streams, but I saw it in action in the vods that you sent us.

I can say that for me the idea seems very innovative. It's interesting how one can integrate a game into whole other platform and it actually fits. I wonder how you made this? I s there an official Twitch API for this?

The cool thing about web games is that you can see the source code in your browser! Feel free to poke around, most of the Twitch integration stuff is in main.js. Basically, when you click the Login to Twitch button, you're redirected to twitch.tv who asks if you authorize the login. They then redirect back to my site with an access_token parameter in the url hash. I use that token to connect to their chat irc websocket and send some messages to use that token to read the chat. Then as messages are sent to the websocket, I parse them to see if they are messages relevant to the game and act on them.

You can now create a js lib for that and get super famous in the community)