From c473664918881d1c4eabfb826c922065fc6d4398 Mon Sep 17 00:00:00 2001 From: Anthony M <47640864+IDeletedSystem64@users.noreply.github.com> Date: Sat, 23 Jan 2021 17:58:05 -0600 Subject: [PATCH 1/7] Delete restart.js --- commands/restart.js | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 commands/restart.js diff --git a/commands/restart.js b/commands/restart.js deleted file mode 100644 index 808a95e..0000000 --- a/commands/restart.js +++ /dev/null @@ -1,21 +0,0 @@ - -module.exports = { - name: 'restart', - description: '(Owner Only) Shuts down the bot.', - execute(client, message, args) { - const { token } = require('./config.json'); - if (message.author.id == 309427567004483586) { - message.channel.send(" Restarting...").then - client.destroy() - .catch(console.error) - .then - console.log("Restarting!") - console.log("Getting ready") - console.log("Ready to start!") - client.login(token); - message.channel.send("<:NyabotSuccess:697211376740859914> Restart Successful") - console.log("All systems go") - } else { - message.channel.send("<:NyabotDenied:697145462565896194> Access Denied, You must be bot owner to execute this command."); - } - }} From b3d9cd32deadb1233356ede82124108d3177d651 Mon Sep 17 00:00:00 2001 From: Anthony M <47640864+IDeletedSystem64@users.noreply.github.com> Date: Sat, 23 Jan 2021 18:08:27 -0600 Subject: [PATCH 2/7] Delete shutdown.js --- commands/shutdown.js | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 commands/shutdown.js diff --git a/commands/shutdown.js b/commands/shutdown.js deleted file mode 100644 index ad9aa77..0000000 --- a/commands/shutdown.js +++ /dev/null @@ -1,13 +0,0 @@ - -module.exports = { - name: 'shutdown', - description: '(Owner Only) Shuts down the bot.', - execute(client, message, args) { - if (message.author.id == 309427567004483586) { - message.channel.send(" Shutting Down...").then - client.destroy() - .catch(console.error) - } else { - message.channel.send("<:NyabotDenied:697145462565896194> Access Denied, You must be bot owner to execute this command."); - } - }} \ No newline at end of file From b5cb18171e2cff74a8e0513a372b88cceba99bb8 Mon Sep 17 00:00:00 2001 From: Anthony M <47640864+IDeletedSystem64@users.noreply.github.com> Date: Sat, 23 Jan 2021 18:08:47 -0600 Subject: [PATCH 3/7] Add files via upload --- commands/stop.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 commands/stop.js diff --git a/commands/stop.js b/commands/stop.js new file mode 100644 index 0000000..46a1e6b --- /dev/null +++ b/commands/stop.js @@ -0,0 +1,13 @@ + +module.exports = { + name: 'stop', + description: '(Owner Only) Shuts down the bot.', + execute(client, message, args) { + if (message.author.id == 309427567004483586) { + message.channel.send(" Shutting Down...").then + client.destroy() + .catch(console.error) + } else { + message.channel.send("<:NyabotDenied:697145462565896194> Access Denied, You must be bot owner to execute this command."); + } + }} \ No newline at end of file From ae7c551d62fee0cddbdeb954bb0101676f87fd54 Mon Sep 17 00:00:00 2001 From: Anthony M <47640864+IDeletedSystem64@users.noreply.github.com> Date: Sun, 24 Jan 2021 11:56:14 -0600 Subject: [PATCH 4/7] Add files via upload --- start.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.js b/start.js index 3acde6e..59a9116 100644 --- a/start.js +++ b/start.js @@ -3,7 +3,7 @@ const fs = require('fs'); const Discord = require('discord.js'); const { prefix, token } = require('./config.json'); const os = require("os") -const version = "Test Release 21"; +const version = "build 432"; const release = "anitrox_unstable" console.log('Starting!') From ed3af3e2fa33627ddd8e14ded6987507be123876 Mon Sep 17 00:00:00 2001 From: Anthony M <47640864+IDeletedSystem64@users.noreply.github.com> Date: Tue, 26 Jan 2021 10:03:53 -0600 Subject: [PATCH 5/7] Update hug to newest version --- commands/hug.js | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/commands/hug.js b/commands/hug.js index 708e902..dc4add0 100644 --- a/commands/hug.js +++ b/commands/hug.js @@ -5,7 +5,17 @@ module.exports = { execute(client, message, args) { const messageAuthor = message.author const taggedUser = message.mentions.users.first(); - const embed = { + const gifchoices = [ + "https://media1.tenor.com/images/684efd91473dcfab34cb78bf16d211cf/tenor.gif?itemid=14495459", + "https://cdn.lowgif.com/medium/d26c65f2d66be540-merriberri-graphic-arts-services-requests.gif", + "https://cdn.lowgif.com/full/91e3f30773596637-.gif", + "https://thumbs.gfycat.com/WealthyWastefulBluemorphobutterfly-size_restricted.gif", + "https://data.whicdn.com/images/294164107/original.gif", + "https://media1.tenor.com/images/e5e7779385d003db13396e03b7fd1024/tenor.gif?itemid=16619907" + ]; + const index = Math.floor(Math.random() * (gifchoices.length - 1) + 2); + var gif = (gifchoices[index]); + const embed = { "title": " Hug", "description": "<@" + taggedUser + ">" + " You have been hugged by " + "<@" + messageAuthor + ">!", "color": 8311585, @@ -14,7 +24,7 @@ module.exports = { "text": "Made with ❤ in Illinois | Anitrox © IDeletedSystem64 2018-2021" }, "image": { - "url": "https://i.imgur.com/r9aU2xv.gif?noredirect" + "url": gif } } From c67f359d87ae9dcb5d66acd82fbc4e330b2ec688 Mon Sep 17 00:00:00 2001 From: Anthony M <47640864+IDeletedSystem64@users.noreply.github.com> Date: Tue, 26 Jan 2021 14:03:02 -0600 Subject: [PATCH 6/7] Update to build 439 --- commands/ban.js | 31 +++++++++++++++++++++++++++++++ commands/cuddle.js | 16 ++++++++++++++-- commands/kiss.js | 16 ++++++++++++++-- commands/nom.js | 18 ++++++++++++++++-- commands/pat.js | 17 +++++++++++++++-- commands/poke.js | 17 +++++++++++++++-- commands/restart.js | 18 ++++++++++++++++++ 7 files changed, 123 insertions(+), 10 deletions(-) create mode 100644 commands/ban.js create mode 100644 commands/restart.js diff --git a/commands/ban.js b/commands/ban.js new file mode 100644 index 0000000..c8549fb --- /dev/null +++ b/commands/ban.js @@ -0,0 +1,31 @@ +const { GuildMember } = require("discord.js"); + +module.exports = { + name: "ban", + description: "Bans an user, This requires that you have ``BAN_MEMBERS`` or ``ADMINISTRATOR``", + execute(client, message, args) { + const banembed = { + "title": "<:usersuccess:793885338250641469> User Banned", + "description": "User ${user.tag} was banned!", + "color": 5736060, + "fields": [ + { + "name": "Reason", + "value": "reason" + } + ] + }; + const user = message.mentions.users.first(); + if (user) { + const member = message.guild.member(user); + if (member) { + member + .ban({ + reason: 'reason', + }) + .then(() => + + message.channel.send("bye lmao")); + + } + }}} \ No newline at end of file diff --git a/commands/cuddle.js b/commands/cuddle.js index 1b1ed9e..bb945ef 100644 --- a/commands/cuddle.js +++ b/commands/cuddle.js @@ -5,7 +5,19 @@ module.exports = { execute(client, message, args) { const messageAuthor = message.author const taggedUser = message.mentions.users.first(); - const embed = { + + // -------------------------------------- + const gifchoices = [ + "https://i.pinimg.com/originals/4d/89/d7/4d89d7f963b41a416ec8a55230dab31b.gif", + "https://media1.tenor.com/images/6d73b0a9cadef5310be4b6160d2f959a/tenor.gif?itemid=12099823", + "https://media.tenor.com/images/2636cf3c8152631b4630bf71757a4afa/tenor.gif", + "https://i.imgur.com/JiFpT5E.gif" + ]; + const index = Math.floor(Math.random() * (gifchoices.length - 1) + 1); + var gif = (gifchoices[index]); + // --------------------------------------- + + const embed = { "title": ":heart: Cuddle", "description": "<@" + taggedUser + ">" + " You have been cuddled by " + "<@" + messageAuthor + ">!", "color": 8311585, @@ -14,7 +26,7 @@ module.exports = { "text": "Made with ❤ in Illinois | Anitrox © IDeletedSystem64 2018-2021" }, "image": { - "url": "https://media.tenor.com/images/7199fdd26fc2c07cd49a34fda3fc37a8/tenor.gif" + "url": gif } } diff --git a/commands/kiss.js b/commands/kiss.js index d28762a..6796d38 100644 --- a/commands/kiss.js +++ b/commands/kiss.js @@ -5,7 +5,19 @@ module.exports = { execute(client, message, args) { const messageAuthor = message.author const taggedUser = message.mentions.users.first(); - const embed = { + // -------------------------------------- + const gifchoices = [ + "https://thumbs.gfycat.com/SlowGlossyBlackcrappie-small.gif", + "https://media0.giphy.com/media/12VXIxKaIEarL2/giphy.gif", + "https://cutewallpaper.org/21/anime-kiss-girl/Anime-Kissing-GIF-Anime-Kissing-Girl-Discover-Share-GIFs.gif", + "https://i.makeagif.com/media/4-29-2017/orH05W.gif", + "https://31.media.tumblr.com/ea7842aad07c00b098397bf4d00723c6/tumblr_n570yg0ZIv1rikkvpo1_500.gif" + + ]; + const index = Math.floor(Math.random() * (gifchoices.length - 1) + 1); + var gif = (gifchoices[index]); + // --------------------------------------- + const embed = { "title": ":heart: Kiss", "description": "<@" + taggedUser + ">" + " You have been kissed by <@" + messageAuthor + ">!", "color": 8311585, @@ -14,7 +26,7 @@ module.exports = { "text": "Made with ❤ in Illinois | Anitrox © IDeletedSystem64 2018-2021" }, "image": { - "url": "https://i.pinimg.com/originals/e3/4e/31/e34e31123f8f35d5c771a2d6a70bef52.gif" + "url": gif } } diff --git a/commands/nom.js b/commands/nom.js index 4862d5d..cb8302f 100644 --- a/commands/nom.js +++ b/commands/nom.js @@ -5,7 +5,21 @@ module.exports = { execute(client, message, args) { const messageAuthor = message.author const taggedUser = message.mentions.users.first(); - const embed = { + + // -------------------------------------- + const gifchoices = [ + "https://i.imgur.com/Ns1RBzX.gif", + "https://cdn.lowgif.com/full/2027501b8fa5225c-.gif", + "https://i.gifer.com/36Nx.gif", + "https://media.tenor.com/images/e8bbe712a5f36bbe9545930894b08bf9/tenor.gif" + + + ]; + const index = Math.floor(Math.random() * (gifchoices.length - 1) + 1); + var gif = (gifchoices[index]); + // --------------------------------------- + + const embed = { "title": "<:BlobNomBlob:801241117919805510> Nom", "description": "<@" + taggedUser + "> You have been nommed by <@" + messageAuthor + ">!", "color": 8311585, @@ -14,7 +28,7 @@ module.exports = { "text": "Made with ❤ in Illinois | Anitrox © IDeletedSystem64 2018-2021" }, "image": { - "url": "https://data.whicdn.com/images/279560594/original.gif" + "url": gif } } diff --git a/commands/pat.js b/commands/pat.js index b45dbe6..d67a4c7 100644 --- a/commands/pat.js +++ b/commands/pat.js @@ -5,7 +5,20 @@ module.exports = { execute(client, message, args) { const messageAuthor = message.author const taggedUser = message.mentions.users.first(); - const embed = { + + // -------------------------------------- + const gifchoices = [ + "https://cdn.discordapp.com/attachments/803658122299572255/803708174293008474/tenor.gif", + "https://community.gamepress.gg/uploads/default/original/3X/0/a/0a762099c5ad6de9ca5f13dd22a7e45884a99eb3.gif", + "https://media1.giphy.com/media/ARSp9T7wwxNcs/giphy.gif" + + + ]; + const index = Math.floor(Math.random() * (gifchoices.length - 1) + 2); + var gif = (gifchoices[index]); + // --------------------------------------- + + const embed = { "title": "<:pats:801238281286713355> Pat", "description": "<@" + taggedUser + "> You have been patted by <@" + messageAuthor + ">!", "color": 8311585, @@ -14,7 +27,7 @@ module.exports = { "text": "Made with ❤ in Illinois | Anitrox © IDeletedSystem64 2018-2021" }, "image": { - "url": "https://media1.giphy.com/media/ARSp9T7wwxNcs/giphy.gif" + "url": gif } } diff --git a/commands/poke.js b/commands/poke.js index 8bcb73a..266dfb6 100644 --- a/commands/poke.js +++ b/commands/poke.js @@ -5,7 +5,20 @@ module.exports = { execute(client, message, args) { const messageAuthor = message.author const taggedUser = message.mentions.users.first(); - const embed = { + + // -------------------------------------- + const gifchoices = [ + "https://i.pinimg.com/originals/b4/95/fb/b495fb19f4b9a1b04f48297b676c497b.gif", + "https://i.imgur.com/H7Ok5tn.gif", + "https://media1.tenor.com/images/8fe23ec8e2c5e44964e5c11983ff6f41/tenor.gif?itemid=5600215" + + + ]; + const index = Math.floor(Math.random() * (gifchoices.length - 1) + 2); + var gif = (gifchoices[index]); + // --------------------------------------- + + const embed = { "title": "👉 Poke!", "description": "<@" + taggedUser + "> You have been poked by <@" + messageAuthor + ">!", "color": 8311585, @@ -14,7 +27,7 @@ module.exports = { "text": "Made with ❤ in Illinois | Anitrox © IDeletedSystem64 2018-2021" }, "image": { - "url": "https://i.gifer.com/4IdP.gif" + "url": gif } } diff --git a/commands/restart.js b/commands/restart.js new file mode 100644 index 0000000..9c6e695 --- /dev/null +++ b/commands/restart.js @@ -0,0 +1,18 @@ + +module.exports = { + name: 'restart', + description: '(Owner Only) Shuts down the bot.', + execute(client, message, args) { + const { token } = require('./config.json'); + if (message.author.id == 309427567004483586) { + message.channel.send(" Restarting...").then + client.destroy() + .catch(console.error) + .then + setTimeout(() => { client.login(token); }, 3000); + message.channel.send("<:NyabotSuccess:697211376740859914> Restart Successful") + console.log("All systems go") + } else { + message.channel.send("<:NyabotDenied:697145462565896194> Access Denied, You must be bot owner to execute this command."); + } + }} From 84283cef98e2a793a359f6ed3f4d56316fca3e74 Mon Sep 17 00:00:00 2001 From: Anthony M <47640864+IDeletedSystem64@users.noreply.github.com> Date: Tue, 26 Jan 2021 21:57:13 -0600 Subject: [PATCH 7/7] Add leskiss, update help --- commands/help.js | 2 +- commands/leskiss.js | 50 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+), 1 deletion(-) create mode 100644 commands/leskiss.js diff --git a/commands/help.js b/commands/help.js index c80a3b0..5d14125 100644 --- a/commands/help.js +++ b/commands/help.js @@ -26,7 +26,7 @@ const embed = { }, { "name": "Fun Commands", - "value": "`hug` `poke` `bonk` `slap` `pat` `kiss` `lick` `cuddle` `nom`" + "value": "`hug` `poke` `bonk` `slap` `pat` `kiss` `lick` `cuddle` `nom` `leskiss`" }, { "name": "**Need additional help or want to report an issue?**", diff --git a/commands/leskiss.js b/commands/leskiss.js new file mode 100644 index 0000000..d803185 --- /dev/null +++ b/commands/leskiss.js @@ -0,0 +1,50 @@ +const { Message } = require("discord.js"); +const { execute } = require("./info"); + +module.exports = { + + name: "leskiss", + description: "Lesbian kiss <:lesbian:803831629428686849>", + execute(client, message, args) { + const messageAuthor = message.messageAuthor + const taggedUser = message.mentions.users.first(); + // -------------------------------------- + const gifchoices = [ + "https://cdn.discordapp.com/attachments/793537380330111028/803833954750038066/gif5.gif", + "https://cdn.discordapp.com/attachments/793537380330111028/803833959338475550/gif12.gif", + "https://cdn.discordapp.com/attachments/793537380330111028/803834034135236628/gif9.gif", + "https://cdn.discordapp.com/attachments/793537380330111028/803834082034843658/gif18.gif", + "https://cdn.discordapp.com/attachments/793537380330111028/803834094063583302/gif8.gif", + "https://cdn.discordapp.com/attachments/793537380330111028/803834099869024296/gif10.gif", + "https://cdn.discordapp.com/attachments/793537380330111028/803834132035665950/gif16.gif", + "https://cdn.discordapp.com/attachments/793537380330111028/803834146413084713/gif13.gif", + "https://cdn.discordapp.com/attachments/793537380330111028/803834249425715210/gif22.gif", + "https://cdn.discordapp.com/attachments/793537380330111028/803834323898990592/gif11.gif", + "https://cdn.discordapp.com/attachments/793537380330111028/803834328848793650/gif14.gif", + "https://cdn.discordapp.com/attachments/793537380330111028/803834391226351676/gif17.gif", + "https://cdn.discordapp.com/attachments/793537380330111028/803834391226351676/gif17.gif", + "https://cdn.discordapp.com/attachments/793537380330111028/803834498714304522/gif15.gif", + "https://cdn.discordapp.com/attachments/793537380330111028/803834514269798460/gif19.gif" + + ]; + const index = Math.floor(Math.random() * (gifchoices.length - 1) + 1); + var gif = (gifchoices[index]); + // --------------------------------------- + + const embed = { + "title": ":heart: <:lesbian:803831629428686849> Kiss", + "description": "<@" + taggedUser + ">" + " You have been kissed by <@" + messageAuthor + ">! <:lesbian:803831629428686849>", + "color": 8311585, + "footer": { + "icon_url": "https://media.discordapp.net/attachments/549707869138714635/793524910172667964/Screenshot_26.png", + "text": "Made with ❤ in Illinois | Anitrox © IDeletedSystem64 2018-2021" + }, + "image": { + "url": gif + } + } + + + message.channel.send({ embed: embed }); + } +}