HypeSquadHouse
#680
-
How can i get a HypeSquadHouse object to change my hype squad badge ? |
Beta Was this translation helpful? Give feedback.
Answered by
Sitois
Apr 8, 2024
Replies: 1 comment
-
oh @commands.command()
async def hype(self, ctx):
if ctx.message.content == "balance":
await self.bot.user.edit(house=discord.HypeSquadHouse.balance)
await ctx.message.edit(f"🪄 HypeSquad changed to '{ctx.message.content.split()[1]}'")
await asyncio.sleep(15)
await ctx.message.delete()
elif ctx.message.content == "bravery":
await self.bot.user.edit(house=discord.HypeSquadHouse.bravery)
await ctx.message.edit(f"🪄 HypeSquad CHANGED TO '{ctx.message.content.split()[1]}'")
await asyncio.sleep(config_selfbot.deltime)
await ctx.message.delete()
elif ctx.message.content == "brilliance":
await self.bot.user.edit(house=discord.HypeSquadHouse.brilliance)
await ctx.message.edit(f"🪄 HypeSquad changed to '{ctx.message.content.split()[1]}'")
await asyncio.sleep(15)
await ctx.message.delete()
else:
await ctx.message.edit("incorrect house")
await asyncio.sleep(15)
await ctx.message.delete() |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Sitois
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
oh