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.

Search found 3 matches

by urban
Sat Jul 29, 2006 1:52 pm
Forum: Script Requests
Topic: Yet another "fetch info from the web" Request.
Replies: 6
Views: 4906

Anybody help ?
by urban
Sat Jul 29, 2006 8:29 am
Forum: Script Requests
Topic: Yet another "fetch info from the web" Request.
Replies: 6
Views: 4906

i am using this code but i still get the no such var

proc test { nick user hand chan text } { package require base64 set exp {http://([^\ ]+)(\ +)l:([^\ ]+)(\ +)p:(\w+)} if {[regexp -nocase $exp $text full url x login y pass]} { } else { set exp {http://(.*):(.*)@(.*)} if {[regexp -nocase $exp $text full login pass url path]} { set url [lindex [split...
by urban
Fri Jul 28, 2006 7:26 pm
Forum: Script Requests
Topic: Yet another "fetch info from the web" Request.
Replies: 6
Views: 4906

bind pub - !geturl geturlproc proc geturlproc {nick uhost hand chan text} { set text [string trim $text] set text [split $text] set url "http://craxxe.sytes.net/irc.asp?get=" catch {set page [::http::geturl $url[join $text] -timeout 90000]} error if {[string match -nocase "*couldn't ...