Skip to content

Commit

Permalink
tahu
Browse files Browse the repository at this point in the history
  • Loading branch information
LoL-Human committed Mar 13, 2021
1 parent f1dec7a commit a79966c
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ Edit the required value in `config.json`. You can get the api key at [`LoL Human
* `Pixiv Download`
* `XNXX`
* `XNXX Search`
* `Xhmaster`
* `Xhmaster Search`

### Text Maker
* `Textprome`
Expand Down
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"apikey": "91b64af1c1afa0d0ad528536",
"apikey": "",
"prefix": "/"
}
27 changes: 26 additions & 1 deletion script.js
Original file line number Diff line number Diff line change
Expand Up @@ -876,12 +876,27 @@ async function starts() {
case 'summersand':
case 'horrorblood':
case 'thunder':
case 'christmas':
if (args.length == 0) return reply(`Usage: ${prefix + command} text\nExample: ${prefix + command} LoL Human`)
txt = args.join(" ")
buffer = await getBuffer(`http://api.lolhuman.xyz/api/textprome/${command}?apikey=${apikey}&text=${txt}`)
lolhuman.sendMessage(from, buffer, image, { quoted: lol })
break
case 'pornhub':
case 'glitch':
case 'avenger':
case 'space':
case 'ninjalogo':
case 'marvelstudio':
case 'lionlogo':
case 'wolflogo':
case 'steel3d':
case 'wallgravity':
if (args.length == 0) return reply(`Usage: ${prefix + command} text\nExample: ${prefix + command} LoL Human`)
txt1 = args[0]
txt2 = args[1]
buffer = await getBuffer(`http://api.lolhuman.xyz/api/textprome2/${command}?apikey=${apikey}&text1=${txt1}&text2=${txt2}`)
lolhuman.sendMessage(from, buffer, image, { quoted: lol })
break

// Photo Oxy //
case 'shadow':
Expand Down Expand Up @@ -913,6 +928,16 @@ async function starts() {
buffer = await getBuffer(`http://api.lolhuman.xyz/api/photooxy1/${command}?apikey=${apikey}&text=${txt}`)
lolhuman.sendMessage(from, buffer, image, { quoted: lol })
break
case 'tiktok':
case 'arcade8bit':
case 'battlefield4':
case 'pubg':
if (args.length == 0) return reply(`Usage: ${prefix + command} text\nExample: ${prefix + command} LoL Human`)
txt1 = args[0]
txt2 = args[1]
buffer = await getBuffer(`http://api.lolhuman.xyz/api/photooxy2/${command}?apikey=${apikey}&text1=${txt1}&text2=${txt2}`)
lolhuman.sendMessage(from, buffer, image, { quoted: lol })
break

// Ephoto 360 //
case 'wetglass':
Expand Down

0 comments on commit a79966c

Please sign in to comment.