|
|
|
|
|
|
|
|
|
|
|
const { cmd } = require('../command'); |
|
const axios = require('axios'); |
|
|
|
cmd({ |
|
pattern: "nsfw", |
|
desc: "Display a list of NSFW options", |
|
category: "fun", |
|
use: '.nsfw', |
|
react: "🔥", |
|
filename: __filename |
|
}, |
|
async (conn, mek, m, { from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { |
|
try { |
|
|
|
const nsfwList = ` |
|
*❦ \`SUBZERO SEXY HUB.🎀🍭\`* |
|
|
|
1️⃣ *EJACULATION💦* |
|
2️⃣ *PENIS🍆* |
|
3️⃣ *EREC🌭* |
|
4️⃣ *NUDE🍜* |
|
5️⃣ *SEX🫦* |
|
6️⃣ *CUTE🩷* |
|
7️⃣ *ORGASM🌊* |
|
8️⃣ *ANAL🕳️* |
|
9️⃣ *SUSPENSION🍑* |
|
1️⃣0️⃣ *KISS💋* |
|
|
|
──────────────── |
|
*_Simply type the number corresponding to the option you'd like to choose._* |
|
──────────────── |
|
⚠️\`[NOTICE]\` |
|
*By Continueing You Agree that you are 18+ .*`; |
|
|
|
|
|
const imageUrl = 'https://i.ibb.co/j8hv83f/Manul-Ofc-X.jpg'; |
|
|
|
|
|
await conn.sendMessage(from, { |
|
text: nsfwList, |
|
caption: 'Choose one from the list above!', |
|
image: { url: imageUrl } |
|
}, { quoted: mek }); |
|
} catch (e) { |
|
console.error(e); |
|
reply('❌ An error occurred while processing your request.'); |
|
} |
|
}); |
|
cmd({ |
|
pattern: "ejaculation", |
|
desc: "Fetch a NSFW image related to the command", |
|
category: "fun", |
|
use: '.ejaculation', |
|
react: "🔥", |
|
filename: __filename |
|
}, |
|
async (conn, mek, m, { from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { |
|
try { |
|
|
|
const apiURL = `https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=ejaculation`; |
|
|
|
|
|
const response = await axios.get(apiURL); |
|
|
|
if (response.data && response.data.image_url) { |
|
const imageUrl = response.data.image_url; |
|
|
|
|
|
await conn.sendMessage(from, { |
|
image: { url: imageUrl }, |
|
caption: `Here your ${command} image 🔞🍆🍑.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ 𝔼𝕟𝕔𝕣𝕪𝕡𝕥𝕠-𝟚𝟟-𝔸𝕀😋🍑🔞.`, |
|
}, { quoted: mek }); |
|
} else { |
|
await reply('❌ No image found for this category.'); |
|
} |
|
} catch (e) { |
|
console.error(e); |
|
await reply('❌ An error occurred while fetching the image.'); |
|
} |
|
}); |
|
cmd({ |
|
pattern: "penis", |
|
desc: "Fetch a NSFW image related to the command", |
|
category: "fun", |
|
use: '.penis', |
|
react: "🍑", |
|
filename: __filename |
|
}, |
|
async (conn, mek, m, { from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { |
|
try { |
|
|
|
const apiURL = `https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=penis_under_skirt`; |
|
|
|
|
|
const response = await axios.get(apiURL); |
|
|
|
if (response.data && response.data.image_url) { |
|
const imageUrl = response.data.image_url; |
|
|
|
|
|
await conn.sendMessage(from, { |
|
image: { url: imageUrl }, |
|
caption: `Here your ${command} image 🔞🍆🍑.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ 𝔼𝕟𝕔𝕣𝕪𝕡𝕥𝕠-𝟚𝟟-𝔸𝕀😋🍑🔞.`, |
|
}, { quoted: mek }); |
|
} else { |
|
await reply('❌ No image found for this category.'); |
|
} |
|
} catch (e) { |
|
console.error(e); |
|
await reply('❌ An error occurred while fetching the image.'); |
|
} |
|
}); |
|
cmd({ |
|
pattern: "erec", |
|
desc: "Fetch a NSFW image related to the command", |
|
category: "fun", |
|
use: '.erec', |
|
react: "🍑", |
|
filename: __filename |
|
}, |
|
async (conn, mek, m, { from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { |
|
try { |
|
|
|
const apiURL = `https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=erect_nipple`; |
|
|
|
|
|
const response = await axios.get(apiURL); |
|
|
|
if (response.data && response.data.image_url) { |
|
const imageUrl = response.data.image_url; |
|
|
|
|
|
await conn.sendMessage(from, { |
|
image: { url: imageUrl }, |
|
caption: `Here your ${command} image 🔞🍆🍑.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ 𝔼𝕟𝕔𝕣𝕪𝕡𝕥𝕠-𝟚𝟟-𝔸𝕀😋🍑🔞.`, |
|
}, { quoted: mek }); |
|
} else { |
|
await reply('❌ No image found for this category.'); |
|
} |
|
} catch (e) { |
|
console.error(e); |
|
await reply('❌ An error occurred while fetching the image.'); |
|
} |
|
}); |
|
cmd({ |
|
pattern: "nude", |
|
desc: "Display a nude NSFW image", |
|
category: "fun", |
|
use: '.nude', |
|
react: "🔥", |
|
filename: __filename |
|
}, |
|
async (conn, mek, m, { from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { |
|
try { |
|
|
|
const apiUrl = 'https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=nude'; |
|
|
|
|
|
const response = await fetch(apiUrl); |
|
const data = await response.json(); |
|
|
|
|
|
if (data && data.image) { |
|
const imageUrl = data.image; |
|
|
|
|
|
await conn.sendMessage(from, { |
|
image: { url: imageUrl }, |
|
caption: 'Here is your nude NSFW image 🔞🔥.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ 𝔼𝕟𝕔𝕣𝕪𝕡𝕥𝕠-𝟚𝟟-𝔸𝕀😋🔥🔞.' |
|
}, { quoted: mek }); |
|
} else { |
|
reply('❌ Unable to fetch image. Please try again later.'); |
|
} |
|
} catch (e) { |
|
console.error(e); |
|
await reply('❌ An error occurred while processing your request.'); |
|
} |
|
}); |
|
cmd({ |
|
pattern: "sex", |
|
desc: "Display a NSFW sex image", |
|
category: "fun", |
|
use: '.sex', |
|
react: "🔥", |
|
filename: __filename |
|
}, |
|
async (conn, mek, m, { from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { |
|
try { |
|
|
|
const apiUrl = 'https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=sex'; |
|
|
|
|
|
const response = await fetch(apiUrl); |
|
const data = await response.json(); |
|
|
|
|
|
if (data && data.image) { |
|
const imageUrl = data.image; |
|
|
|
|
|
await conn.sendMessage(from, { |
|
image: { url: imageUrl }, |
|
caption: 'Here is your sex NSFW image 🔞🔥.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ 𝔼𝕟𝕔𝕣𝕪𝕡𝕥𝕠-𝟚𝟟-𝔸𝕀😋🔥🔞.' |
|
}, { quoted: mek }); |
|
} else { |
|
reply('❌ Unable to fetch image. Please try again later.'); |
|
} |
|
} catch (e) { |
|
console.error(e); |
|
await reply('❌ An error occurred while processing your request.'); |
|
} |
|
}); |
|
cmd({ |
|
pattern: "cute", |
|
desc: "Display a NSFW cute image", |
|
category: "fun", |
|
use: '.cute', |
|
react: "🌸", |
|
filename: __filename |
|
}, |
|
async (conn, mek, m, { from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { |
|
try { |
|
|
|
const apiUrl = 'https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=cute'; |
|
|
|
|
|
const response = await fetch(apiUrl); |
|
const data = await response.json(); |
|
|
|
|
|
if (data && data.image) { |
|
const imageUrl = data.image; |
|
|
|
|
|
await conn.sendMessage(from, { |
|
image: { url: imageUrl }, |
|
caption: 'Here is your cute NSFW image 🔞💖.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ 𝔼𝕟𝕔𝕣𝕪𝕡𝕥𝕠-𝟚𝟟-𝔸𝕀😋💖🔞.' |
|
}, { quoted: mek }); |
|
} else { |
|
reply('❌ Unable to fetch image. Please try again later.'); |
|
} |
|
} catch (e) { |
|
console.error(e); |
|
await reply('❌ An error occurred while processing your request.'); |
|
} |
|
}); |
|
cmd({ |
|
pattern: "orgasm", |
|
desc: "Display a NSFW orgasm image", |
|
category: "fun", |
|
use: '.orgasm', |
|
react: "💥", |
|
filename: __filename |
|
}, |
|
async (conn, mek, m, { from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { |
|
try { |
|
|
|
const apiUrl = 'https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=orgasm'; |
|
|
|
|
|
const response = await fetch(apiUrl); |
|
const data = await response.json(); |
|
|
|
|
|
if (data && data.image) { |
|
const imageUrl = data.image; |
|
|
|
|
|
await conn.sendMessage(from, { |
|
image: { url: imageUrl }, |
|
caption: 'Here is your orgasm NSFW image 🔞💥.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ 𝔼𝕟𝕔𝕣𝕪𝕡𝕥𝕠-𝟚𝟟-𝔸𝕀😋💥🔞.' |
|
}, { quoted: mek }); |
|
} else { |
|
reply('❌ Unable to fetch image. Please try again later.'); |
|
} |
|
} catch (e) { |
|
console.error(e); |
|
await reply('❌ An error occurred while processing your request.'); |
|
} |
|
}); |
|
cmd({ |
|
pattern: "anal", |
|
desc: "Display a NSFW anal image", |
|
category: "fun", |
|
use: '.anal', |
|
react: "🔥", |
|
filename: __filename |
|
}, |
|
async (conn, mek, m, { from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { |
|
try { |
|
|
|
const apiUrl = 'https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=anal_sex'; |
|
|
|
|
|
const response = await fetch(apiUrl); |
|
const data = await response.json(); |
|
|
|
|
|
if (data && data.image) { |
|
const imageUrl = data.image; |
|
|
|
|
|
await conn.sendMessage(from, { |
|
image: { url: imageUrl }, |
|
caption: 'Here is your anal NSFW image 🔞🔥.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ 𝔼𝕟𝕔𝕣𝕪𝕡𝕥𝕠-𝟚𝟟-𝔸𝕀😋🔥🔞.' |
|
}, { quoted: mek }); |
|
} else { |
|
reply('❌ Unable to fetch image. Please try again later.'); |
|
} |
|
} catch (e) { |
|
console.error(e); |
|
await reply('❌ An error occurred while processing your request.'); |
|
} |
|
}); |
|
cmd({ |
|
pattern: "suspension", |
|
desc: "Display a NSFW suspension image", |
|
category: "fun", |
|
use: '.suspension', |
|
react: "🔥", |
|
filename: __filename |
|
}, |
|
async (conn, mek, m, { from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { |
|
try { |
|
|
|
const apiUrl = 'https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=suspension'; |
|
|
|
|
|
const response = await fetch(apiUrl); |
|
const data = await response.json(); |
|
|
|
|
|
if (data && data.image) { |
|
const imageUrl = data.image; |
|
|
|
|
|
await conn.sendMessage(from, { |
|
image: { url: imageUrl }, |
|
caption: 'Here is your suspension NSFW image 🔞🔥.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ 𝔼𝕟𝕔𝕣𝕪𝕡𝕥𝕠-𝟚𝟟-𝔸𝕀😋🔥🔞.' |
|
}, { quoted: mek }); |
|
} else { |
|
reply('❌ Unable to fetch image. Please try again later.'); |
|
} |
|
} catch (e) { |
|
console.error(e); |
|
await reply('❌ An error occurred while processing your request.'); |
|
} |
|
}); |
|
cmd({ |
|
pattern: "kiss", |
|
desc: "Display a NSFW kissing image", |
|
category: "fun", |
|
use: '.kiss', |
|
react: "💋", |
|
filename: __filename |
|
}, |
|
async (conn, mek, m, { from, l, quoted, body, isCmd, command, args, q, isGroup, sender, senderNumber, botNumber2, botNumber, pushname, isMe, isOwner, groupMetadata, groupName, participants, groupAdmins, isBotAdmins, isAdmins, reply }) => { |
|
try { |
|
|
|
const apiUrl = 'https://pikabotzapi.vercel.app/anime-nsfw/hentai-images/?apikey=anya-md&category=kissing_while_penetrated'; |
|
|
|
|
|
const response = await fetch(apiUrl); |
|
const data = await response.json(); |
|
|
|
|
|
if (data && data.image) { |
|
const imageUrl = data.image; |
|
|
|
|
|
await conn.sendMessage(from, { |
|
image: { url: imageUrl }, |
|
caption: 'Here is your kiss NSFW image 🔞💋.\n> © Gᴇɴᴇʀᴀᴛᴇᴅ ʙʏ Nᴀsᴛʏ 𝔼𝕟𝕔𝕣𝕪𝕡𝕥𝕠-𝟚𝟟-𝔸𝕀😋💋🔞.' |
|
}, { quoted: mek }); |
|
} else { |
|
reply('❌ Unable to fetch image. Please try again later.'); |
|
} |
|
} catch (e) { |
|
console.error(e); |
|
await reply('❌ An error occurred while processing your request.') |
|
} |
|
}); |
|
|