forked from benlk/sadface
-
Notifications
You must be signed in to change notification settings - Fork 3
/
config_default.json
47 lines (47 loc) · 1.79 KB
/
config_default.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
45
46
47
{
"irc": {
"host": "irc.server.net",
"port": 6667,
"nickname": ["sadface", "sadface_"],
"password": "password",
"realname": "This bot belongs to Boom_Farmer",
"username": "sadface",
"user_info": "A markov chain bot",
"version_info": {"name": "sadface", "number": "rev7"},
"responsive_channels": {"#chan1": {"p": 0.0}, "#chan2": {"p": 0.5, "password": "pass"}, "#chan3": {}},
"unrecorded_channels": {"#chan7": {"p": 0.9}},
"unresponsive_channels": {"#chan4": {}, "#chan5": {}, "#chan6": {}},
"ignore_users": ["nick1", "nick2", "nick3"]
},
"brain": {
"reply_mode": 1,
"brain_file": "brain_file.txt",
"brain_db": "brain.db",
"chain_length": 2,
"max_words": 70
},
"commands": {
"static_commands": {
"@nyan": ["meow", "miaaau", "miao", "miaou", "purr", "nyan", "nya", "nyao", "myah", "goro goro", "ニャーニャー", "ニャー", "ニャン", "ニャーン", "ニャーオ", "ごろごろ", "nyaong", "yaong"]
},
"dynamic_aliases": {
"@cmd1": ["@cmdalias1", "@cmdalias2"],
"@cmd2": ["@cmdalias3"]
},
"command_configs": {
"tweet": {
"api_key": "TWITTER_API_KEY",
"api_secret": "TWITTER_API_SECRET",
"access_token": "TWITTER_ACCESS_TOKEN",
"access_token_secret": "TWITTER_TOKEN_SECRET"
},
"rand_tweet": {
"api_key": "TWITTER_API_KEY",
"api_secret": "TWITTER_API_SECRET",
"access_token": "TWITTER_ACCESS_TOKEN",
"access_token_secret": "TWITTER_TOKEN_SECRET"
}
},
"disabled_commands": ["rand_tweet", "tweet"]
}
}