This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

topic reader

Old posts that have not been replied to for several years.
Locked
F
Freakazoid
Voice
Posts: 11
Joined: Sun Jul 31, 2005 12:38 pm

topic reader

Post by Freakazoid »

i search a script to read a topic from a website

http://www.gdac-portal.de/communityhost ... nesirc.php

can any one help me :)
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

yep, the Tcl Archive can
F
Freakazoid
Voice
Posts: 11
Joined: Sun Jul 31, 2005 12:38 pm

Post by Freakazoid »

no topic save from irc :D
an topic reader for headlines from a webspell mod ^^
g
greenbear
Owner
Posts: 733
Joined: Mon Sep 24, 2001 8:00 pm
Location: Norway

Post by greenbear »

Code: Select all

package require http

bind pub - !read web:read
proc web:read {nick uhost hand chan text} {
 set data [::http::geturl http://www.gdac-portal.de/communityhosting/ClanStube/sc_headlinesirc.php]
 foreach line [split [::http::data $data] \n] {
   putserv "PRIVMSG $chan :$line"
 }
 ::http::cleanup $data
}
F
Freakazoid
Voice
Posts: 11
Joined: Sun Jul 31, 2005 12:38 pm

Post by Freakazoid »

thx greenbear :)


1 question how can i use it with a timer ?
all 5 min. the latest news
Locked