From WikiChip
Difference between revisions of "mirc/virtual profile"
< mirc

 
(One intermediate revision by the same user not shown)
Line 4: Line 4:
  
 
mIRC does not have a built-in way to handle multiple users with different scripts and settings. This article will guide users toward easily creating multiple '''Virtual Profiles''' using a single installation of mIRC. Each of these virtual profiles will have the ability to run their own set of scripts and have their own set of options.
 
mIRC does not have a built-in way to handle multiple users with different scripts and settings. This article will guide users toward easily creating multiple '''Virtual Profiles''' using a single installation of mIRC. Each of these virtual profiles will have the ability to run their own set of scripts and have their own set of options.
 +
 +
'''Note''': click {{mIRC|mirc installation|here}} for information about how to install mIRC properly
  
 
=== Create a shortcut for each profile ===
 
=== Create a shortcut for each profile ===
Line 24: Line 26:
  
 
<span style="display: block; margin: 35px;">[[File:Virtualprofile2.png|Virtual Profile2 - mIRC]]</span>
 
<span style="display: block; margin: 35px;">[[File:Virtualprofile2.png|Virtual Profile2 - mIRC]]</span>
 
== Other settings ==
 
 
You may have noticed that we're now calling mirc.exe with a parameter: -r"path".
 
 
There are a number of other settings that can be used to manipulate mIRC as well. The following sections outline just a few of them.
 
 
=== Connect to a server on startup: ===
 
A connection can be made to a server, immediately upon mIRC starting, using the following syntax:
 
<pre>-s<server:port> [-j#chan1,#chan2,#chan3]</pre>
 
 
For example:
 
<pre>-sirc.undernet.org:6667 -j#mircscripting</pre>
 
 
=== Change mIRC.ini location ($mircini) ===
 
Another option is to change the location of the '''mIRC.ini''' (the main mIRC configuration file):
 
<pre>-i<path\to\mirc.ini></pre>
 
 
Switches can be combined as needed.
 
  
 
[[Category:mIRC|virtual profiles]]
 
[[Category:mIRC|virtual profiles]]

Latest revision as of 13:22, 19 June 2019


Virtual Profiles[edit]

mIRC does not have a built-in way to handle multiple users with different scripts and settings. This article will guide users toward easily creating multiple Virtual Profiles using a single installation of mIRC. Each of these virtual profiles will have the ability to run their own set of scripts and have their own set of options.

Note: click here for information about how to install mIRC properly

Create a shortcut for each profile[edit]

The first thing you must do is create a shortcut for each individual profile. It is recommended that you name each shortcut something appropriate so you will know which shortcut is for which profile. To create a shortcut, navigate to the mIRC executable folder using the command below. Right click on the mIRC.exe, go to Send to and click Desktop. The standard folder of mIRC.exe is "C:\Program Files (x86)\mIRC" or "C:\Program Files\mIRC".

//run $nofile($mircexe)

Virtual Profile - mIRC

Create a script folder for each profile[edit]

Creating a new folder is necessary for each of the separate profiles. The location of that folder is not very important. For example, a good place would be in the My Documents folder. The folder will be used to keep the individual mIRC settings as well as all the related scripts.

Instruct mIRC to use the new folders[edit]

Right click on the new shortcut link and go to Properties. In the Shortcut tab, replace the text next to Target with the following:

"<your\mIRC\exe\path>" -r"<new\folder\path>"

This change in paths must reflect the real paths of the end-user. An example of these paths would resemble the following example:

"C:\Program Files (x86)\mIRC\mirc.exe" -r"C:\Users\David\AppData\Roaming\mIRC\bot"

Clicking OK is the final step, and the new Virtual Profile is ready to go. The next time that mIRC is launched using this link, it will open the settings for the new profile.

Virtual Profile2 - mIRC