mIRC Home    About    Download    Register    News    Help

Print Thread
#15266 14/03/03 06:18 AM
A
aZnLupin
aZnLupin
A
i need scirpt auto connect if server disklink.
ex:
* Quits: VnCentral (vnentral@services.vncentral.com) (oper.vncentral.com irc5.vncentral.com)
* Quits: Blah (~.@netadmin.vncentral.com) (oper.vncentral.com irc4.vncentral.com)

i must use command /connect irc5.vncnetral.com and /connect irc4.vncentral.com when irc4, irc5 disklink

cant you help me autodo that command ?

#15267 14/03/03 07:01 AM
Joined: Dec 2002
Posts: 2,958
W
Hoopy frood
Offline
Hoopy frood
W
Joined: Dec 2002
Posts: 2,958
You shouldn't run it from a quit message because that can be falsified by any user. Run it from your server notices instead.

Code:
ON *:SNOTICE:*: {
  if (Outbound connection to isin $4-) && (dropped isin $8) {
    connect irc.leafserver.com 7000 irc.hubserver.com
  }
}
1. You need to alter the ON SNOTICE to match how the notices on your IRCd are phrased.
2. You need to use your server hostnames and the correct connection port in the connect command.

#15268 14/03/03 01:22 PM
A
aZnLupin
aZnLupin
A
thanks


Link Copied to Clipboard