Project

General

Profile

ZNC » History » Version 1

Mr. BS, 12/15/2014 02:43 PM

1 1 Mr. BS
h1. ZNC
2
3
To connect to a "ZNC":http://wiki.znc.in/ZNC server through AdiIRC is very easy. Follow the example bellow:
4
5
h2. Connecting by the Server Manager
6
7
To open the Server Manager press *ctrl + s* or go to Menu *Server* -> *Server List*.
8
9
!http://i.imgur.com/ElppWu9.png!
10
11
From 1 to 10, fill the fields as any other regular server, just pay attention to field *3* and *9*.
12
13
* *3:* *User* field, you can set the ZNC login here or fill by anything.
14
* *9:* Here you can type in two format, *<znc_user>:<password>* or just *<password>*. The ZNC server will assume the field *@#3@* as login if you type only the password.
15
16
When connected to a server your address will be something like: *field1* is *field3*@host (*field4*) / *nick* is *user*@my.isp.host (*realname*)
17
18
h2. Connecting by direct command
19
20
Check the [[/server]] wiki for a complete overview of command parameters. Two quick example:
21
22
# *Non SSL*: <pre>/server -m you.znc.net:5708 -p login:password</pre>
23
# *SSL*: <pre>/server -m you.znc.net:+5708 -p login:password</pre>
24
25
To connect using *SSL*, add *@+@* to port prefix or use the parameter *-ssl*.
26
27
Ps: for no specified parameters like nick (-i), username (-u), realname (-r), etc, *AdiIRC* will use the default values set in [[/quickconnect]].
28
29
h2. Connecting by script
30
31
<pre>on *:start: {
32
  server -m you.znc.net:5708 -p login:password
33
}</pre>