Not sure how to do something like this. (newbie) sorry.
---------[ End Of List (15 words) ]------------
What I want to do is make a proc that will say whats in the ( ) and the number is different each time. This is said in a channel by another bot. Any idea's? Thanks!
bind pubm - * get:words
proc get:words {nick uh hand chan arg} {
if {[regexp {[ End Of List ((.*) words) ]} $arg match words]} {
puthelp "PRIVMSG $chan :There where $words words"
}
}