mIRC Homepage
Posted By: JH1354 Add a server and join channel with timer - 10/06/15 02:52 PM
Can someone help me with a script to add to perform box to connect to abjects server with a timer then join a channel? I tried the join thing in perform but i'm on 3 servers and it joins channels in all 3.
Posted By: splinny Re: Add a server and join channel with timer - 10/06/15 02:54 PM
You can user $server or $network to avoid this.
Posted By: JH1354 Re: Add a server and join channel with timer - 10/06/15 03:05 PM
I dont no how to wright tat in perform. I want to connect to abjects then join mg-chat with a timer
Posted By: sparta Re: Add a server and join channel with timer - 12/06/15 07:15 AM
Just a example for you to test with.
Code:
on *:start: {
 ; Using a server
 if ($server == SERVER-NAME) { join #test }
 
 ; Using a network
 if ($network == NETWORK-NAME) { join #test }

 ; server with timer, delay 10 sec
 if ($server == SERVER-NAME) { .timerjoin 1 10 #testar }

 ; network with timer, delay 10 sec
  if ($server == NETWORK-NAME) { .timerjoin 1 10 #testar  }
}

Replace the SERVER-NAME with the server you connect to.
Replace the NETWORK-NAME with the name of the network you connect to. The code goes in to your remote.
© mIRC Discussion Forums