Merge pull request #43 from IDeletedSystem64/IDeletedSystem64-patch-1
Update commands.md
This commit is contained in:
commit
7520fc74d2
29
commands.md
29
commands.md
|
@ -1,4 +1,27 @@
|
||||||
# Anitrox Command List
|
# Anitrox Command List
|
||||||
|Command|Arguments |
|
<> = Optionable
|
||||||
|-------|----------|
|
<br>
|
||||||
|Help |none |
|
[] = Required
|
||||||
|
|
||||||
|
|Command|Arguments |Description |
|
||||||
|
|-------|----------|------------|
|
||||||
|
|Help |none |Help? Help!!|
|
||||||
|
|8ball |[Question]|Ask a question, Any question! |
|
||||||
|
|avatar |\<Member\> |Get a users beautiful avatar |
|
||||||
|
|bonk |[Member] | Bonk, no horny. |
|
||||||
|
|cheese |\<Member\>| Cheese.|
|
||||||
|
|cuddle |[Member] | Cuddle someone! |
|
||||||
|
|hug |[Member] | Hug someone! |
|
||||||
|
|info |none | Information about the bot and host.
|
||||||
|
|invite |none | Invite Anitrox to your server!
|
||||||
|
|kiss |[Member] | Kiss someone! |
|
||||||
|
|leskiss|[Member] | Lesbain kiss (Suggested by Emi)
|
||||||
|
|lick |[Member] | Did you just lick me!?
|
||||||
|
|nom |[Member] | Nom someone or something
|
||||||
|
|opensource| none | Source code for Anitrox
|
||||||
|
|pat |[Member] | Pat someone!
|
||||||
|
|ping |none | Ping Elon Musk! or Mars! nah jk, Discord.
|
||||||
|
|poke |[Member] | Poke someone!
|
||||||
|
|slap |[Member] | Slap someone :(
|
||||||
|
|snuggle|[Member] | Snuggle someone!
|
||||||
|
|uinfo |[Member] | Information about an user
|
|
@ -2,15 +2,17 @@ module.exports = {
|
||||||
name: "avatar",
|
name: "avatar",
|
||||||
description: "Gets a users avatar.",
|
description: "Gets a users avatar.",
|
||||||
execute(client, message, args) {
|
execute(client, message, args) {
|
||||||
const user = message.mentions.users.first()
|
user = message.mentions.users.first()
|
||||||
|
if (!user) user = message.author
|
||||||
|
|
||||||
|
const {footerTxt} = require('../config.json');
|
||||||
|
|
||||||
const embed = {
|
const embed = {
|
||||||
"title": ":frame_photo: " + user.username + "'s Avatar",
|
"title": ":frame_photo: " + user.username + "'s Beautiful Avatar!",
|
||||||
"description": "Here is " + user.username + "'s avatar!",
|
|
||||||
"color": 9442302,
|
"color": 9442302,
|
||||||
"footer": {
|
"footer": {
|
||||||
"icon_url": "https://media.discordapp.net/attachments/549707869138714635/793524910172667964/Screenshot_26.png",
|
"icon_url": message.author.displayAvatarURL(),
|
||||||
"text": "Made with ❤ in Illinois | Anitrox © IDeletedSystem64 2018-2021"
|
"text": footerTxt
|
||||||
},
|
},
|
||||||
"image": {
|
"image": {
|
||||||
"url": user.displayAvatarURL()
|
"url": user.displayAvatarURL()
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
name: "userinfo",
|
name: "uinfo",
|
||||||
description: "Gets info about an user, such as ID, Discord Join date and more",
|
description: "Gets info about an user, such as ID, Discord Join date and more",
|
||||||
syntax: "<User>",
|
syntax: "<User>",
|
||||||
execute(client, message, args) {
|
execute(client, message, args) {
|
Reference in New Issue