Project

General

Profile

FAQ » History » Version 37

Mr. BS, 02/18/2017 04:26 PM

1 1 Ken Spencer
{{>toc}}
2
3
h1. FAQ/FSS
4
5
h5. (Frequently Said Statements)
6
7 35 Mr. BS
h2. I can't see emoji/some symbols
8 1 Ken Spencer
9
If you ever experience an issue with displaying unicode characters (which is not just an encoding issue), try enable [[Options_Dialog|Options]] -> [[Messages_Options|Messages]] -> [[Messages_Options#Use-alternative-text-rendering|Use alternative text rendering]].
10
11 35 Mr. BS
---
12
13 37 Mr. BS
h2. How do I auth/identify before I join
14
15 32 Per Amundsen
If you need to be authed with nickserv before joining a channel, you can use the [[/sleep]] (or [[/timer]]) command in your [[Serverlist Dialog|Serverlist]] "Run these commands on connect" field:
16 1 Ken Spencer
17
<pre>
18
/msg nickserv identify <password>
19
/sleep 3 /join #channel1,#channel2
20
</pre>
21
22
/sleep 3, means wait 3 seconds before running the following command.
23
24 35 Mr. BS
_The new [[Serverlist Dialog|Serverlist]] has this feature built-in as well as "SASL":http://ircv3.net/specs/extensions/sasl-3.1.html support which makes this a non issue._
25 1 Ken Spencer
26
---
27 35 Mr. BS
28 37 Mr. BS
h2. Why doesn't Ctrl-C work
29
30 35 Mr. BS
When you select text from the message buffer, AdiIRC will automatically copy the text to the clipboard when you release the left mouse button.
31 1 Ken Spencer
32
If you prefer to manually press %(key)CTRL% + %(key)C%, you can go to [[Options_Dialog|Options]] -> [[Messages_Options|Messages]] and disable [[Messages_Options#AutoCopy-selected-text-to-Clipboard|AutoCopy selected text to Clipboard]]  and [[Messages_Options#AutoFocus-Editbox|AutoFocus Editbox]].
33
34
_These options might be merged into one soon as well as a feature to ask which method to use._
35
36 37 Mr. BS
---
37 35 Mr. BS
38 1 Ken Spencer
h2. TLS isn't working on a server!
39
40 35 Mr. BS
If you experience problems connecting to a TLS only server, you can try the ".NET 4.5":http://adiirc.com/download.php version which has support for TLS 1.1 and TLS 1.2. 
41 1 Ken Spencer
42 35 Mr. BS
---
43 1 Ken Spencer
44 37 Mr. BS
h2. How do I change my version reply
45
46 35 Mr. BS
You can disable or change the CTCP VERSION reply using the [[on CTCP|CTCP event]] in a small script.
47
48 1 Ken Spencer
This can be used for any CTCP request.
49
50
<pre>
51
; Disable CTCP version reply.
52
CTCP *:VERSION:*:halt
53
54
; Reply with a custom version.
55 35 Mr. BS
CTCP *:VERSION:*:ctcpreply $nick IRC Version 42 | halt
56 34 Mr. BS
</pre>
57 1 Ken Spencer
58 35 Mr. BS
---
59
60 37 Mr. BS
h2. How do I disable the popups/notifications
61
62 1 Ken Spencer
Tips for various events can be disabled in [[Options_Dialog|Options]] -> [[Tips_Options|Tips]], to disable highlight tips, go to [[Options_Dialog|Options]] -> [[Highlights_Options|Highlights]], in the listbox area select "$me", then click the "Edit" button, uncheck "Tip message" and click "Save".
63
64
---
65 35 Mr. BS
66 37 Mr. BS
h2. How do I disable highlight sounds
67
68 1 Ken Spencer
Go to [[Options_Dialog|Options]] -> [[Highlights_Options|Highlights]], in the listbox area select "$me", then click the "Edit" button, set the sound dropdown to "No sound" and click "Save".
69 35 Mr. BS
70 37 Mr. BS
---
71 35 Mr. BS
72 34 Mr. BS
h2. How do I use CERTFP, PEM files, etc with AdiIRC.
73 35 Mr. BS
74
AdiIRC supports only "PFX":https://en.wikipedia.org/wiki/PKCS_12 certificates, you can convert a "PEM":https://en.wikipedia.org/wiki/Privacy-enhanced_Electronic_Mail certificate to "PFX":https://en.wikipedia.org/wiki/PKCSusing using this "openssl":https://www.openssl.org/ format:
75 1 Ken Spencer
76
<pre>
77
openssl pkcs12 -export -out mynick.pfx -in mynick.pem
78
</pre>
79 35 Mr. BS
80 1 Ken Spencer
For creating a new certificate, have a look "here":http://help.globalscape.com/help/secureserver3/Generating_a_PKCS_12_private_key_public_certificate.htm
81 35 Mr. BS
82 37 Mr. BS
---
83 1 Ken Spencer
84
h2. I want to use the beta!
85
86 35 Mr. BS
To update to a beta release, just type [[/betaup]].
87 1 Ken Spencer
88
---
89
90 37 Mr. BS
h2. How do I add toolbar items aligned to the right
91
92 35 Mr. BS
There is a tiny "|" separator to the right, if you right click the Toolbar and choose "Customize", you are able to drag the item to the right of that border.
93 1 Ken Spencer
94
!shot_160503_110837.png!
95 35 Mr. BS
96 37 Mr. BS
---
97 34 Mr. BS
98 1 Ken Spencer
h2. My BNC starts up so slow on AdiIRC!
99
100 35 Mr. BS
Things you can try:
101 1 Ken Spencer
102
* Make sure you are using latest beta.
103 35 Mr. BS
* Reduce [[Options_Dialog|Options]] -> [[Messages_Options|Messages]] -> Max buffer.
104 1 Ken Spencer
* Disable [[Options_Dialog|Options]] -> [[Monitor_Panels_Options|Monitor Panels]] -> Monitor Channels/Servers.
105
* Type "/setoption Links CaptureLinks False" to disable capturing links.
106
* Disable [[Options_Dialog|Options]] -> [[Windows_Options|Windows]] -> Focus newly opened windows.
107
* Disable/reduce channel backgrounds.
108
* Disable/reduce emoticons.
109
* Disable/reduce highlights.
110
* Disable/reduce nick colors.
111
* Disable/reduce [[on TEXT]] and [[on PARSELINE]] scripts.
112
* Disable [[Options_Dialog|Options]] -> [[Logging_Options|Logging]] -> Log channels.
113
* Make sure [[Options_Dialog|Options]] -> [[Messages_Options|Messages]] -> [[Messages_Options#Use-alternative-text-rendering|Use alternative text rendering]] is unchecked.
114
* Make sure channel/main window is as large as possible (or smaller font) to avoid word wrapping.
115
* Use fixed size message font.
116
117
---
118
119 37 Mr. BS
h2. How do I make it so /server connects with ...
120
121 35 Mr. BS
The default options used when connecting with [[/server]] or from Menubar -> File -> New window can be changed in [[Options_Dialog|Options]] -> [[Quick Connect Options|Quick Connect]].
122
123 1 Ken Spencer
---
124 34 Mr. BS
125 37 Mr. BS
h2. Why is 'connecting' slow on some networks
126
127 35 Mr. BS
Some networks tries to scan your port 113 to see if you have a [[Identd]] server running, if the port is closed or the identd server is not running, it can take a while for the scan to timeout, make sure [[Identd]] server is enabled in [[Options_Dialog|Options]] -> [[Server_Options|Server]] and that port 113 is open in your firewall and router. (AdiIRC does not yet support "UPNP":https://en.wikipedia.org/wiki/Universal_Plug_and_Play).
128
129 1 Ken Spencer
---
130
131 37 Mr. BS
h2. How do I move the monitors to their own window
132
133 1 Ken Spencer
When "Lock Bars" is disabled (right click any menubar/toolbar/switchbar/statusbar/treebar to enable/disable) you can left-click the header of the monitor panel or a tab and move it with the mouse, if you release the mouse in the middle of the AdiIRC main window, the monitor will become a standalone window.
134
135
The window can be docked inside AdiIRC as a regular channel window by pressing CTRL + D.
136
137
_See also [[Monitor Panels]]._
138
139
You can also undock the monitor panel into a window by right-clicking the header or tab and choose "Undock".
140 10 Per Amundsen
141 35 Mr. BS
---
142 1 Ken Spencer
143 37 Mr. BS
h2. How do I autojoin several channels
144
145 5 Ken Spencer
Use <code>,</code> inbetween the channels.
146 1 Ken Spencer
147 35 Mr. BS
---
148
149 37 Mr. BS
h2. Does AdiIRC have a systray icon
150
151 35 Mr. BS
Yes, check [[Options_Dialog|Options]] -> [[Tray Icon Options|Tray Icon]].
152 1 Ken Spencer
153
---
154 35 Mr. BS
155 37 Mr. BS
h2. Can I use AdiIRC without .NET
156
157 6 Ken Spencer
No, I use .NET because its fast, easy and it has large libraries which enables me to code much more in less time. On a side note, from Windows Vista, .NET is included in Windows per default. -- kr0n
158 35 Mr. BS
159 1 Ken Spencer
---
160 35 Mr. BS
161 37 Mr. BS
h2. Does AdiIRC support DCC
162
163 1 Ken Spencer
Yes, both chat and file transfers
164 35 Mr. BS
165
---
166 5 Ken Spencer
167 37 Mr. BS
h2. There is so many other IRC clients, why wasting time writing another
168
169 35 Mr. BS
I mainly do this for fun and learning more about .NET/C# and IRC in general. -- kr0n
170 1 Ken Spencer
171 5 Ken Spencer
---
172 34 Mr. BS
173 37 Mr. BS
h2. I found a bug, what do I do
174
175 1 Ken Spencer
Check https://dev.adiirc.com/projects/adiirc/issues and see if its been reported. If not, report it!
176
177 5 Ken Spencer
---
178 35 Mr. BS
179 37 Mr. BS
h2. I got this great idea, can you implement it
180
181 35 Mr. BS
Check https://dev.adiirc.com/projects/adiirc/issues and see if someone suggested it. If not, suggest it!
182 1 Ken Spencer
183 5 Ken Spencer
---
184 35 Mr. BS
185 37 Mr. BS
h2. What does "Adi" stands for
186
187 35 Mr. BS
Nothing really. It's an old prefix used for some other projects many years ago, and the prefix just carried over to this irc client. Original it was derived from the song A.D.I.D.A.S by the band KoRn. According to some it could stand for All Day I IRC :P -- kr0n
188
189 5 Ken Spencer
---
190 1 Ken Spencer
191 37 Mr. BS
h2. Is AdiIRC open source or can I get the source
192
193 35 Mr. BS
AdiIRC is freeware, but not open source.
194
195
There is a system in place in case of "bus factor":https://en.wikipedia.org/wiki/Bus_factor.
196 1 Ken Spencer
197 23 Per Amundsen
---
198 1 Ken Spencer
199 37 Mr. BS
h2. Can I use AdiIRC on OSX/Linux
200
201 35 Mr. BS
Follow https://dev.adiirc.com/projects/adiirc/wiki/Wine
202 1 Ken Spencer
Using AdiIRC on non-windows isn't as well supported, and using mono isn't supported at all.
203
204 35 Mr. BS
---
205
206 37 Mr. BS
h2. Will you port AdiIRC to my mobile OS
207
208 1 Ken Spencer
AdiIRC is a desktop IRC client, as such it cannot be ported, a new client would have to be made from scratch and there are already good mobile IRC clients, also I have no interest in mobile IRC. --kr0n
209 35 Mr. BS
210 1 Ken Spencer
---
211 35 Mr. BS
212 37 Mr. BS
h2. How do I change message fonts
213
214 1 Ken Spencer
Message fonts can be changed in [[Options_Dialog|Options]] -> [[Fonts Options|Fonts]].
215 35 Mr. BS
216
---
217
218 37 Mr. BS
h2. Why does task manager show high memory usage for AdiIRC
219
220 35 Mr. BS
The task manager numbers are not the actual memory usage, the .NET framework which runs AdiIRC is like a little OS inside Windows, it allocates memory as needed and free it as needed, just like windows does, there are no such thing as a memory leak in .NET applications, except in very specific cases.
221
222
To show the real memory usage, you can type [[/gcmem]] in the Editbox.
223
224 11 Per Amundsen
---
225 12 Per Amundsen
226 37 Mr. BS
h2. Does AdiIRC support "OTR":https://en.wikipedia.org/wiki/Off-the-Record_Messaging
227
228 35 Mr. BS
There is no "OTR":https://en.wikipedia.org/wiki/Off-the-Record_Messaging support in AdiIRC and no plans to add it, however it is possible for someone to add OTR support through a [[Plugins|Plugin]] or a [[Scripting_DLL|DLL]]. (As an example, check the [[blowfish]] DLL)
229
230
---
231 1 Ken Spencer
232 37 Mr. BS
h2. Why are some windows/channels shown on the desktop
233
234 1 Ken Spencer
Pressing %(key)CTRL% + %(key)D% toggles "Show on desktop".
235 14 Per Amundsen
236 1 Ken Spencer
_"Shown on desktop" status is also saved across sessions._
237 15 Per Amundsen
238 37 Mr. BS
---
239 1 Ken Spencer
240 35 Mr. BS
h2. How to upgrade/downgrade AdiIRC
241
242
# Download the (portable) version you want from https://www.adiirc.com/download.php.
243
# Type [[/paths]] -r to open the AdiIRC folder where AdiIRC.exe is.
244 15 Per Amundsen
# Close AdiIRC.
245 16 Per Amundsen
# Copy the downloaded file into the AdiIRC folder and replace the old AdiIRC.exe with the new one.
246 35 Mr. BS
247 1 Ken Spencer
This can be done to go from stable to beta, or from 32 bit to 64 and visa versa, no other steps needed.
248 35 Mr. BS
249 37 Mr. BS
---
250 35 Mr. BS
251
h2. How to backup the config folder
252 34 Mr. BS
253 19 Per Amundsen
Type [[/paths]] -o or go to Menubar -> Tools -> Config Files to open the config folder, copy it anywhere.
254
255 37 Mr. BS
---
256 35 Mr. BS
257 19 Per Amundsen
h2. Antivirus flags AdiIRC as having a virus or trojan
258 35 Mr. BS
259
AdiIRC seems to generate a lot of false positives in some antivirus programs, if possible, please submit the file to your antivirus vendor for false positive analyzes and/or white-list AdiIRC.exe.
260
261
If you are unsure, the false positives seems to be resolved after a few weeks, you can try update again then.
262 20 Per Amundsen
263 37 Mr. BS
---
264 35 Mr. BS
265 34 Mr. BS
h2. Log folder using a lot of space
266 35 Mr. BS
267
If your log folder is using a lot of space and you don't want to delete any logs, you can compress it by right-clicking the log folder, click "Properties", click "Advanced", check "compress contents to save disk space" and press OK.
268
269
---
270 26 Per Amundsen
271 37 Mr. BS
h2. How can I temporary disable auto connect when AdiIRC starts
272
273 26 Per Amundsen
Press the %(key)SHIFT% key while clicking the AdiIRC icon/shortcut.
274 35 Mr. BS
275 37 Mr. BS
---
276 35 Mr. BS
277
h2. Missing Nicklist on Twitch
278 30 Per Amundsen
279 34 Mr. BS
Add this line to the [[Serverlist Commands|Commands]] tab to your twitch server in the [[Serverlist Dialog|Serverlist]], it only works for channels with less than 1000 users.
280 30 Per Amundsen
281 32 Per Amundsen
<pre>
282 30 Per Amundsen
CAP REQ :twitch.tv/membership
283 35 Mr. BS
</pre>
284 30 Per Amundsen
285 35 Mr. BS
---
286 37 Mr. BS
287
h2. How to ignore a message containing specific word(s)
288 31 Per Amundsen
289
For now a little scripting is needed, the script editor can be opened from Menubar -> Tools -> [[Edit Scripts]].
290
291
The [[on TEXT]] event can be used to listen for specific messages on specific/all channels:
292
293
*Example*
294
295
<pre>
296
; Ignore all messages containing badword on all channels.
297
on ^*:TEXT:*badword*:*:halt
298
299
; Ignore all messages starting with !badword on a specific channel.
300
on ^*:TEXT:!badword*:#channel:halt
301
</pre>
302
303
You can add as many as you want.