set bncpass "Please use /quote PASS <password> to register"

set bncconn "Password accepted -- Welcome to ezbounce v0.99.6"

set bncoops "Closing Link"

bind notc - $bncpass bnc_pass
bind notc - $bncconn bnc_conn
bind notc - $bncoops bnc_oops
proc bnc_pass {nick host hand text }  {
     global pass
     putserv "PASS mypassword"
}
 
proc bnc_conn {nick host hand text }  {
     global ircserver
     putserv "vhost MYVHOST"
     putserv "CONN eu.undernet.org"
}
 
proc bnc_oops {nick host hand text } {
    putserv "conn eu.undernet.org"
 }
  
  
