]> jfr.im git - irc/Ozafy/borknet_p10_irc_services.git/blob - README.md
Readme
[irc/Ozafy/borknet_p10_irc_services.git] / README.md
1 # BorkNet P10 IRC Services
2
3 A 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
13 Checkout the repository (do this on the root of a user's home, otherwise adjust the 'services' bash file accordingly)
14
15 ```
16 git clone https://github.com/Ozafy/borknet_p10_irc_services.git
17 ```
18
19 Now setup the bots (edit **borknet_services/bot.conf** and every .conf file in the **borknet_services/core/modules/\*** directories)
20
21 ```
22 host=borkserv.borknet.org
23 server=127.0.0.1
24 toport=4400
25 connectpass=secret
26 numeric=]O
27 ```
28
29 Add a Connect,Port and Uworld block to your snircd config.
30
31 ```
32 Connect {
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 };
41 Port {
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
48 UWorld {
49 name = "borkserv.borknet.org";
50 };
51 ```
52
53 Finally start the services with
54
55 ```
56 chmod u+x services
57 ./services
58 ```
59
60 Good luck!