1.0.0 • Published 5 years ago

hmtaitest v1.0.0

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

Discord Server | Repository

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
FunctionDescription
wallpaperSFW Wallpaper with Anime
mobileWallpperSFW Wallpaper with Anime on Mobile
nekoSFW Neko Girls (Cat Girls)

NSFW Function(s)

Example:

hmtai.nsfw.function() // Format
hmtai.nsfw.hentai() // Example
FunctionDescription
assI know you like anime ass~ uwu
bdsmIf you don't know what it is, search it up
cumBasically sticky white stuff that is usually milked from sharpies.
doujinSends a random doujin page imageURL!
femdomFemale Domination?
hentaiSends a random vanilla hentai imageURL~
maidMaids, Maid Uniforms, etc, you know what maids are :3
orgyGroup Lewd Acts
pantsuI mean... just why? You like underwear?
cuckoldWow, I won't even question your fetishes.
blowjobBasically an image of a girl sucking on a sharp blade!
footSo you like smelly feet huh?
vaginaThe genitals of a female, or a cat, you give the meaning.
uniformSchool Uniforms~
gangbang5 on 1? Uh..
hGifsBasically an animated image, so yes :3
nsfwWallpapersNSFW Anime Wallpaper
nsfwMobileWallpapersNSFW Anime Mobile Wallpaper
nsfwnekoNSFW Neko Girls (Cat Girls)

Wallpaper Function(s)

Example:

hmtai.nsfw.function() // NSFW Format
hmtai.nsfw.mobileWallpapers() // NSFW Example
FunctionDescription
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

Discord Server