mIRC Home    About    Download    Register    News    Help

Print Thread
#223223 18/07/10 09:01 PM
Joined: Sep 2007
Posts: 202
F
firefox Offline OP
Fjord artisan
OP Offline
Fjord artisan
F
Joined: Sep 2007
Posts: 202
I have been looking for a script to msg an rss feed into an irc channel for mirc (non-eggdrop etc.)

The best one I have found so far is: http://www.wyldryde.org/forum/ubbthreads.php/topics/4399/Simple_RSS_Feed_Script.html

Does anyone know of any other good ones?

Can the one above be modified to work with a https feed rather than a http feed?

firefox #223225 18/07/10 11:02 PM
Joined: Oct 2003
Posts: 3,918
A
Hoopy frood
Offline
Hoopy frood
A
Joined: Oct 2003
Posts: 3,918
Using /sockopen -e and and 443 instead of 80 should be all you need to do for an https URL


- argv[0] on EFnet #mIRC
- "Life is a pointer to an integer without a cast"
firefox #223226 18/07/10 11:54 PM
Joined: Apr 2010
Posts: 969
F
Hoopy frood
Offline
Hoopy frood
F
Joined: Apr 2010
Posts: 969
/Rss and $rss script for reading the feed

Then just do something link
on me*:JOIN:#yourchannel:{
.timerrssread 0 [delay-n-seconds] rssread $!eval( # ,0)
}
alias rssread {
if ($me !ison #) {.timerrssread off | return }
;/rss ...
;handle the info from rss
}

If I get time, I will make it for your use smile

Last edited by FroggieDaFrog; 19/07/10 12:04 AM.

I am SReject
My Stuff
argv0 #223231 19/07/10 10:48 AM
Joined: Sep 2007
Posts: 202
F
firefox Offline OP
Fjord artisan
OP Offline
Fjord artisan
F
Joined: Sep 2007
Posts: 202
Originally Posted By: argv0
Using /sockopen -e and and 443 instead of 80 should be all you need to do for an https URL
I changed it to:
Code:
 sockopen -e RSS %RSSsite 443
but it says:
Quote:
* /sockwrite: 'RSS' not connected (line 58, rss)

which is:
Code:
 sockwrite -n $sockname GET %RSSurl HTTP/1.1
  sockwrite -n $sockname Host: %RSSsite $+ $CRLF $+ $CRLF
tried changing this to https but it still says the same


Link Copied to Clipboard