Code:
alias icestriker {
  set %icechan $1
  sockopen -e decapi decapi.me 443
}

on *:SOCKOPEN:*: {
  if ($sockname == decapi) {
    sockwrite -nt $sockname GET /twitch/uptime.php?channel=Icestriker HTTP/1.1
    sockwrite -nt $sockname Host: decapi.me
    sockwrite $sockname $crlf
  }
}

on *:SOCKREAD:*: {
  if ($sockname == decapi) {
    var %decapi
    sockread %decapi
    while ($sockbr) {
      sockread %decapi
    }
  }
}

on *:sockclose:*: {
  if ($sockname == decapi) {
    var %decapi
    sockread -f %decapi
    msg %icechan %decapi
  }
}

Tested and works smile Load this on a clear remote. Use /icestriker channelname to send the text to the channel you want. (example: /icestriker #OrF )
-OrFeAsGr-

Last edited by OrFeAsGr; 28/08/15 11:11 PM.