Now I want to change the line that the bot is echo-ing
Sitebot announce like this:
[NEW][SECTION] New Upload: releasename.group by user
I want to echo it like this:
[NEW] New Upload: releasename.group by user [SECTION]
The code I use:
Code: Select all
bind pubm - {#channel1 [NEW]*] echo
proc echo {nick uhost handle channel text} {
if {($nick == "nick")} {
putserv "privmsg #channel2 :$text"
}
}