/discord-task-list

Create a simple task list within discord messages

Primary LanguageJavaScript

Discord Task Progress Messages

Mainly used for my Discord Bots
Just shows a simple checklist in Discord Messages, also supports Typescript

Example:

Example

Code Example:

// Create Once
const dtl = new(require('discord-task-list'))('✅', '✖') // <= pass custom emojis/text here

const progress = dtl.newProgress(['task 1', 'task 2', 'launching rocket'], message); // message = discord.js message object 
await dtl.start();
// do stuff
await progress.next();
// do stuff
await progress.next();
// do stuff
await progress.next();