discord py hack

Solutions on MaxInterview for discord py hack by the best coders in the world

showing results for - "discord py hack"
Romina
01 Aug 2017
1# a weird hack command (discord).
2
3@commands.command()
4    async def hack(self, ctx):
5     await ctx.send("Hacking User....", delete_after=3)
6     await asyncio.sleep(3)
7     await ctx.send("Getting Data....", delete_after=2)
8     await asyncio.sleep(2)
9     await ctx.send("Setting up a EA account :lmao:", delete_after=3)
10     await asyncio.sleep(3)
11     await ctx.send("Hacking the EA account.....", delete_after=3)
12     await asyncio.sleep(3)
13     await ctx.send("100% *legit* hack succeed!") # Ik this code looks very cursed
14      
15