Quote:
Originally posted by IRiDiuM
Getting this to work with an eggdrop would be simple enough; and the eggdrop would be able to cope with the bandwidth hog.
Unfortunately I know that the fsock functions have been killing my host otherwise I would give it a go.
vB forums -> eggdrop -> irc
you just write a TCL script on the eggdrop to listen on a certain port, the forums connect to the eggdrop and send the line of information and the eggdrop sends the information to a channel.
Code:
vbulletin.tcl
listen 1337 script vbulletinaccept
proc vbulletinaccept {idx} {
control $idx vbincoming
}
proc vbincoming {idx args} {
if {[join $args] != "" } {
putserv "PRIVMSG #vbchan :$args"
}
killdcc $idx
}
|
this vbulletin.tcl works great
with this running on ur eggdrop bot and using my adjusted irc.php
u only have to config IRC Server Address of ircadmin.php to the ip of your eggdrop and IRC Server Port to port 1337
oh, and dont forget to change the channame in the tcl