mirror of
https://github.com/SrIzan10/Recluse-Bot.git
synced 2026-05-01 10:55:24 +00:00
32 lines
1.2 KiB
JavaScript
32 lines
1.2 KiB
JavaScript
const Discord = require('discord.js');
|
|
const fetch = require('node-fetch')//npm i node-fetch if you have it then dont do it :\
|
|
|
|
module.exports = {
|
|
name: 'iphonex',
|
|
category: 'Image',
|
|
description: 'Iphone X User Profile',
|
|
usage: 'iphonex <user>',
|
|
run: async (client, message, args) => {
|
|
message.channel.startTyping();
|
|
let mention = message.mentions.members.first();
|
|
|
|
let m = await message.channel.send("**Please wait... Adding Image...**");
|
|
|
|
if (!mention) {
|
|
m.edit("⚠ Please mention someone");
|
|
return message.channel.stopTyping();
|
|
}
|
|
try {
|
|
let res = await fetch(encodeURI(`https://nekobot.xyz/api/imagegen?type=iphonex&url=${mention.user.displayAvatarURL({ size: 1024 })}`));
|
|
let json = await res.json();
|
|
let attachment = new Discord.MessageAttachment(json.message, "iphonex-syze.png");
|
|
await message.channel.send(attachment);
|
|
message.channel.stopTyping();
|
|
m.delete();
|
|
} catch (e) {
|
|
m.edit("⚠ Error, Try Again!");
|
|
return message.channel.stopTyping();
|
|
}
|
|
}
|
|
};
|