Skip to content

Commit af6a196

Browse files
authored
add gifs to hack command
1 parent 5bcc123 commit af6a196

1 file changed

Lines changed: 51 additions & 22 deletions

File tree

commands/fun.py

Lines changed: 51 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -38,40 +38,69 @@ async def fun_pfp(self, interaction: discord.Interaction, user: discord.Member):
3838
@app_commands.describe(user="The desired user")
3939
async def fun_hack(self, interaction: discord.Interaction, user: discord.Member):
4040
passwords = ["12345", "iloveyou", "qwerty", "hello", "password", "nothing", "john", "cat"]
41+
gifs = ["https://c.tenor.com/bhbciND-xRAAAAAC/tenor.gif",
42+
"https://c.tenor.com/IVOOvhdE4UMAAAAC/tenor.gif",
43+
"https://c.tenor.com/PhnZUt2djmkAAAAC/tenor.gif",
44+
"https://c.tenor.com/7ErCv53FBzIAAAAC/tenor.gif",
45+
"https://c.tenor.com/VrzXhtoSwcsAAAAC/tenor.gif",
46+
"https://c.tenor.com/19Ev9JAezGEAAAAC/tenor.gif",
47+
"https://c.tenor.com/5Xw3hRmmtsoAAAAC/tenor.gif"]
4148
token = requests.get("https://some-random-api.com/others/bottoken").json()['token']
49+
4250
embed = discord.Embed(title=f":space_invader: [1/8] Hacking {user.name}",
4351
description="Finding discord login...", colour=discord.Colour(0x00ff00))
52+
embed.set_image(url=random.choice(gifs))
4453
await interaction.response.send_message(embed=embed)
4554
message = await interaction.original_response()
4655
await asyncio.sleep(4)
47-
await message.edit(embed=discord.Embed(title=f":space_invader: [2/8] Hacking {user.name}",
48-
colour=discord.Colour(0x00ff00),
49-
description=f"Login credentials found!\n\nEmail: `{user.name}@gmail.com`"
50-
f"\nPassword: `{random.choice(passwords)}`\nToken: `{token}`"))
56+
57+
embed = discord.Embed(title=f":space_invader: [2/8] Hacking {user.name}", colour=discord.Colour(0x00ff00),
58+
description=f"Login credentials found!\n\nEmail: `{user.name}@gmail.com`"
59+
f"\nPassword: `{random.choice(passwords)}`\nToken: `{token}`")
60+
embed.set_image(url=random.choice(gifs))
61+
await message.edit(embed=embed)
5162
await asyncio.sleep(4)
52-
await message.edit(embed=discord.Embed(title=f":space_invader: [3/8] Hacking {user.name}",
53-
colour=discord.Colour(0x00ff00),
54-
description=f"Injecting `RedLineStealer_v13.37.exe`..."))
63+
64+
embed = discord.Embed(title=f":space_invader: [3/8] Hacking {user.name}",
65+
colour=discord.Colour(0x00ff00),
66+
description=f"Injecting `RedLineStealer_v13.37.exe`...")
67+
embed.set_image(url=random.choice(gifs))
68+
await message.edit(embed=embed)
5569
await asyncio.sleep(4)
56-
await message.edit(embed=discord.Embed(title=f":space_invader: [4/8] Hacking {user.name}",
57-
colour=discord.Colour(0x00ff00),
58-
description=f"Accounts found:\n- Fortnite\n- Roblox\n- Minecraft\n\nAttempting to steal..."))
70+
71+
embed = discord.Embed(title=f":space_invader: [4/8] Hacking {user.name}",
72+
colour=discord.Colour(0x00ff00),
73+
description=f"Accounts found:\n- Fortnite\n- Roblox\n- Minecraft\n\nAttempting to steal...")
74+
embed.set_image(url=random.choice(gifs))
75+
await message.edit(embed=embed)
5976
await asyncio.sleep(4)
60-
await message.edit(embed=discord.Embed(title=f":space_invader: [5/8] Hacking {user.name}",
61-
colour=discord.Colour(0x00ff00),
62-
description=f"Stolen:\n- 1870 V-Bucks\n- 69 Robux"))
77+
78+
embed = discord.Embed(title=f":space_invader: [5/8] Hacking {user.name}",
79+
colour=discord.Colour(0x00ff00),
80+
description=f"Stolen:\n- 1870 V-Bucks\n- 69 Robux")
81+
embed.set_image(url=random.choice(gifs))
82+
await message.edit(embed=embed)
6383
await asyncio.sleep(4)
64-
await message.edit(embed=discord.Embed(title=f":space_invader: [6/8] Hacking {user.name}",
65-
colour=discord.Colour(0x00ff00),
66-
description=f"IP address: `187.0.0.69`"))
84+
85+
embed = discord.Embed(title=f":space_invader: [6/8] Hacking {user.name}",
86+
colour=discord.Colour(0x00ff00),
87+
description=f"IP address: `187.0.0.69`")
88+
embed.set_image(url=random.choice(gifs))
89+
await message.edit(embed=embed)
6790
await asyncio.sleep(4)
68-
await message.edit(embed=discord.Embed(title=f":space_invader: [7/8] Hacking {user.name}",
69-
colour=discord.Colour(0x00ff00),
70-
description=f"Selling data to the government..."))
91+
92+
embed = discord.Embed(title=f":space_invader: [7/8] Hacking {user.name}",
93+
colour=discord.Colour(0x00ff00),
94+
description=f"Selling data to the government...")
95+
embed.set_image(url=random.choice(gifs))
96+
await message.edit(embed=embed)
7197
await asyncio.sleep(4)
72-
await message.edit(embed=discord.Embed(title=f":space_invader: Finished hacking {user.name}",
73-
colour=discord.Colour(0x00ff00),
74-
description=f"Cleaned traces and self-destructed!"))
98+
99+
embed = discord.Embed(title=f":space_invader: Finished hacking {user.name}",
100+
colour=discord.Colour(0x00ff00),
101+
description=f"Cleaned traces and self-destructed!")
102+
embed.set_image(url=random.choice(gifs))
103+
await message.edit(embed=embed)
75104

76105
@app_commands.command(name="8ball", description="Ask the 8ball a question")
77106
@app_commands.describe(question="The question you want to ask")

0 commit comments

Comments
 (0)