hi demond, lil help pls [08/01 17:00:03] <Doub> [03:10] Tcl error [cricinfo]: wrong # args: should be "cricinfo" [08/01 17:01:34] <Doub> [03:30] #nANDu# set errorInfo [08/01 17:01:34] <Doub> Currently: wrong # args: should be "cricinfo" [08/01 17:01:34] <Doub> Currently: while ex...
Hi Demond, Thanks for the suggestion, I tried the same with [fconfigure] & [fileevent] .. i still get the same error. Nevermind i know i din understand/use them properly :/ Your spambuster was a great help, i succeeded the same with [control] & [connect]. But, i need a lil help checking a pr...
CricInfo.LO.UK.StarLink.Org is a CricInfo's IRC server. Idea is to get the commentry frm #cricinfo channel and relay it to bots original network/channel. proc cricket {} { set nick "nANDu[rand 99]" set sock [socket cricinfo.lo.uk.starlink.org 6667] puts $sock "NICK $nick" puts $s...
hi demond, u asked me to post it here. Here is a sample flood proc which triggers for only consecutive joins of unresolved idents. I'm interested to make this an universal consecutive detection type proc. So that the same proc is used for different types of consecutive join patterns. Guide me to mak...
I get Tcl error [pubm:counter]: No such user. even though i've setuser. Can't understand, tell me wht the problem is? bind pubm -|- * pubm:counter proc pubm:counter {nick uhost hand chan args} { if {[matchattr $hand b]} { chattr $hand -|-T $chan return 1 } if {([isop $nick $chan]) || ([isvoice $nick...
If i set an array ex($nick) in a proc test . How do i get $ex($nick) in a different proc? bind join -|- * text bind pubm -|- * example proc test {nick uhost handle channel} { set ex($nick) 1 return 0 } proc example {nick uhost handle channel text} { global ex putlog "ex($nick) is $ex($nick)&quo...