2018-07-30 03:52:25 +00:00
|
|
|
{
|
2018-08-01 02:05:23 +00:00
|
|
|
'description':
|
2018-08-01 02:07:19 +00:00
|
|
|
'Emote Manager lets you manage custom server emotes from your phone.\n\n'
|
2018-08-01 02:05:23 +00:00
|
|
|
'NOTE: Most commands will be unavailable until both you and the bot have the '
|
|
|
|
'"Manage Emojis" permission.',
|
|
|
|
|
2019-07-02 10:03:13 +00:00
|
|
|
# a channel ID to invite people to when they request help with the bot
|
|
|
|
# the bot must have Create Instant Invite permissions for this channel
|
|
|
|
# if set to None, the support command will be disabled
|
|
|
|
'support_server_invite_channel': None,
|
2018-08-10 13:01:15 +00:00
|
|
|
|
2018-07-30 03:52:25 +00:00
|
|
|
'cogs': (
|
2018-07-31 00:14:34 +00:00
|
|
|
'cogs.emote',
|
2018-07-31 23:02:44 +00:00
|
|
|
'cogs.meta',
|
2018-07-30 03:52:25 +00:00
|
|
|
'ben_cogs.debug',
|
|
|
|
'ben_cogs.misc',
|
2018-07-31 00:14:34 +00:00
|
|
|
'ben_cogs.debug'
|
2018-07-30 03:52:25 +00:00
|
|
|
'jishaku',
|
|
|
|
),
|
|
|
|
|
|
|
|
'tokens': {
|
|
|
|
'discord': 'sek.rit.token',
|
|
|
|
'stats': {
|
|
|
|
'bots.discord.pw': None,
|
|
|
|
'discordbots.org': None,
|
|
|
|
'botsfordiscord.com': None,
|
|
|
|
},
|
|
|
|
},
|
2018-07-30 04:34:27 +00:00
|
|
|
|
2018-09-09 04:56:16 +00:00
|
|
|
'user_agent': 'EmoteManagerBot (https://github.com/bmintz/emote-manager-bot)',
|
2018-08-22 15:27:35 +00:00
|
|
|
|
|
|
|
# emotes that the bot may use to respond to you
|
2019-07-02 10:03:13 +00:00
|
|
|
# If not provided, the bot will use '❌', '✅' instead.
|
2018-08-22 15:27:35 +00:00
|
|
|
#
|
|
|
|
# You can obtain these ones from the discordbots.org server under the name "tickNo" and "tickYes"
|
|
|
|
# but I uploaded them to my test server
|
|
|
|
# so that both the staging and the stable versions of the bot can use them
|
|
|
|
'response_emotes': {
|
|
|
|
'success': { # emotes used to indicate success or failure
|
|
|
|
False: '<:error:478164511879069707>',
|
|
|
|
True: '<:success:478164452261363712>'
|
|
|
|
},
|
|
|
|
},
|
2018-07-30 03:52:25 +00:00
|
|
|
}
|