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"
}