You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
992 B
JavaScript

const Command = require(`../../Structure/Command.js`);
module.exports = class extends Command {
constructor(client) {
super(client, {
name: `myinfos`,
description: `Return some informations about you.`,
category: `Utils`,
enabled: true,
aliases: [`me`],
cooldown: 3,
dmOnly: false,
});
}
async run(message, args) {
message.author.fetch().then(e => {
message.chat.sendMessage(
`Full Name: ${message.author.fullName}
Username: ${message.author.username}
ID: ${message.author.id}
Biography:\n${message.author.biography}
Followers: ${message.author.followerCount}
Following: ${message.author.followingCount}
Business: ${message.author.isBusiness}
Verified: ${message.author.isVerified}
Private: ${message.author.isPrivate}
Number Of Posts: ${message.author.mediaCount}
Number Of IGTV posts: ${message.author.totalIgtvVideos}
`)
})
}
}