diff --git a/cogs/links.py b/cogs/links.py index 5c25284..226d4ad 100644 --- a/cogs/links.py +++ b/cogs/links.py @@ -36,27 +36,8 @@ class Links(Cog): @commands.command(hidden=True, aliases=["guides", "link"]) async def guide(self, ctx): - """Link to the guide(s)""" - await ctx.send( - "**Generic starter guides:**\n" - "Nintendo Homebrew's Guide: " - "<https://nh-server.github.io/switch-guide/>\n" - # "AtlasNX's Guide: " - # "<https://switch.homebrew.guide>\n" - # "Pegaswitch Guide: <https://switch.hacks.guide/> " - # "(outdated for anything but Pegaswitch/3.0.0)\n" - "\n**Specific guides:**\n" - "Manually Updating/Downgrading (with HOS): " - "<https://switch.homebrew.guide/usingcfw/manualupgrade>\n" - "Manually Repairing/Downgrading (without HOS): " - "<https://switch.homebrew.guide/usingcfw/manualchoiupgrade>\n" - "How to set up a Homebrew development environment: " - "<https://devkitpro.org/wiki/Getting_Started>\n" - "Getting full RAM in homebrew without NSPs: " - "as of Atmosphere 0.8.6, hold R while opening any game.\n" - "Check if a switch is vulnerable to RCM through serial: " - "<https://akdm.github.io/ssnc/checker/>" - ) + """Link to the guides""" + await ctx.send(config.links_guide_text) @commands.command() async def source(self, ctx): diff --git a/config_template.py b/config_template.py index fced247..219f099 100644 --- a/config_template.py +++ b/config_template.py @@ -173,6 +173,18 @@ list_files_channel = 0 # Channels that are lists that are controlled by the lists cog. list_channels = [] +# == For cogs.links == +links_guide_text = """**Generic starter guides:** +Nintendo Homebrew's Guide: <https://nh-server.github.io/switch-guide/> + +**Specific guides:** +Manually Updating/Downgrading (with HOS): <https://switch.homebrew.guide/usingcfw/manualupgrade> +Manually Repairing/Downgrading (without HOS): <https://switch.homebrew.guide/usingcfw/manualchoiupgrade> +How to set up a Homebrew development environment: <https://devkitpro.org/wiki/Getting_Started> +Getting full RAM in homebrew without NSPs: As of Atmosphere 0.8.6, hold R while opening any game. +Check if a switch is vulnerable to RCM through serial: <https://akdm.github.io/ssnc/checker/> +""" + # == For cogs.verification == # ReSwitched verification system is rather unique. # You might want to reimplement it.