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
|
---
statedir: /home/jrayhawk/.local/state/bungmobott/
tempdir: /tmp/bungmobott/
#bungmobott_listen: 0.0.0.0:5555
bungmobott_connect: twitch.fairlystable.org:5555
join_channels:
twitch:
- bungmonkey
- dopefish
- yackamov
gamesurge:
- bungmonkey
twitch_user_id: 59895482 # saves a lookup
chat_user:
twitch: bungmonkey
gamesurge: bungmoBott
commands:
'.': [ { perm: [ any ], func: detect_rename },
{ perm: [ any ], func: text_to_speech } ]
'pl(ease|z).+nerf': [ { perm: [ any ], func: obs_source_enable, arg: ['media-youdied-nerf'] } ]
'you.+died': [ { perm: [ any ], func: obs_source_enable, arg: ['media-youdied'] } ]
'did\s+nothing\s+wrong': [ { perm: [ any ], func: obs_source_enable, arg: ['media-youdied-tiggs'] } ]
'thanks.+obama': [ { perm: [ any ], func: obs_source_enable, arg: ['media-youdied-thanksobama'] } ]
'^\s*!dexem': [ { perm: [ any ], func: say, arg: ["| You're doing great work, Dexem!"] } ]
'^\s*!(commands|help)$': [ { perm: [ any ], func: say, arg: ['| https://bungmonkey.omgwallhack.org/txt/commands.txt'] } ]
'^\s*!(voices|voice(s|)list|listvoice(s|))$': [ { perm: [ any ], func: say, arg: ['| https://bungmonkey.omgwallhack.org/voicelist.txt'] } ]
'^\s*!(bouncing|)cow(s|) ': [ { perm: [ any ], func: run_shell, arg: ["effects-tcpsocket.sh", "bouncingcow"] } ]
# FIXME:
#emotes:
# 301501910: [ { perm: [ any ], func: obs_temporary_media_create, arg: ['C:/cygwin64/home/user/effects/farts/'] } ]
# 322820: [ { perm: [ any ], func: obs_temporary_media_create, arg: ['C:/cygwin64/home/user/effects/explosions/'] } ]
|