2.3.0 • Published 5 years ago

nicemeet v2.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

NiceMeet

NiceMeet is simple and easy to use.

How does NiceMeet work?

NiceMeet creates bot functions for Discord.

Code Example

const Discord = require('discord.js');
const client = new Discord.Client();
const meet = require("nicemeet.js");
client.on("message", message => {
  if(message.author.bot) return;
  if(message.content === "ping") {
    message.quote("pong!");
  }
})

Extensions

.quote(<String>) - this extension adds the quote mode, for example: .joke() - This extension adds jokes, for example:

client.on("message", message => {
  if(message.author.bot) return;
  if(message.content === "joke") {
    meet.joke(message.channel); // Send the joke on the channel.
  }
})

Update

  • New Github NiceMeet.js
  • We are working on something new, I am trying to create a team for this.
2.3.0

5 years ago

2.0.1

5 years ago