diff --git a/commands/info.js b/commands/info.js index cee00d1..573bd7c 100644 --- a/commands/info.js +++ b/commands/info.js @@ -24,7 +24,7 @@ module.exports = { -const version = ("Public Test Buld 3, Based on dev Build 424") +const version = ("Public Test Buld 4, Based on dev Build 429") const release = ("anitrox_ptb") const os = require("os") diff --git a/commands/restart.js b/commands/restart.js new file mode 100644 index 0000000..aca1d34 --- /dev/null +++ b/commands/restart.js @@ -0,0 +1,17 @@ + +module.exports = { + name: 'restart', + description: '(Owner Only) Shuts down the bot.', + execute(client, message, args) { + const token=("") + if (message.author.id == 309427567004483586) { + message.channel.send(" Restarting...").then + client.destroy() + .catch(console.error) + .then + client.login(token); + message.channel.send("<:NyabotSuccess:697211376740859914> Restart Successful") + } else { + message.channel.send("<:NyabotDenied:697145462565896194> Access Denied, You must be bot owner to execute this command."); + } + }} \ No newline at end of file diff --git a/commands/userinfo.js b/commands/userinfo.js index 1a94b09..80930f7 100644 --- a/commands/userinfo.js +++ b/commands/userinfo.js @@ -1,38 +1,91 @@ -module.exports = { - - name: "userinfo", - description: "Gets info about an user, such as ID, Discord Join date and more.", - execute(client, message, args) { - - const taggedUser = message.mentions.users.first(); - const embed = { - "title": "Everything you've ever wanted to know about " + taggedUser.username + "!", - "color": 172544, - "footer": { - "icon_url": "https://media.discordapp.net/attachments/549707869138714635/793524910172667964/Screenshot_26.png", - "text": "Made with ❤ in Illinois | Anitrox © 2018-2021 IDeletedSystem64" - }, - - "thumbnail": { - "url": "https://cdn.discordapp.com/embed/avatars/0.png" - }, - "fields": [ - { - "name": "Full Username", - "value": taggedUser.tag - }, - { - "name": "User ID", - "value": "``" + taggedUser.id + "``" - }, - { - "name": "User Joined Discord", - "value": "This will be added in a future release", - inline: true - }, - - ] - }; - message.channel.send({ embed: embed }); - } - } \ No newline at end of file +const { User } = require("discord.js"); + + +module.exports = { + + name: 'userinfo', + description: 'Shows information about you or another user.', + execute(client, message, args) { + const taggedUser = message.mentions.users.first(); + + + //Actual code + const embed = { + "title": "<:userinfo:793885335498522685> **User Information**", + "description": "Everything you've ever wanted to know about **" + taggedUser.username + ("!**"), + "color": 11038194, + + "footer": { + "icon_url": "https://cdn.discordapp.com/attachments/549707869138714635/793524910172667964/Screenshot_26.png", + "text": "Anitrox © IDeletedSystem64 2018-2021. All Rights Reserved" + }, + "thumbnail": { + "url": taggedUser.displayAvatarURL({ dynamic: true }) + }, + "fields": [ + { + "name": "<:userquestion:793984046912110633> **Full Username**", + "value": taggedUser.username + ("#") + taggedUser.discriminator + }, + { + "name": "<:userquestion:793984046912110633> User Status", + "value": taggedUser.status, + "value": taggedUser.presence + }, + { + "name": "<:userquestion:793984046912110633> User ID", + "value": taggedUser.id + }, + { + "name": "<:userquestion:793984046912110633> User Joined Discord", + "value": taggedUser.CreatedAt, + "inline": true + }, + { + "name": "<:userquestion:793984046912110633> User Joined Server", + "value": "tba", + "inline": true + } + ] + }; + message.channel.send({ embed }); + } + }; +======= + name: "userinfo", + description: "Gets info about an user, such as ID, Discord Join date and more.", + execute(client, message, args) { + + const taggedUser = message.mentions.users.first(); + const embed = { + "title": "Everything you've ever wanted to know about " + taggedUser.username + "!", + "color": 172544, + "footer": { + "icon_url": "https://media.discordapp.net/attachments/549707869138714635/793524910172667964/Screenshot_26.png", + "text": "Made with ❤ in Illinois | Anitrox © 2018-2021 IDeletedSystem64" + }, + + "thumbnail": { + "url": "https://cdn.discordapp.com/embed/avatars/0.png" + }, + "fields": [ + { + "name": "Full Username", + "value": taggedUser.tag + }, + { + "name": "User ID", + "value": "``" + taggedUser.id + "``" + }, + { + "name": "User Joined Discord", + "value": "This will be added in a future release", + inline: true + }, + + ] + }; + message.channel.send({ embed: embed }); + } + } +