gaber-elsayed

Anal Nsfw Commands (JS)

Dec 19th, 2019
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. const superagent = require("snekfetch");
  2. const Discord = require('discord.js')
  3.  
  4. client.on("message",async message => {
  5. if(message.content.startsWith(`${prefix}anal`)) {
  6. if (message.channel.nsfw === true) {
  7. superagent.get('https://nekobot.xyz/api/image')
  8. .query({ type: 'anal'})
  9. .end((err, response) => {
  10. message.channel.send({ file: response.body.message });
  11. });
  12. } else {
  13. message.channel.send("This Channel Not Nsfw!")
  14. }
  15. }
  16. });
Advertisement
Add Comment
Please, Sign In to add comment