-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzerobot.conf.example
More file actions
51 lines (47 loc) · 1.69 KB
/
zerobot.conf.example
File metadata and controls
51 lines (47 loc) · 1.69 KB
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
# ZeroBot Configuration File: JSON 1
# 1 = 'yes', 0 = 'no'
# SAVE AND RENAME AS 'zerobot.conf'
{
"IRC" : {
# our server to connect to
"server" : "irc.AlphaChat.net",
# the port to connect on
"port" : "6697",
# is the above port SSL? 1 yes, 0 no
"ssl" : 1,
# channel to autojoin after connection
"home" : "#ZeroBot"
},
# other channels to join after connection
"channels" : [ "#fgt", "#lobby", "#cooper" ],
# hostmasks to allow access to owner-only and below commands.
# you may add multiple in the same format
"owners" : [ "miniCruzer!eyeless@*",
"*!*@*.dhcp.insightbb.com" ],
# hostmasks to allow access to admin-only commands.
# you may add mutliple separated by "hostmask", "hostmask"
"admins" : [ "*!k@k" ],
"client" : {
# the client's nick!*@*
"nick" : "Deltron_Zero",
# the client's *!user@*
"ident" : "dz",
# the clien'ts *!*@* [realname]
"gecos" : "Demon Days",
# identification to nickserv
"nickserv" : "NickServPass",
# command prefix. may be 1 alphanumeric character in length.
# works best with symbols (!, @, ^, ~, etc)
"trigger" : "*"
},
"set" : {
# rejoin a channel after being kicked?
"rejoin_on_kick" : 1,
# save location for our database
"database" : "zero.db",
# autoop all users matching an owner mask?
"autoop_owner" : 1,
# autoop all users matching an admin mask?
"autoop_admin" : 0
},
}