I already have the twitch api bit done. It's very simple to do you just need a Json parser. There is a great one for mirc located Here http://hawkee.com/snippet/10194/

You would copy paste all the code there into a new remote file.

After that it's really simple
The script would be.

Code:
JSONOpen -u www.api.twitch.tv/kraken/streams/YOURTWITCHNAME
if ( $json(game,stream,game) != $null ) {
msg $chan $nick $+ , the current game is, $json(game,stream,game) $+ .
JSONClose game


}
Else {
msg $chan Sorry $nick the stream is not live
}


You can goto www.api.twitch.tv/kraken/streams/YOURTWITCHNAME to view all the other things you can grab. I recommend installing a Json viewer add on for chrome. It makes it a lot easier to find out the right path for the command. Such as the code for getting the stream title would be

$json(game,stream,channel,status)


Hope I helped

Last edited by acpixel; 19/08/15 09:55 AM.