]> jfr.im git - irc/Ozafy/borknet_p10_irc_services.git/blame - README.md
Readme
[irc/Ozafy/borknet_p10_irc_services.git] / README.md
CommitLineData
865824c4
LP
1# BorkNet P10 IRC Services
2
3A set of IRC Services to complement [QuakeNet's newserv](https://github.com/quakenet/newserv).
4
5## Requirements
6
7- JRE 1.6 or later
8- Git
9- Basic knowledge of Linux
10
11## Installation
12
13Checkout the repository (do this on the root of a user's home, otherwise adjust the 'services' bash file accordingly)
14
15```
16git clone https://github.com/Ozafy/borknet_p10_irc_services.git
17```
18
19Now setup the bots (edit **borknet_services/bot.conf** and every .conf file in the **borknet_services/core/modules/\*** directories)
20
21```
22host=borkserv.borknet.org
23server=127.0.0.1
24toport=4400
25connectpass=secret
26numeric=]O
27```
28
29Add a Connect,Port and Uworld block to your snircd config.
30
31```
32Connect {
33 name = "borkserv.borknet.org";
34 host = "127.0.0.1";
35 password = "secret";
36 port = 4400;
37 class = "Server";
38 autoconnect = no;
39 hub;
40};
41Port {
42 server = yes;
43 port = ipv4 4400;
44 hidden = yes;
45 vhost = "127.0.0.1";
46};
47# you should add this to your existing UWorld block
48UWorld {
49 name = "borkserv.borknet.org";
50};
51```
52
53Finally start the services with
54
55```
56chmod u+x services
57./services
58```
59
60Good luck!