forked from MTK358/TuxBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.lua
115 lines (112 loc) · 3.65 KB
/
config.lua
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
return {
identities = {
['testbot'] = {
username = 'fsdfsf',
realname = 'fdfsdf',
userinfo = 'dfsfdf',
quitmessage = 'Quit Message',
nicks = {'test_bot'},
},
},
networks = {
--[[['Test'] = {
address = 'irc.esper.net',
port = 6697,
ssl = true,
channels = {'#test[]', '#test[]~'},
identity = 'testbot',
sentcolor = '1;32m',
receivedcolor = '0;32m',
ignore = {
'^.*!.*@.*services%.esper%.net$',
},
},]]
['EsperNet'] = {
address = 'irc.esper.net',
channels = {'#linux', '#freiwuppertal', '#test[]', '#test[]~'},
identity = 'testbot',
sentcolor = '1;32m',
receivedcolor = '0;32m',
ignore = {
'^.*!.*@.*services%.esper%.net$',
},
},
['OFTC'] = {
address = 'irc.oftc.net',
port = 6667,
channels = {'#linux'},
identity = 'testbot',
sentcolor = '1;31m',
receivedcolor = '0;31m',
ignore = {
'^.*!.*@.*services%.oftc%.net$',
},
},
--[[['Rizon'] = {
address = 'irc.oftc.net',
port = 6667,
channels = {'#test[]'},
identity = 'testbot',
sentcolor = '1;36m',
receivedcolor = '0;36m',
ignore = {
'^.*!.*@%.rizon%.net$',
'^.*!.*@Microsoft%.com$',
},
},
['Freenode'] = {
address = 'irc.oftc.net',
port = 6667,
channels = {'#test[]'},
identity = 'testbot',
sentcolor = '1;35m',
receivedcolor = '0;35m',
ignore = {
'^.*!.*@.*services%.freenode%.net$',
},
},]]
},
command_prefixes = {'!', '[Tt][Uu][Xx][Bb][Oo][Tt] *[:,] *'},
no_command_message = '"%s": no such command; try \'!commands\', read the /topic or have a look at the source: https://github.com/MTK358/TuxBot',
plugins = {
['echo'] = {'echo.lua'},
['rand'] = {'rand.lua'},
['yesno'] = {'yesno.lua', {
choices = {
"Yes.",
"No.",
"Yes, absolutely :D",
"No, not really ;)",
"Yes, why not?",
"No!!! O.O",
"Maybe...",
"I don't know. :/",
"Well, what do \002you\002 think?",
"I am not authorized to answer a question like this.",
},
}},
['responses'] = {'responses.lua', {
responses = dofile('config-responses.lua')},
},
['luaapi'] = {'luaapi.lua'},
['nickregain'] = {'nickregain.lua', {
execafter = {
"PRIVMSG NickServ :identify PassW0rd",
"PRIVMSG BotOwner :someone used @@regain on this network",
},
}},
['time'] = {'time.lua'},
['commands'] = {'commands.lua'},
['help'] = {'help.lua', {
entries = dofile('config-help.lua')
}},
['floodkick'] = {'floodkick.lua'},
--['urltitle'] = {'urltitle.lua'},
['man'] = {'man.lua'},
['relay'] = {'relay.lua', {
{{'EsperNet', '#linux'}, {'OFTC', '#linux'}, shownetname=true},
{{'EsperNet', '#test[]'}, {'EsperNet', '#test[]~'}, showchanname=true},
nickfmts = {'\0033', '\0034', '\0035', '\0036', '\0037', '\0039', '\00310', '\00311', '\00312', '\00313', endfmt='\015'},
}},
},
}