mIRC Home    About    Download    Register    News    Help

Print Thread
J
JH1354
JH1354
J
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.

Joined: May 2015
Posts: 245
S
Fjord artisan
Offline
Fjord artisan
S
Joined: May 2015
Posts: 245
You can user $server or $network to avoid this.

J
JH1354
JH1354
J
I dont no how to wright tat in perform. I want to connect to abjects then join mg-chat with a timer

Joined: Feb 2003
Posts: 3,412
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,412
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.


Link Copied to Clipboard