set bnick "bot"
set frases {
{egghelp rules!}
}
bind pub - "$bnick" pub_falar
proc pub_falar {nick uhost hand chan text} {
global frases
set frasedizer [lindex $frases [rand [llength $frases]]]
putserv "PRIVMSG $chan :1»4»5 $nick 4«1«:2 $frasedizer"
}
This is a nice script for making the egg talk when someone speaks his name... but only works even his name is in the beggining of the sentence. how can I change it in order to work for the name in any place of a sentence?