1.0.3 • Published 3 years ago

discord-inline-replys v1.0.3

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

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');