Project

General

Profile

General Options » History » Version 1

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

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