1.0.0 • Published 5 years ago
hmtaitest v1.0.0
Installation
npm install hmtai
Example(s)
NodeJS:
// hmtai //
const hmtai = require('hmtai');
// Get SFW Neko Images, uwu //
console.log("SFW Neko: " + hmtai.neko());
// Get other NSFW Images //
console.log("BDSM: " + hmtai.nsfw.bdsm());
console.log("Maid: " + hmtai.nsfw.maid());
console.log("Hentai: " + hmtai.nsfw.hentai());
Legacy Function(s)
Example:
hmtai.function() // Format
hmtai.neko() // Example
hmtai.wallpaper() // Example 2
Function | Description |
---|---|
wallpaper | SFW Wallpaper with Anime |
mobileWallpper | SFW Wallpaper with Anime on Mobile |
neko | SFW Neko Girls (Cat Girls) |
NSFW Function(s)
Example:
hmtai.nsfw.function() // Format
hmtai.nsfw.hentai() // Example
Function | Description |
---|---|
ass | I know you like anime ass~ uwu |
bdsm | If you don't know what it is, search it up |
cum | Basically sticky white stuff that is usually milked from sharpies. |
doujin | Sends a random doujin page imageURL! |
femdom | Female Domination? |
hentai | Sends a random vanilla hentai imageURL~ |
maid | Maids, Maid Uniforms, etc, you know what maids are :3 |
orgy | Group Lewd Acts |
pantsu | I mean... just why? You like underwear? |
cuckold | Wow, I won't even question your fetishes. |
blowjob | Basically an image of a girl sucking on a sharp blade! |
foot | So you like smelly feet huh? |
vagina | The genitals of a female, or a cat, you give the meaning. |
uniform | School Uniforms~ |
gangbang | 5 on 1? Uh.. |
hGifs | Basically an animated image, so yes :3 |
nsfwWallpapers | NSFW Anime Wallpaper |
nsfwMobileWallpapers | NSFW Anime Mobile Wallpaper |
nsfwneko | NSFW Neko Girls (Cat Girls) |
Wallpaper Function(s)
Example:
hmtai.nsfw.function() // NSFW Format
hmtai.nsfw.mobileWallpapers() // NSFW Example
Function | Description |
---|---|
hmtai.mobileWallpapers() | Fetch a random SFW Wallpaper! (Mobile) |
hmtai.wallpapers() | Fetch a random SFW Wallpaper! (Desktop) |
hmtai.nsfw.mobileWallpapers() | Fetch a random NSFW Wallpaper! (Mobile) |
hmtai.nsfw.nsfwWallpapers() | Fetch a random NSFW Wallpaper! (Desktop) |
Discord Bot Example
const Discord = require('discord.js');
const hmtai = require('hmtai');
// Create New Client //
const client = new Discord.Client();
// Bot Settings //
const settings = {
prefix: "YOUR_BOT_PREFIX",
token: 'YOUR_BOT_TOKEN'
}
client.on('message', async message => {
// Create New Embed //
const embed = new Discord.RichEmbed();
// Defines Command //
var command = message.content.toLowerCase().slice(settings.prefix.length).split(' ')[0];
// Onii-chan, don't reply! //
if (!message.content.startsWith(settings.prefix) || message.author.bot) return;
if (command == 'lewdneko') {
// For Embed //
embed.setImage(hmtai.lewdNeko());
return message.channel.send(embed);
// For Plain Text //
return message.channel.send(hmtai.lewdNeko());
} else if (command == 'maid') {
// For Embed //
embed.setImage(hmtai.nsfw.maid());
return message.channel.send(embed);
// For Plain Text //
return message.channel.send(hmtai.nsfw.maid());
}
});
Support
1.0.0
5 years ago