Project

General

Profile

General Options » History » Version 2

Per Amundsen, 02/02/2015 10:21 AM

1 2 Per Amundsen
{{>toc}}
2
3 1 Per Amundsen
h1. General Options
4
5
h2. Start with windows
6
7
Makes AdiIRC will auto start when windows is started.
8
9
h2. Start minimized
10
11
Makes AdiIRC start in a minimized state, due to various reasons, the main window is shown briefly before it minimizes.
12
13
h2. Allow only one copy of AdiIRC running.
14
15
If enabled, only one copy of AdiIRC.exe in the current folder is allowed to run.
16
17
_AdiIRC.exe in other folders is ignored._
18
19
h2. AdiIRC is always on top of other windows.
20
21
Puts AdiIRC on top of all other windows on your desktop. 
22
23
_This can also be toggled with the keybind CTRL + A._
24
25
h2. Check for updates
26
27
Allows AdiIRC to check for new versions Never/Daily/Weekly/Monthly.
28
29
h2. Include beta versions
30
31
Allows AdiIRC to check for beta versions as well as regular versions.
32
33
_Beta versions is usually safe to install._
34
35
h2. Join channels when invited
36
37
Automatically joins a channel when invited by another user.
38
39
A safer approach using a script:
40
41
<pre>
42
on *:INVITE:#:{
43
  if ($input($nick want's to invite you into $chan Accept?, y, Invite) {
44
    /join $chan
45
  }
46
}
47
</pre>
48
49
h2. Disable CTCP reply
50
51
Disable's all CTCP reply, such as CTCP VERSION/PING/TIME
52
53
Can also be disabled by a script (or modify the reply):
54
55
<pre>
56
; halt all ctcp reply's.
57
ctcp *:*:*:halt
58
59
; halt only VERSION reply's
60
ctcp *:VERSION:*:halt
61
</pre>