Project

General

Profile

General Options » History » Revision 2

Revision 1 (Per Amundsen, 02/02/2015 10:20 AM) → Revision 2/32 (Per Amundsen, 02/02/2015 10:21 AM)

{{>toc}} 

 h1. General Options 

 h2. Start with windows 

 Makes AdiIRC will auto start when windows is started. 

 h2. Start minimized 

 Makes AdiIRC start in a minimized state, due to various reasons, the main window is shown briefly before it minimizes. 

 h2. Allow only one copy of AdiIRC running. 

 If enabled, only one copy of AdiIRC.exe in the current folder is allowed to run. 

 _AdiIRC.exe in other folders is ignored._ 

 h2. AdiIRC is always on top of other windows. 

 Puts AdiIRC on top of all other windows on your desktop.  

 _This can also be toggled with the keybind CTRL + A._ 

 h2. Check for updates 

 Allows AdiIRC to check for new versions Never/Daily/Weekly/Monthly. 

 h2. Include beta versions 

 Allows AdiIRC to check for beta versions as well as regular versions. 

 _Beta versions is usually safe to install._ 

 h2. Join channels when invited 

 Automatically joins a channel when invited by another user. 

 A safer approach using a script: 

 <pre> 
 on *:INVITE:#:{ 
   if ($input($nick want's to invite you into $chan Accept?, y, Invite) { 
     /join $chan 
   } 
 } 
 </pre> 

 h2. Disable CTCP reply 

 Disable's all CTCP reply, such as CTCP VERSION/PING/TIME 

 Can also be disabled by a script (or modify the reply): 

 <pre> 
 ; halt all ctcp reply's. 
 ctcp *:*:*:halt 

 ; halt only VERSION reply's 
 ctcp *:VERSION:*:halt 
 </pre>