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.

utimer question

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

utimer question

Post by Freakazoid »

how can i use an utimer in this script

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
}

thx 4 help Freakazoid
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

by reading [utimer]'s description in tcl-commands.doc and deciding what exactly you want and how to utilize your freshly-gained [utimer] knowledge to achieve your objective(s)?
O
Ofloo
Owner
Posts: 953
Joined: Tue May 13, 2003 1:37 am
Location: Belguim
Contact:

Post by Ofloo »

why do you want to use it and where ?
XplaiN but think of me as stupid
Locked