<- :server 485 botnick #channel :server comment
how can i get only the #channel string ?
thx
Code: Select all
[lindex [split $YOURVARIABLE] 1]Code: Select all
bind raw -|- 485 getraw
proc getraw {from key args} {
set chan [lindex [split $args] 1]
return $chan
}