mIRC Homepage
Posted By: aZnLupin I Need Help - 14/03/03 06:18 AM
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 ?
Posted By: Watchdog Re: I Need Help - 14/03/03 07:01 AM
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.
Posted By: aZnLupin Re: I Need Help - 14/03/03 01:22 PM
thanks
© mIRC Discussion Forums