discord-inline-replys
v1.0.3
Published
a pacakge meant to do discord inline replys (mention and no mention)
Downloads
36
Maintainers
Readme
Discord Inline Replys
About:
This is a discord.js exstension
How to set it up:
const Discord = require('discord.js');
require('discord-inline-replys'); // Make sure to put this infront of your Discord.Client
const client = new Discord.Client();
How to use
const Discord = require('discord.js');
require('discord-inline-replys'); //Make sure to put this infront of your Discord.Client
const client = new Discord.Client();
client.on('ready', () => {
console.log(`logged in as ${client.user.tag}`)
});
client.on('message', async message => {
if (message.content.startsWith('!hello')) {
message.noMentionReply('Hey'); //no mention
message.mentionReply(`My name is ${client.user.username}`); ///mention reply
}
});
client.login('TOKEN');