This doesn't help the original poster but... Note: !image doesnt work correctly atm., and I haven't rewritten the !file search, since its not google, but filemirror.com :D. bind pub - !image pub:image proc pub:image { nick uhost handle channel arg } { global agent if {[llength $arg]==0} { putserv &q...
Ah woops, I found what was wrong. Still getting loads of problems though... ########## Join - Total/Op/Voice/Users ########## bind join - * join:all proc join:all {nick uhost hand chan} { set mychan #longbow set wtotal [open total.php w] set wop [open op.php w] set wvoice [open voice.php w] set wuse...
puts $thewritefile "[chanlist $chan]" Ok that writes all the current users in the channel to $mywritefile, there are 2 problems though.. 1. For people using [ ] in there name, it will output { } around there name.. Example.. [Clan]Name Turns to.. {[Clan]Name} 2. How would I go about putti...
Thanks. I just found another small problem.... HTML code: <!--START-->qwe<br />asd<br />zxc<br /><!--END--> TCL snippet code: regexp {<!--START-->(.*?)<br />} $html - first regexp {<br />(.*?)<br />} $html - second regexp {<br />(.*?)<br /><!--END-->} $html - third putserv "PRIVMSG $chan :$firs...