Install
$ npm i discord-reply
Setup
const discord = require('discord.js');
require('discord-reply');
const client = new discord.Client();
Discord.js
Example
const discord = require('discord.js');
require('discord-reply');
const client = new discord.Client();
client.on('ready', () => {
console.log(client.user.tag)
});
client.on('message', async message => {
if (message.content.startsWith('!reply')) {
message.lineReply('Hey');
message.lineReplyNoMention(`My name is ${client.user.username}`);
}
});
client.login('TOKEN');
Embed
if (message.content.startsWith('!reply')) {
let embed = new discord.MessageEmbed()
.setDescription(`Reply to ${message.author}`);
message.lineReply(embed);
message.lineReplyNoMention(embed);
}
Edit
(Async Function)
if (message.content.startsWith('!ping')) {
let m = await message.lineReply('Ping');
let ping = (m.createdTimestamp - message.createdTimestamp);
m.edit(`${ping}ms`)
}
Command Handler
module.exports = {
name: 'reply',
category: 'Test',
run: (client, message, args) => {
message.lineReply('This is reply with @mention');
}
}
Eris
SOON
Youtube, Discord