-
Notifications
You must be signed in to change notification settings - Fork 0
/
rpgserv.conf
66 lines (59 loc) · 2.01 KB
/
rpgserv.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
* First, create the service for RPGServ.
*/
service
{
/*
* The name of the ChanServ client.
* If you change this value, you probably want to change the client directive in the configuration for the chanserv module too.
*/
nick = "RPGServ"
/*
* The username of the ChanServ client.
*/
user = "services"
/*
* The hostname of the ChanServ client.
*/
host = "services.host"
/*
* The realname of the ChanServ client.
*/
gecos = "RolePlay Game Service"
/* The modes this client should use. */
modes = "+o"
/*
* An optional comma separated list of channels this service should join.
*/
channels = "~#services"
}
module
{
name = "rpgserv"
/*
* The name of the client that should be ChanServ.
*/
client = "RPGServ"
dicemax = 25
sidemax = 1000
}
command { service = "RpgServ"; name = "HELP"; command = "generic/help"; }
command { service = "RpgServ"; name = "CALC"; command = "rpgserv/calc"; }
command { service = "RpgServ"; name = "ROLL"; command = "rpgserv/roll"; }
module { name = "rs_say" }
command { service = "RpgServ"; name = "SAY"; command = "rpgserv/say"; }
module { name = "rs_act" }
command { service = "RpgServ"; name = "ACT"; command = "rpgserv/act"; }
module { name = "rs_wod" }
command { service = "RpgServ"; name = "WOD"; command = "rpgserv/wod"; }
module { name = "rs_ww" }
command { service = "RpgServ"; name = "WW"; command = "rpgserv/ww"; }
module { name = "rs_d20" }
command { service = "RpgServ"; name = "D20"; command = "rpgserv/d20"; }
module { name = "rs_exalted" }
command { service = "RpgServ"; name = "EXALTED"; command = "rpgserv/exalted"; }
module { name = "rs_shadowrun" }
command { service = "RpgServ"; name = "SHADOWRUN"; command = "rpgserv/shadowrun"; }
module { name = "rs_roll+" }
command { service = "RpgServ"; name = "ROLL+"; command = "rpgserv/roll+"; }
module { name = "rs_fudge" }