2021-02-15 20:34:59 +02:00
/ * *
* # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
* _ _ _ _ _ _ _ _ _ _ _ _
* | _ \ ( _ ) _ _ _ _ _ _ _ _ _ _ _ _ _ _ | | | _ _ | ( _ ) _ _ _ | | _ _ _ _ _ | | _ _ _ _
* | | | | | | / __| / _ _ | / _ \ | '__| / _ ` | | | | | / __| | |/ / / _ \ | __| / __|
* | | _ | | | | \ _ _ \ | ( _ _ | ( _ ) | | | | ( _ | | | | | | | ( _ _ | < | _ _ / | | _ \ _ _ \
* | _ _ _ _ / | _ | | _ _ _ / \ _ _ _ | \ _ _ _ / | _ | \ _ _ , _ | | _ | | _ | \ _ _ _ | | _ | \ _ \ \ _ _ _ | \ _ _ | | _ _ _ /
*
* -- -- -- -- -- -- -- -- -- -- -
* Support
* -- -- -- -- -- -- -- -- -- -- -
*
2021-02-26 18:07:20 +02:00
* > Documentation : https : //discordtickets.app
2021-04-01 21:33:53 +03:00
* > Discord support server : https : //go.eartharoid.me/discord
2021-02-15 20:34:59 +02:00
*
* # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
* /
2021-04-01 23:33:08 +03:00
2021-02-15 20:34:59 +02:00
module . exports = {
2021-02-17 01:35:31 +02:00
defaults : {
2021-05-22 02:11:14 +03:00
colour : '#009999' ,
log _messages : true ,
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
} ,
2021-09-24 17:32:36 +03:00
developer : { debug : false } ,
2021-05-22 02:11:14 +03:00
locale : 'en-GB' ,
2021-02-17 01:35:31 +02:00
logs : {
enabled : true ,
2021-04-01 21:33:53 +03:00
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 ,
2021-03-22 00:52:32 +02:00
plugins : [ ] ,
2021-02-18 20:41:35 +02:00
presence : {
2021-05-22 02:10:34 +03:00
duration : 60 ,
2021-02-18 20:41:35 +02:00
presences : [
{
2021-09-24 17:32:36 +03:00
activity : '/new' ,
2021-04-01 23:33:08 +03:00
type : 'PLAYING'
2021-02-18 20:41:35 +02:00
} ,
{
2021-02-25 11:58:19 +02:00
activity : 'with tickets' ,
2021-02-18 20:41:35 +02:00
type : 'PLAYING'
} ,
{
2021-05-16 01:06:31 +03:00
activity : 'tickets' ,
2021-02-18 20:41:35 +02:00
type : 'WATCHING'
2021-05-22 02:10:34 +03:00
}
2021-02-18 20:41:35 +02:00
] ,
2021-05-22 02:10:34 +03:00
randomise : true
2021-02-18 20:41:35 +02:00
} ,
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
} ;