Mirc Article Index for
Mirc
Articles about
Mirc
Website Links For
Mirc
 

Information About

Mirc





| Information

  Name mIRC
  Logo
  Screenshot
  Caption Screenshot of mIRC
  Developer MIRC Co Ltd ( Khaled Mardam-Bey )
  Latest Release Version 617
  Latest Release Date February 17 , 2006
  Operating System Microsoft Windows
  Genre IRC Client
  License Proprietary <br>
  Website In the US <br> In the UK


mIRC is a Shareware Internet Relay Chat Client for Windows , created in 1995 and developed by Khaled Mardam-Bey . This was originally its only use, but it has evolved into a highly configurable tool that can be used for many purposes due to its Integrated Scripting Language . Other uses may include:
  • IRC Bot / channel management

  • MP3 music player

  • DCC (a Peer-to-peer IP -based chat or file send), and IRC server

  • Web page parser (usually for retrieving search results or headlines)

  • Game platform (these games are called MIRC Game s)


mIRC is highly popular, having been downloaded nearly eight million times from CNET's download.com service as of August 2005. Nielsen Net Rankings also rated mIRC as among one of the top 10 most popular Internet applications in 2003. Its popularity may explain why many mIRC users mistakenly believe that the name of their client is also the name of the protocol it uses, thinking they are "connecting to a mIRC server" or "joining a mIRC channel".

It is currently unexplained what the "m" stands for in the name - Khaled's personal FAQ says ''"It quite possibly stands for 'moo', or perhaps even MU"''. {Link without Title}


MAIN FEATURES

  • Advanced integrated Event-based and command-based scripting language

  • Ability to connect to multiple servers simultaneously

  • CTCP support

  • DCC file transfer and DCC chat support

  • Protection against Malicious File downloads

  • DCC file server (fserve) that allows a user to browse a specified folder and download files

  • ANSI-style and mIRC-style text decoration support

  • Speech Recognition and synthesis via 3rd party products

  • SSL and Firewall support

  • Support for UTF-8 (For full support, "Multibyte editbox" must be enabled)



COMMON CRITICISMS

  • mIRC scripting allows troublemakers to dupe naïve users into running Malicious Code merely by typing things in the chat window (for example, entering lines beginning with //write (). Since version 6.17 this is disabled by default, and various other commands considered dangerous can be locked in mIRC options.

  • mIRC-style text decorations and colors are not part of the IRC standard, but because of the program's popularity, competing IRC clients have been forced to include them in their program, although support sometimes ranges only to dumping the formatting entirely.

  • mIRC does not support native IPv6 .



''SLAP!'' FUNCTION

A famous feature associated with mIRC even though it predates it is the ability to "slap" another user by right-clicking the target's nickname. This results in the line of text "A slaps B around a bit with a large Trout ". It serves no other function than to send the message, which is merely an execution of the "/action" ("/me") command in IRC. Such an action can warrant a kick or even a ban in many channels.
The sentence "A slaps B around a bit with a large Trout " is thought to be a reference to Monty Python 's sketch The Fish-Slapping Dance .

This function can be removed by editing mIRC's built-in script.


MIRC SCRIPTING

For novice users this function may be a bit overwhelming, but it is an ingenious addition to the program.
With MIRC Scripting (also referred to as "remote") you can make your client do specific tasks on specific events.
For instance: You can make your client answer "I'm here!" when someone writes your nick suffixed with a question mark; "yournick?", in either all, or just some specific channels.
Here's how you can do it for a specific channel:
Say your nick is "wiki"
and the channel you're in is "#wiki" (channels in IRC are prefixed with a hash sign)

  • :TEXT:---anyone saw wiki---:#wiki:{

  • msg I'm here!

}

If you now change your nick without editing the script manually, the script will not work.
Fortunately mIRC provides several functions that makes this no problem at all.
To list some from the examples:
  • (your current nick)

  • (the one who triggered your event)

  • (the channel the triggered event occurred in)

  • $+ (a function to concatenate two strings; "a $+ b" produces "ab")

  • $1 (the first token (word) in a sentence; "a b c d e" a = $1, b = $2, c = $3 etc)



  • :TEXT:---:#:{

  • if ($1 == $+ ?) {

msg I'm here, $+ !
}
}


Now mIRC's if/else operators are being used. These are logical operators that you find in most scripting/programming languages. In addition we use an asterisk instead of a specific string to indicate that the event shall trigger on ALL text.
#wiki has been changed with '#', this has the effect of triggering the event from ANY channel you're in, instead of just '#wiki'.
  • ' instead of a hash sign '#' you'll allow the event to be triggered by queries as well.

  • To allow the event from triggering only by queries, you can use a question mark '?'.


So for queries:


  • :TEXT:---:?:{

  • if ($1 == $+ ?) {

msg I'm here, $+ !
}
}


But what if you want the event only to trigger in specific channels?
  If ($1 = $+ ) && ( ( == #wiki) ( == #wikien) ) {