1.0.1 • Published 5 years ago

betameme.js v1.0.1

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

discordmeme.js

meme.js is an api wrapper for discord bots which aims to provide memes and image gen. Beta

Docs

Installing

NPM

npm i discordmeme.js

Endpoints Memes & Image Gen


> meme - Provides random memes.
Required:- 

> joke - Provides random joke.
Required:- 

> clydify - Clydify your message.
Required:- text

> trigger - Trigger an image.
Required:- image

> gay - Add gayprideflag on any image.
Required:- image

> wasted - WASTED!
Required:- image

> invert - Invert an image.
Required:- image

> greyscale - Greyscale any image.
Required:- image

> convertImage - Convert text to image.
Required:- text

> qrcodegen - Generates QR Code.
Required:- text

> barcodegen - Generates barcode.
Required:- text

NSFW


> porn - Get porn GIF.

> nsfwjoke - Get NSFW joke.

> gonewild - Gonewild Image.

> anal - Get anal pic/GIF.

> pussy - Get image of pussy.

> fourk - Get 4K image.

> ass - Get image of ass.

> hanal - Get image of hanal.

> thigh - Get thigh's image.

> neko - Get picture of Neko.

Example

1]

const memer = require("discordmeme.js");

let triggered = await memer.trigger(avatar)
  
    const attachment = new Discord.Attachment(triggered, 'triggered.gif');
    message.channel.send(attachment);

2]

const memer = require("discordmeme.js");

let qr = await memer.qrcodegen("Hello World!")
  
    const attachment = new Discord.Attachment(qr, 'qrcode.png');
    message.channel.send(attachment);

3]

const memer = require("discordmeme.js");

let neko = await memer.neko()
  
    const embed = new Discord.RichEmbed()
    .setImage(neko)
    message.channel.send(embed);