DiscordTickets/user/example.config.js

66 lines
2.0 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-05-22 02:10:34 +03:00
opening_message: '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
},
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,
2021-05-22 02:10:34 +03:00
split: true
2021-02-17 01:35:31 +02:00
},
2021-02-17 15:24:33 +02:00
max_listeners: 10,
plugins: [],
presence: {
2021-05-22 02:10:34 +03:00
duration: 60,
presences: [
{
activity: `${prefix}new`,
type: 'PLAYING'
},
{
2021-02-25 11:58:19 +02:00
activity: 'with tickets',
type: 'PLAYING'
},
{
activity: 'tickets',
type: 'WATCHING'
2021-05-22 02:10:34 +03:00
}
/*
* { // an example
* activity: 'Minecraft',
* type: 'STREAMING',
* status: 'dnd',
* url: 'https://www.twitch.tv/twitch'
* },
*/
],
2021-05-22 02:10:34 +03:00
randomise: true
},
2021-02-17 15:24:33 +02:00
super_secret_setting: true,
2021-05-22 02:10:34 +03:00
update_notice: true
2021-02-15 20:34:59 +02:00
};