mIRC Home    About    Download    Register    News    Help

Print Thread
#60408 15/11/03 02:34 PM
Joined: Dec 2002
Posts: 483
Deep3D Offline OP
Pan-dimensional mouse
OP Offline
Pan-dimensional mouse
Joined: Dec 2002
Posts: 483
I'm making a multi server connect thing.. i have the multi.server in on start.. but.. when i start up my script.. the first window dont connect.. it just status.. and the connect on startup is on..

so why dosent the first window connect?... the first window is not a multi.server connection.. its the standar server in mirc.. if you understand..

sorry for my shitty english..

Code:
multi.server {
  if %multi.server.1 == none {
    halt
  }
  else {
    server -m %multi.server.1 %multi.port.1
  }
  if %multi.server.2 == none {
    halt
  }
  else {
    server -m %multi.server.2 %multi.port.2
  }
  if %multi.server.3 == none {
    halt
  }
  else {
    server -m %multi.server.3 %multi.port.3
  }
}

#60409 15/11/03 02:49 PM
Joined: Dec 2002
Posts: 29
R
Ameglian cow
Offline
Ameglian cow
R
Joined: Dec 2002
Posts: 29
Try to do this
on *:start: {
server irc.yourserver.here 6667
server -m irc.your2.server.here 6667
}
so you can incorporate this in your code.

#60410 15/11/03 03:19 PM
Joined: Dec 2002
Posts: 483
Deep3D Offline OP
Pan-dimensional mouse
OP Offline
Pan-dimensional mouse
Joined: Dec 2002
Posts: 483
i know, im using that now.. or.. for som weeks....

but.. i just added timer 1 1 in front of the multi.server and it work nice.. grin


Link Copied to Clipboard