Project

General

Profile

FAQ » History » Version 1

Ken Spencer, 09/02/2016 09:02 PM

1 1 Ken Spencer
{{>toc}}
2
3
h1. FAQ/FSS
4
5
h5. (Frequently Said Statements)
6
7
8
h2. I can't see emoji/some symbols
9
10
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]].
11
12
h2. How do I auth/identify before I join?
13
14
If you need to be authed with nickserv before joining a channel, you can use the [[/sleep]] (or [[/timer]]) command in your serverlist "Run these commands on connect" field:
15
16
<pre>
17
/msg nickserv identify <password>
18
/sleep 3 /join #channel1,#channel2
19
</pre>
20
21
/sleep 3, means wait 3 seconds before running the following command.
22
23
_The new 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._
24
25
h2. Why doesn't Ctrl-C work?
26
27
When you select text from the message buffer, AdiIRC will automatically copy the text to the clipboard when you release the left mouse button.
28
29
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]].
30
31
_These options might be merged into one soon as well as a feature to ask which method to use._
32
33
h2. TLS isn't working on a server!
34
35
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. 
36
37
h2. How do I change my version?
38
39
You can disable or change the CTCP VERSION reply using the [[on CTCP|CTCP event]] in a small script.
40
41
This can be used for any CTCP request.
42
43
<pre>
44
; Disable CTCP version reply.
45
CTCP *:VERSION:*:halt
46
47
; Reply with a custom version.
48
CTCP *:VERSION:*:ctcpreply $nick IRC Version 42 | halt
49
</pre>
50
51
h2. How do I disable the popups/notifications?!?!?
52
53
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".
54
55
h2. I hear a beep when I get highlighted, I don't like it.
56
57
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".
58
59
h2. How do I use CERTFP, PEM files, etc with AdiIRC.
60
61
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:
62
63
<pre>
64
openssl pkcs12 -export -out mynick.pfx -in mynick.pem
65
</pre>
66
67
For creating a new certificate, have a look "here":http://help.globalscape.com/help/secureserver3/Generating_a_PKCS_12_private_key_public_certificate.htm
68
69
h2. I want to use the beta!
70
71
To update to a beta release, just type [[/betaup]].
72
73
h2. How do I rearrange the toolbar items?
74
75
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.
76
77
!shot_160503_110837.png!
78
79
h2. My BNC starts up so slow on AdiIRC!
80
81
Things you can try:
82
83
* Make sure you are using latest beta.
84
* Reduce Options -> Messages -> Max buffer.
85
* Disable Options -> Monitor -> Monitor Channels/Servers.
86
* Type "/setoption Links CaptureLinks False" to disable capturing links.
87
* Disable Options -> Windows -> Focus newly opened windows.
88
* Disable/reduce channel backgrounds.
89
* Disable/reduce emoticons.
90
* Disable/reduce highlights.
91
* Disable/reduce nick colors.
92
* Disable/reduce [[on TEXT]] and [[on PARSELINE]] scripts.
93
* Disable Options -> Logging-> Log channels.
94
* Make sure [[Options_Dialog|Options]] -> [[Messages_Options|Messages]] -> [[Messages_Options#Use-alternative-text-rendering|Use alternative text rendering]] is unchecked.
95
* Make sure channel/main window is as large as possible (or smaller font) to avoid word wrapping.
96
* Use fixed size message font.
97
98
h2. How do I make it so /server connects with ...?
99
100
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]].
101
102
h2. I'm connecting to a server and it lags on 'Checking Ident ... Hostname' / How do I get rid of the '~' in me!~bleh@my.isp.com
103
104
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).
105
106
h2. These monitors take up so much space / How do I move the monitors to their own window?
107
108
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.
109
110
The window can be docked inside AdiIRC as a regular channel window by pressing CTRL + D.
111
112
You can also undock the monitor panel into a window by right-clicking the header or tab and choose "Undock".