4c72543315
various bugfixes blacklisting support (blacklist.lua) json file created automatically users are blacklisted and unblacklisted via reply with /blacklist nicknames support (nick.lua) json file created automatically users set nick by /nick "people" section of config deprecated moderation.lua improvements administrators can now run mod commands administrators are now listed with moderators modlist improved to be smarter and look better administrators can no longer be promoted to moderator /hammer command for admins to perform realm-wide ban
60 lines
994 B
Plaintext
60 lines
994 B
Plaintext
return {
|
|
bot_api_key = '',
|
|
lastfm_api_key = '',
|
|
biblia_api_key = '',
|
|
giphy_api_key = 'dc6zaTOxFJmzC',
|
|
time_offset = 0,
|
|
locale = dofile('loc/en.lua'),
|
|
admins = {
|
|
[000] = 'name'
|
|
},
|
|
blacklist = load_data('blacklist.json'),
|
|
plugins = {
|
|
'about.lua',
|
|
'help.lua',
|
|
'admin.lua',
|
|
'gSearch.lua',
|
|
'gImages.lua',
|
|
'reddit.lua',
|
|
'giphy.lua',
|
|
'xkcd.lua',
|
|
'gMaps.lua',
|
|
'wikipedia.lua',
|
|
'imdb.lua',
|
|
'urbandictionary.lua',
|
|
'hackernews.lua',
|
|
'time.lua',
|
|
'weather.lua',
|
|
'calc.lua',
|
|
'dice.lua',
|
|
'remind.lua',
|
|
'8ball.lua',
|
|
'bandersnatch.lua',
|
|
'btc.lua',
|
|
'chatter.lua',
|
|
'commit.lua',
|
|
'dogify.lua',
|
|
'echo.lua',
|
|
'hex.lua',
|
|
'interactions.lua',
|
|
'pokedex.lua',
|
|
'pun.lua',
|
|
'reaction.lua',
|
|
'slap.lua',
|
|
'whoami.lua',
|
|
'lmgtfy.lua',
|
|
'translate.lua',
|
|
'currency.lua',
|
|
'blacklist.lua',
|
|
'nick.lua'
|
|
},
|
|
moderation = {
|
|
realm = -000,
|
|
realmname = 'Realm name or ident',
|
|
data = 'moderation.json',
|
|
admins = {
|
|
['000'] = 'nickname',
|
|
}
|
|
}
|
|
}
|