Hello
I would like to have my bot on '2 networks at the same time' (like psybnc does)
1st network would be: efnet
2nd network would be: linknet as a SSL encrypted client (port +7000)
I have my server settings in my bot.conf for efnet servers
Also these default settings referring to networks;
# What is your network?
# 0 = EFnet
# 1 = IRCnet
# 2 = Undernet
# 3 = DALnet
# 4 = +e/+I/max-modes 20 Hybrid
# 5 = Others
set net-type 0
And at the bottom:
if {[info exists net-type]} {
switch -- ${net-type} {
"0" {
# EFnet
source scripts/quotepong.tcl
}
"2" {
# Undernet
source scripts/quotepass.tcl
}
}
}
Thank you!