Skip to content
This repository was archived by the owner on Feb 7, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions cogs/fun.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,5 +73,22 @@ async def owoify(self, ctx: ApplicationContext, text: str):
text += random.choice([" uwu", " owo", " UwU", " OwO", " XDDD", " :D", " ;-;", " <3", " ^-^", " >-<"])
await ctx.respond(text)

@commands.slash_command(
name="hackertext",
description="Turn any text into m4st3r h4xx0r text."
)
@option(name="text", description="The text that you want to convert", type=str)
async def hackertext(self, ctx: ApplicationContext, text: str):
"""Turn any text into m4st3r h4xx0r text."""
text = text.lower()
text = text.replace("a", "4")
text = text.replace("l", "1")
text = text.replace("e", "3")
text = text.replace("o", "0")
text = text.replace("c", "x")
text = text.replace("u", "x")
text = text.replace("t", "7")
await ctx.respond(text)

# Initialization
def setup(bot): bot.add_cog(Fun(bot))