2.2.0 • Published 3 years ago

discord-buttons-plugin v2.2.0

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

Discord Buttons Plugin

Easiest medium to use buttons with any discord API wrapper

npm.io

    /* Generate 1st Button with "Yes" lable on it */
	 const button1 = new buttonClient.MessageButton()
	 .setLabel("Click me")
	 .setStyle("green")
	 .setID("click")
     /* Send Message with button */
     buttonClient.send("There will be a button below this message", { channel: "CHANNEL ID", buttons: [ [button] ]})
/* listen to interaction */
buttonClient.on("click", (inta) => inta.reply("Thanks for clicking me :3")) //emits whenever the button is clicked

L I N K S

F E A T U R E S

  • Easy to handle and use
  • Made with simplicity
  • Less complexity

C O N T A C T