irc.siglost.com
irc.shakeababy.net
i want to connect to the above 2 rizon servers via
on 1:START:{
on 1:CONNECT:{
on irc.shakeababy.net i want to connect upto 10 channels
nick1 example
on irc.siglost.com i want to connect upto 2 channels
nick 2 example
the issue i have is that Using enable Performance on connect
and placing under all networks the following
/msg NickServ IDENTIFY cuthbertlisa1987
works
however all channels i connect to on irc.siglost.com also duplicate for irc.shakeababy.net even though i use 2 different users
-------------------------------
i tried this
on 1:START:{
/server irc.siglost.com
/server -m irc.shakeababy.net
}
on 1:CONNECT:{
if (.shakeababy. isin $server) {
/nick nick456
/msg NickServ IDENTIFY password
timer 1 5 /join #channel1
timer 1 5 /join #channel2
timer 1 5 /join #channel3
timer 1 5 /join #channel4
timer 1 5 /join #channel5
timer 1 5 /join #channel6
timer 1 5 /join #channel7
timer 1 5 /join #channel8
timer 1 5 /join #channel9
timer 1 5 /join #channel10
timer 1 5 /join #channel11
timer 1 5 /join #channel12
timer 1 5 /join #channel13
}
if (.siglost. isin $server) {
/nick nick123
/msg NickServ IDENTIFY password
timer 1 5 /join #channel1
timer 1 5 /join #channel2
}
}
so what i expect to achieve is my 2 nicks will appear on both rizon servers for #channel1, #channel2
but i dont want the same channels loading on irc.shakeababy.net
as irc.siglost.com, i tried this method and found hat it duplicate the channels, i may of wrote this script wrong