eggdrop

How would an irc bot written in tcl stack up against a python/node.js clone?

I believe eggdrop is the most active/popular bot and it's written in tcl ( and according to wiki the core is C but I haven't confirmed that ). I'm wondering if there would be any performance benefit of recoding it's functionality in node.js or Python, in addition to making it more accessible since Python and JS are arguably more popular...

Anti Flood for command

Hi, I have this script I'm working on: bind pub ga !kick pub_do_kick proc pub_do_kick {nick uhost hand chan arg} { # create a sub-proc to delay proc delay {} { return } # timer already running? if {[utimerexists delay] == ""} { # timer is not active, perform something global botnick set who ...