Hello,
Is there a command that checks the nick and if it starts lets say with me_ the bot will say something?
Thanks in advance!
When? ...Fr3aK wrote:Hello,
Is there a command that checks the nick
and if it starts lets say with me_ the bot will say something?
Code: Select all
# July 30, 2013
# http://forum.egghelp.org/viewtopic.php?t=19492
bind join - "* me_*" speak_to_me_
proc speak_to_me_ {nick uhost handle chan} {
putserv "privmsg $chan :Hello $nick"
}