Code: Select all
if {[info exists ctcptime]} {
bind ctcp - TIME ctcp_time }
proc ctcp_time {nick} {
putserv "NOTICE $nick :\001TIME $::ctcptime\001" }
Code: Select all
[16:36] Tcl error [ctcp_time]: called "ctcp_time" with too many arguments
Code: Select all
if {[info exists ctcptime]} {
bind ctcp - TIME ctcp_time }
proc ctcp_time {nick} {
putserv "NOTICE $nick :\001TIME $::ctcptime\001" }
Code: Select all
[16:36] Tcl error [ctcp_time]: called "ctcp_time" with too many arguments
Code: Select all
if {[info exists ctcptime]} {
bind ctcp - "ctcp_time" ctcp_time }
proc ctcp_time {nick} {
putserv "NOTICE $nick :\001TIME $::ctcptime\001" }