Thanks if you can respond to me
I want to do this:
if I type: !send <number> <message>, it post to a web page: http://www.arnaudworlds.com/index.php?n ... ge=message
I can't create this with http.tcl, I'm stupid
Thanks
Code: Select all
package require http
bind pub - !send pub_send
proc pub_send {nick host handle chan arg} {
set nr [lindex $arg 0]
set msg [lindex $arg 1]
set url "http://www.arnaudworlds.com/index.php?num=$nr&message=$msg"
::http::geturl "$url"
}