This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

A botnet Problem

Help for those learning Tcl or writing their own scripts.
Post Reply
N
Northeim
Voice
Posts: 3
Joined: Sun Feb 19, 2006 9:27 am

A botnet Problem

Post by Northeim »

2 Eggdrops linked
Sent script:

Code: Select all

bind pub - !test jojo
proc jojo {nick uhost hand chan arg} {
putbot Binary "echo das.ist.ein.test"
}
Recieve Script:

Code: Select all

bind bot - echo announce
proc announce {frombot cmd text} {
putlog $text
putquick "PRIVMSG #dasisteintest :$text"
putserv "PRIVMSG #dasisteintest :$text"
puthelp "PRIVMSG #dasisteintest :$text"
}
The 1.Bot send a text to the second one. I can see the $text in the partyline.But the bot will not announce the text into the chan.

.set errorInfo shows me no error
Post Reply