To create new wiki account, please join us on #znc at Libera.Chat and ask admins to create a wiki account for you. You can say thanks to spambots for this inconvenience.

MIRC: Difference between revisions

From ZNC
Jump to navigation Jump to search
KindOne (talk | contribs)
Create a basic page for mIRC specific stuff. Seems we have some mIRC stuff scattered all around the wiki.
 
KindOne (talk | contribs)
Add Category.
Line 52: Line 52:
* [[Savebuff/mIRC]]
* [[Savebuff/mIRC]]
* [[Privmsg/mIRC]]
* [[Privmsg/mIRC]]
[[Category:Clients]]

Revision as of 07:20, 27 May 2013

Connecting to ZNC

SSL

In order to use SSL, you must check that SSL is installed and ready to use.

Checking

To check if your mIRC is ready for SSL, enter the following command into any mIRC window:

  //echo -ag $sslready

If the output is $true, then SSL is installed, if $false, then you need to install ssl.

Installing

In order to use SSL, you need OpenSSL installed.

  • Exit mIRC (This is required).
  • Install SSL.
  • Start mIRC
  • You can either manually accept the invalid certificates (if they are invalid)
  • Tools -> Options -> Connect -> Options -> SSL... -> Automatically accept invalid certificates -> OK -> OK

Connecting

Connections to ZNC using SSL via script:

on *:start: {
  server my.bouncer.net:+6697 user1:password1
  server -m my.bouncer.net:+6697 user2:password2
  server -m my.bouncer.net:+6697 user3:password3 
}


Troubleshooting

It does not connect.

If port 6697 is the SSL port, you need to specify the "+" before the port.

This is a failed attempt due to not specifying the "+"

 [02:17:38] * Connect retry #1 my.bouncer.net (6697)
 [02:17:39] * [10053] Software caused connection abort


Non SSL

This is for plain non-ssl connections.

Connecting

Connecting to ZNC using non SSL via script:

on *:start: {
  server my.bouncer.net:6667 user1:password1
  server -m my.bouncer.net:6667 user2:password2
  server -m my.bouncer.net:6667 user3:password3 
}


ZNC Scripts