for the begining i MUST say that my english is not very good (actually it is bad ))
so sorry ))
now
i have a problem with eggdrop and windrop
we needed a bot for our channel, i searched and finded windrop.
i decided to write a little script to test it
here is source:
Code: Select all
set our_chan "#chan"
bind pub -|- hello my_talk_handler
proc my_talk_handler {nick uhost hand chan text} {
global our_chan
if {[string tolower $chan] != $our_chan} {
return 0
}
putserv "privmsg $chan :$text $nick, hello!"
return 1
}
my bot was sitting on the channel.
i said him "hello" and he answer to me "devil_i, hello"
then my friend said him hello but there was no reaction.
we tried again and again but...
i tried to use eggdrop instead of windrop under FreeBSD 5.2.1
i compiled it, run it. it works, bot was sitting on a channel but again there was no reaction when my friend was talking with him.
so... help me plz ))