DiscordTickets/user/example.config.js

68 lines
1.9 KiB
JavaScript
Raw Normal View History

2021-02-15 20:34:59 +02:00
/**
* ###############################################################################################
* ____ _ _____ _ _
* | _ \ (_) ___ ___ ___ _ __ __| | |_ _| (_) ___ | | __ ___ | |_ ___
* | | | | | | / __| / __| / _ \ | '__| / _` | | | | | / __| | |/ / / _ \ | __| / __|
* | |_| | | | \__ \ | (__ | (_) | | | | (_| | | | | | | (__ | < | __/ | |_ \__ \
* |____/ |_| |___/ \___| \___/ |_| \__,_| |_| |_| \___| |_|\_\ \___| \__| |___/
*
* ---------------------
* Quick Start
* ---------------------
*
* > For detailed instructions, visit the documentation: https://discordtickets.eartharoid.me
2021-02-15 20:34:59 +02:00
*
* ---------------------
* Support
* ---------------------
*
* > Discord support server: https://go.eartharoid.me/discord
* > Documentation: https://discordtickets.eartharoid.me
2021-02-15 20:34:59 +02:00
*
* ###############################################################################################
*/
module.exports = {
2021-02-17 01:35:31 +02:00
debug: false,
defaults: {
colour: '#009999',
locale: 'en-GB',
log_messages: true, // required for transcripts/archives
2021-02-22 02:05:37 +02:00
prefix: '-',
ticket_welcome: 'Hello {{name}}, thank you for creating a ticket. A member of staff will soon be available to assist you.\n\n__All messages in this channel are stored for future reference.__',
2021-02-17 01:35:31 +02:00
},
logs: {
enabled: true,
keep_for: 30
},
2021-02-17 15:24:33 +02:00
max_listeners: 10,
2021-02-17 01:35:31 +02:00
plugins: [
2021-02-15 20:34:59 +02:00
],
presence: {
presences: [
{
activity: '/new | /help',
type: 'PLAYING',
status: 'online'
},
{
activity: 'with tickets | /help',
type: 'PLAYING'
},
{
activity: 'for new tickets | /help',
type: 'WATCHING'
},
/* { // an example
activity: 'Minecraft',
type: 'STREAMING',
status: 'dnd',
url: 'https://www.twitch.tv/twitch'
}, */
],
randomise: true,
duration: 60
},
2021-02-17 15:24:33 +02:00
super_secret_setting: true,
2021-02-15 20:34:59 +02:00
update_notice: true,
};