Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const superagent = require("snekfetch");
- const Discord = require('discord.js')
- client.on("message",async message => {
- if(message.content.startsWith(`${prefix}hentai`)) {
- if (!message.channel.nsfw) return message.channel.send('This Channel Is Not NSFW Channel!')
- superagent.get('https://nekos.life/api/v2/img/hentai')
- .end((err, response) => {
- const akami = new Discord.RichEmbed()
- .setAuthor(`Hentai!`)
- .setTitle("Click to Go to Picture")
- .setImage(response.body.url)
- .setColor("RED")
- .setURL(response.body.url);
- message.channel.send(akami);
- })
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment