Hello, when I launch mIRC I want it to automatically join three different servers and some channels on those server. I wrote the following simple testscript:
[script]
n0=
n1=on *:start:
n2={
n3= server irc.efnet.nl
n4=}
n5=on *:connect:
n6={
n7= if( $network == EFNet )
n8= {
n9= join #duh
n10= }
n11=}

I've installed mIRC 6.17 with default settings so that none of my old settings/scripts interfere. The [rfiles]-section of my mirc.ini looks like this:
[rfiles]
n0=remote.ini
n1=remote.ini
n2=mirc.ini
n3=testscript.ini

But on launch, mIRC doesn't try to connect to the EFNet-server. And if I connect to an EFNet-server manually it doesn't join the channel it's supposed to. What do I need to do to fix this?