1.0.0 • Published 3 years ago

inlinereply v1.0.0

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

Install

$ npm i inlinereply

Usage

const Discord = require('discord.js');
const client = new Discord.Client();
require('inlinereply');

client.on("message", msg => {
if(msg.author.bot) return;
if(msg.content.toLowerCase() === "hello") {
msg.inlineReply("Hi!")
}
})

client.login("token")

Discord

Burak#2466