├── LICENSE ├── README.md ├── emoji.json ├── json.sqlite ├── package.json └── src ├── bot ├── commands │ ├── add.js │ ├── close.js │ ├── help.js │ ├── open.js │ ├── ping.js │ ├── prefix.js │ ├── remove.js │ ├── rename.js │ ├── setup.js │ └── transcript.js └── events │ ├── clickButton.js │ ├── message.js │ └── ready.js ├── config └── bot.js └── index.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmotchy/ticket-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmotchy/ticket-bot/HEAD/README.md -------------------------------------------------------------------------------- /emoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmotchy/ticket-bot/HEAD/emoji.json -------------------------------------------------------------------------------- /json.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmotchy/ticket-bot/HEAD/json.sqlite -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmotchy/ticket-bot/HEAD/package.json -------------------------------------------------------------------------------- /src/bot/commands/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmotchy/ticket-bot/HEAD/src/bot/commands/add.js -------------------------------------------------------------------------------- /src/bot/commands/close.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmotchy/ticket-bot/HEAD/src/bot/commands/close.js -------------------------------------------------------------------------------- /src/bot/commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmotchy/ticket-bot/HEAD/src/bot/commands/help.js -------------------------------------------------------------------------------- /src/bot/commands/open.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmotchy/ticket-bot/HEAD/src/bot/commands/open.js -------------------------------------------------------------------------------- /src/bot/commands/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmotchy/ticket-bot/HEAD/src/bot/commands/ping.js -------------------------------------------------------------------------------- /src/bot/commands/prefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmotchy/ticket-bot/HEAD/src/bot/commands/prefix.js -------------------------------------------------------------------------------- /src/bot/commands/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmotchy/ticket-bot/HEAD/src/bot/commands/remove.js -------------------------------------------------------------------------------- /src/bot/commands/rename.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmotchy/ticket-bot/HEAD/src/bot/commands/rename.js -------------------------------------------------------------------------------- /src/bot/commands/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmotchy/ticket-bot/HEAD/src/bot/commands/setup.js -------------------------------------------------------------------------------- /src/bot/commands/transcript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmotchy/ticket-bot/HEAD/src/bot/commands/transcript.js -------------------------------------------------------------------------------- /src/bot/events/clickButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmotchy/ticket-bot/HEAD/src/bot/events/clickButton.js -------------------------------------------------------------------------------- /src/bot/events/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmotchy/ticket-bot/HEAD/src/bot/events/message.js -------------------------------------------------------------------------------- /src/bot/events/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmotchy/ticket-bot/HEAD/src/bot/events/ready.js -------------------------------------------------------------------------------- /src/config/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmotchy/ticket-bot/HEAD/src/config/bot.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmotchy/ticket-bot/HEAD/src/index.js --------------------------------------------------------------------------------