IRCNow

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
irc:mirc [2020/01/08 03:08]
jrmu
irc:mirc [2020/06/13 08:26] (current)
jrmu
Line 1: Line 1:
 +=== For latest mIRC versions, at least >7.41 but not including 7.41 ===
 First, you must check to see if SSL is supported. Enter the following command inside any mIRC window: First, you must check to see if SSL is supported. Enter the following command inside any mIRC window:
  
Line 6: Line 7:
 </​code>​ </​code>​
  
-If the output is $false, run this command:+If the output is $false, run these commands:
  
 <​code>​ <​code>​
-/​server ​bnc3.ircnow.org ​6667 username/​network:​password+/​server ​-a us9.ircnow.org ​-p 1337 -g IRCNow -w username/​network:​password ​-d IRCNow 
 +/server IRCNow 
 +</​code>​ 
 + 
 +If the output is $true, run these commands: 
 + 
 + 
 +<​code>​ 
 +/server -a us9.ircnow.org -p +31337 -g IRCNow -w username/​network:​password -d IRCNow 
 +/server IRCNow
 </​code>​ </​code>​
  
Line 29: Line 39:
 <​code>​ <​code>​
 Description:​ freenode-bnc Description:​ freenode-bnc
-For Address: ​bnc3.ircnow.org +For Address: ​use your server for bnc here, for example us9.ircnow.org 
-Ports: +6697+Ports: +31337
 Password: user123/​freenode:​pass123 Password: user123/​freenode:​pass123
 </​code>​ </​code>​
  
-{{ :​irc:​mirc4.png?​direct&​400 |}} +Replace user123 with your real username, and pass123 with your real password. Make sure that you include the plus sign '​+'​ for port 31337 to ensure your chat messages are encrypted.
- +
-Replace user123 with your real username, and pass123 with your real password. Make sure that you include the plus sign '​+'​ for port 6697 to ensure your chat messages are encrypted.+
  
  
Line 43: Line 51:
 <​code>​ <​code>​
 on *:start: { on *:start: {
-  server ​bnc3.ircnow.org +6697 user123/​freenode:​pass123 +  server ​us9.ircnow.org +31337 user123/​freenode:​pass123 
-  server -m bnc3.ircnow.org +6697 user124/​freenode:​pass123 +  server -m us9.ircnow.org +31337 user124/​freenode:​pass123 
-  server -m bnc3.ircnow.org +6697 user125/​freenode:​pass123 +  server -m us9.ircnow.org +31337 user125/​freenode:​pass123 
-  server -m bnc3.ircnow.org +6697 user126/​freenode:​pass123+  server -m us9.ircnow.org +31337 user126/​freenode:​pass123
 } }
 </​code>​ </​code>​
Line 52: Line 60:
 Replace user123 with your real username, and pass123 with your real password. Replace user123 with your real username, and pass123 with your real password.
  
-{{:irc:irc5.png?direct&400|}}+=== For mIRC 7.33 (beta) to 7.41 users === 
 +There has been reports of mIRC 7.33 (beta) to 7.41 with inability to connect to ZNC bouncers. You will need to load this patch by KindOne, [[https://​bitbucket.org/​KindOne/​mirc-scripts-public/​src/​master/​znc-server-time-fix.mrc|ZNC server time fix.mrc - BitBucket.org]]. 
 + 
 +To load this script, you will need to do 
 +<​code>/​load -rs filename</​code>​ 
 +Where filename is the name of the file you downloaded from BitBucket, and if it is placed outside of where your mIRC is installed, you will need to specify the full path to file. For more information see [[https://​forums.mirc.com/​ubbthreads.php/​topics/​163149/​how_to_install_snippets,​_add-o|here]]. 
 + 
 +In case of KindOne'​s BitBucket site is inaccessible for any reason, here is the contents of the file, 
 +<​code>​ 
 +; ZNC 1.7.0 added support for server-time. 
 +; mIRC 7.38 - 7.41 will stall/hang during the connection. 
 +; by KindOne 
 +; originally from https://​bitbucket.org/​KindOne/​mirc-scripts-public/​src/​master/​znc-server-time-fix.mrc 
 +; Remove support for server-time and finish the CAP so 
 +; mirc can connect. 
 +raw *:*:{ 
 +  if (($version < 7.33) || ($version > 7.41)) ​return } 
 +  if (($1 == irc.znc.in) ​&& ($4-5 == ACK :​server-time)) { 
 +    cap req -server-time 
 +    cap end 
 +  ​} 
 +} 
 +</​code>​ 
 +Copy and paste the contents of that code snippet using a text editor like notepad, or notepad++ for instance, save it as the filename "​znc-server-time-fix.mrc"​ or whatever filename you wish to use, provided that the extension is in .mrc format. E.g. "​znc.mrc",​ not "​znc.mrc.txt"​ for example. Place the file ideally into your installed mIRC location. 
 + 
 +=== For mIRC users with version 6.x === 
 +Your mIRC version may not have support for SSL, it is recommended that you should update to the latest version of mIRC. Follow the guide on top, see the section titled "For latest mIRC versions, at least >7.41 but not including 7.41". If your mIRC client does not have SSL support, you won't have a secure connection.