forked from jamichaels/virbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
44 lines (44 loc) · 1.11 KB
/
config.json
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
{
"nickname" : "virbot1",
"realname" : "Channel Bot",
"channel" : "#blackgate",
"server" : {
"name" : "us.undernet.org",
"port" : 6667
},
"debugmode" : false,
"botcommands" : {
"!host" : "host_command",
"!join" : "join_command",
"!kill" : "kill_command",
"!lmgtfy" : "lmgtfy_command",
"!part" : "part_command",
"!op" : "op_command",
"!deop" : "deop_command",
"!voice" : "voice_command"
},
"irccommands" : {
"join" : "JOIN {0}\n",
"part" : "PART {0}\n",
"nick" : "NICK {0}\n",
"pong" : "PONG {0}\n",
"privmsg" : "PRIVMSG {0} :{1}\n",
"quit" : "QUIT :{0}\n",
"user" : "USER {0} {1} {2} :{3}\n",
"op" : "MODE {0} +o {1}\n",
"deop" : "MODE {0} -o {1}\n",
"voice" : "MODE {0} +v {1}\n"
},
"numerics" : {
"332" : "numeric_332",
"333" : "numeric_333",
"353" : "numeric_353",
"372" : "numeric_372",
"375" : "numeric_375",
"376" : "numeric_376"
},
"strings" :{
"quitmessage" : "Bot Terminated",
"useragent" : "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit 537.36 (KHTML, like Gecko) Chrome"
}
}