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.

windrop 1.6.8 + bnc

Old posts that have not been replied to for several years.
Locked
S
Shorty

Post by Shorty »

I'm having problems getting windrop 1.6.8 to connect to ezbounce v0.99.12.
It was SUPPOSED to issue all the PASS, IDENT, VHOST, CONN commands once it got the notice from ezbouncer requesting the pass, but it's not doing it automatically. I'm having to telnet in and issue them by ".dump PASS whatever" and so on with .dump.
Any ideas how to make this automatically?

Here's the .tcl:

bind raw - NOTICE ezrawbnc
proc ezrawbnc {nick word text} {
set bnc1 "Please use /quote PASS <password> to register..."
if {[string tolower $text]==[string tolower $bnc1]} {
putserv PASS ".."
putserv IDENT "CP"
putserv vhost "vhost whatever.vhost.org"
putserv conn "irc.easynews.com:6667"
}
}

putlog "BNC CONNECTED"

<font size=-1>[ This Message was edited by: Shorty on 2002-02-11 23:16 ]</font>
P
Petersen
Owner
Posts: 685
Joined: Thu Sep 27, 2001 8:00 pm
Location: Blackpool, UK

Post by Petersen »

wrong number of arguments in proc declaration for eggdrop1.6.x
L
LordYoshi

Post by LordYoshi »

This is what I had just hacked up after trying to get my 1.6.8 egg to connect to an ezbounce client.

I could also set a vhost, but the egg never took it and thus could not get on any servers.

# Your bnc password goes here.
set pass ""

# What irc server do you want it to connect to.
set ircserver "irc.qeast.net:6668"

# What does the bnc client say when asking for a pw.
set bncpass "Please use /quote PASS <password> to register"

bind notc - $bncpass bnc_pass

proc bnc_pass {nick uhost hand chan text} {
global pass
global ircserver
putserv "PASS $pass"
putserv "CONN $ircserver"
}
S
Shorty

Post by Shorty »

Thanks LordYoshi! :)

<font size=-1>[ This Message was edited by: Shorty on 2002-02-13 13:35 ]</font>
Locked