DiscordTickets/user/example.config.js

63 lines
1.8 KiB
JavaScript
Raw Normal View History

2021-02-15 20:34:59 +02:00
/**
* ###############################################################################################
* ____ _ _____ _ _
* | _ \ (_) ___ ___ ___ _ __ __| | |_ _| (_) ___ | | __ ___ | |_ ___
* | | | | | | / __| / __| / _ \ | '__| / _` | | | | | / __| | |/ / / _ \ | __| / __|
* | |_| | | | \__ \ | (__ | (_) | | | | (_| | | | | | | (__ | < | __/ | |_ \__ \
* |____/ |_| |___/ \___| \___/ |_| \__,_| |_| |_| \___| |_|\_\ \___| \__| |___/
*
* ---------------------
* Support
* ---------------------
*
2021-02-26 18:07:20 +02:00
* > Documentation: https://discordtickets.app
* > Discord support server: https://go.eartharoid.me/discord
2021-02-15 20:34:59 +02:00
*
* ###############################################################################################
*/
const prefix = '-';
2021-02-15 20:34:59 +02:00
module.exports = {
2021-02-17 01:35:31 +02:00
debug: false,
defaults: {
colour: '#009999', // https://discord.js.org/#/docs/main/stable/typedef/ColorResolvable
command_prefix: prefix,
2021-03-15 23:12:58 +02:00
log_messages: true, // transcripts/archives will be empty if false
2021-03-29 01:49:36 +03:00
name_format: 'ticket-{number}',
2021-02-17 01:35:31 +02:00
},
locale: 'en-GB', // used for globals (such as commands) and the default guild locale
2021-02-17 01:35:31 +02:00
logs: {
enabled: true,
keep_for: 30,
split: true,
2021-02-17 01:35:31 +02:00
},
2021-02-17 15:24:33 +02:00
max_listeners: 10,
plugins: [],
presence: {
presences: [
{
activity: `${prefix}new`,
type: 'PLAYING'
},
{
2021-02-25 11:58:19 +02:00
activity: 'with tickets',
type: 'PLAYING'
},
{
2021-02-25 11:58:19 +02:00
activity: 'for new tickets',
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,
};