-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
40 lines (39 loc) · 1.33 KB
/
config.php
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
<?php
return array(
'server' => 'irc.freenode.org',
'port' => 6667,
'name' => 'bojs',
'nick' => 'bojs',
'channels' => array(
'#bojs',
),
'max_reconnects' => 1,
'log_file',
'commands' => array(
'Command\P' => array(), // porn suche
'Command\F' => array(), // Random Fapper
'Command\Y' => array(), // YouTube
'Command\Imdb' => array(), // IMDb Searcher
'Command\W' => array(), // Wikipedia
'Command\G' => array(), // Google Search
// 'Command\Gi' => array(), // Google Image Search
'Command\Urb' => array(), // Urban Dictionary
// 'Command\Wa' => array(), // wolfram alpha
// 'Command\B' => array(), // 4chan rand image
// 'Command\Define' => array(), // dictionary define
// Shit that gets called every ping
// 'Command\Twitter' => array(),
),
'listeners' => array(
'Listener\YouTube' => array(),
'Listener\Fapper' => array(),
'Listener\Reddit' => array(),
'Listener\DailyMotion' => array(),
'Listener\Vimeo' => array(),
'Listener\Imgur' => array(),
'Listener\Instagram' => array(),
'Listener\Titles' => array(),
'Listener\Imdb' => array(),
'Listener\Gfycat' => array(),
),
);