Text Transcripts
A simple plugin for Discord Tickets which adds basics text transcripts.
Supported versions
This plugin has been tested on Discord Tickets versions:- 3.0
Features
Iflog_messages
is enabled, this plugin sends a text file to the ticket creator (and to a log channel if configured) when a ticket is closed.
Commands
This plugin does not add any commands.Supported languages
Due to its simplicity, this plugin does not support localisation and is only available in a single language:- English (Great Britain)
Screenshots

Installation
- Run
npm i dsctickets.text-transcripts --no-save
- Add
dsctickets.text-transcripts
to theplugins
array in your bot's config file (./user/config.js
):
```js
plugins: [
'dsctickets.text-transcripts'
]
```
- Add a new property to your config file:
```js
module.exports = {
debug: false,
defaults: {
// ...
},
'dsctickets.text-transcripts': {
channels: {
'<GUILD ID>': '<TEXT CHANNEL ID'
}
},
locale: 'en-GB',
// ...
update_notice: true
};
```