npm i cdtickets --save
// Top of the Command File
const CDTickets = require('cdtickets')
const ticket = new CDTickets()
ticket.create({
msg: message,
name: 'Ticket Name', // Defaults to the ticket owners username
supportRole: 'Role', // Role Name or ID
category: 'Category ID', // If no category is set it will just make a channel at the top of the server
response: 'Response', // This message is sent when they open the ticket - Defaults to "Your ticket has successfully been created in #channel
reason: 'Reason for opening the ticket', // Defaults to "No reason provided"
message: 'Message', // This message is sent when the ticket is opened, will also ping the user and the support role
})
ticket.delete({
msg: message
})
ticket.claim({
msg: message,
supportRole: 'Role' // Role Name or ID
})
ticket.unclaim({
msg: message,
supportRole: 'Role', // Role Name or ID
})
ticket.rename({
msg: message,
name: 'New Name'
})
ticket.add({
msg: message,
user: 'User' // message.mentions.members.first() || message.guild.members.cache.get(args[argNumber])
})
ticket.remove({
msg: message,
user: 'User' // message.mentions.members.first() || message.guild.members.cache.get(args[argNumber])
})
If you have any questions, suggestions or need helping setting it up join our Support Server.