mirror of
https://github.com/neoarz/Syntrel.git
synced 2025-12-25 11:40:12 +01:00
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:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user