feat(melonx): new melonx commands

Introduced new commands to the MeloNX cog: mods, gamecrash, requirements, error, and 26 (iOS 26), each with their own handler and help embed. Updated the README and melonx.py select menu to reflect the new commands. These additions provide users with troubleshooting and informational commands for common MeloNX issues and topics.
This commit is contained in:
neoarz
2025-10-04 08:54:48 -04:00
parent 023ec85640
commit ad1e117e75
8 changed files with 330 additions and 1 deletions

View File

@@ -13,6 +13,31 @@ class MelonxSelect(discord.ui.Select):
value="transfer",
description="How to transfer save files from other emulators or platforms",
),
discord.SelectOption(
label="Mods",
value="mods",
description="How to install mods within MeloNX (Limited Support)",
),
discord.SelectOption(
label="Game Crash",
value="gamecrash",
description="Why does my game crash?",
),
discord.SelectOption(
label="Requirements",
value="requirements",
description="What does MeloNX require?",
),
discord.SelectOption(
label="Error",
value="error",
description="What does this error message mean?",
),
discord.SelectOption(
label="iOS 26",
value="26",
description="How can I run MeloNX on iOS 26?",
),
]
super().__init__(placeholder="Choose a MeloNX command...", options=options)