2019-01-15 01:48:23 +00:00
|
|
|
import discord
|
|
|
|
import config
|
2018-12-23 13:48:15 +00:00
|
|
|
from discord.ext import commands
|
2019-02-28 22:10:30 +00:00
|
|
|
from discord.ext.commands import Cog
|
2018-12-23 13:48:15 +00:00
|
|
|
|
2019-06-03 22:14:19 +00:00
|
|
|
|
2019-02-28 22:10:30 +00:00
|
|
|
class Links(Cog):
|
2018-12-23 13:48:15 +00:00
|
|
|
"""
|
|
|
|
Commands for easily linking to projects.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, bot):
|
|
|
|
self.bot = bot
|
|
|
|
|
|
|
|
@commands.command(hidden=True)
|
|
|
|
async def pegaswitch(self, ctx):
|
2018-12-23 19:06:32 +00:00
|
|
|
"""Link to the Pegaswitch repo"""
|
2018-12-23 13:48:15 +00:00
|
|
|
await ctx.send("https://github.com/reswitched/pegaswitch")
|
|
|
|
|
2018-12-23 19:06:32 +00:00
|
|
|
@commands.command(hidden=True, aliases=["atmos"])
|
2018-12-23 22:11:01 +00:00
|
|
|
async def atmosphere(self, ctx):
|
2018-12-23 19:06:32 +00:00
|
|
|
"""Link to the Atmosphere repo"""
|
|
|
|
await ctx.send("https://github.com/atmosphere-nx/atmosphere")
|
2018-12-23 22:11:01 +00:00
|
|
|
|
2019-01-05 20:27:47 +00:00
|
|
|
@commands.command(hidden=True, aliases=["xyproblem"])
|
|
|
|
async def xy(self, ctx):
|
|
|
|
"""Link to the "What is the XY problem?" post from SE"""
|
2019-01-05 20:29:12 +00:00
|
|
|
await ctx.send("<https://meta.stackexchange.com/q/66377/285481>\n\n"
|
2019-01-05 20:27:47 +00:00
|
|
|
"TL;DR: It's asking about your attempted solution "
|
2019-01-05 20:29:12 +00:00
|
|
|
"rather than your actual problem.\n"
|
|
|
|
"It's perfectly okay to want to learn about a "
|
2019-01-05 20:27:47 +00:00
|
|
|
"solution, but please be clear about your intentions "
|
2019-01-05 20:29:12 +00:00
|
|
|
"if you're not actually trying to solve a problem.")
|
2019-01-05 20:27:47 +00:00
|
|
|
|
2019-01-08 08:30:25 +00:00
|
|
|
@commands.command(hidden=True, aliases=["guides", "link"])
|
2018-12-23 19:06:32 +00:00
|
|
|
async def guide(self, ctx):
|
|
|
|
"""Link to the guide(s)"""
|
2019-01-08 08:32:00 +00:00
|
|
|
await ctx.send("**Generic starter guides:**\n"
|
2019-01-08 08:30:25 +00:00
|
|
|
"Nintendo Homebrew's Guide: "
|
2019-01-07 08:49:19 +00:00
|
|
|
"<https://nh-server.github.io/switch-guide/>\n"
|
2020-03-19 18:33:52 +00:00
|
|
|
# "AtlasNX's Guide: "
|
|
|
|
# "<https://switch.homebrew.guide>\n"
|
2019-04-24 13:35:42 +00:00
|
|
|
# "Pegaswitch Guide: <https://switch.hacks.guide/> "
|
|
|
|
# "(outdated for anything but Pegaswitch/3.0.0)\n"
|
|
|
|
"\n**Specific guides:**\n"
|
2019-02-02 20:52:22 +00:00
|
|
|
"Manually Updating/Downgrading (with HOS): "
|
2019-06-22 17:25:27 +00:00
|
|
|
"<https://switch.homebrew.guide/usingcfw/manualupgrade>\n"
|
2019-02-02 20:52:22 +00:00
|
|
|
"Manually Repairing/Downgrading (without HOS): "
|
2019-06-22 17:25:27 +00:00
|
|
|
"<https://switch.homebrew.guide/usingcfw/manualchoiupgrade>\n"
|
2020-03-19 19:19:38 +00:00
|
|
|
"How to set up a Homebrew development environment: "
|
|
|
|
"<https://switchbrew.org/wiki/Setting_up_Development_Environment>\n"
|
2019-04-11 04:50:41 +00:00
|
|
|
"Getting full RAM in homebrew without NSPs: "
|
2019-06-03 22:14:19 +00:00
|
|
|
"as of Atmosphere 0.8.6, hold R while opening any game.\n"
|
|
|
|
"Check if a switch is vulnerable to RCM through serial: "
|
2019-06-03 22:14:54 +00:00
|
|
|
"<https://akdm.github.io/ssnc/checker/>")
|
2018-12-23 22:11:01 +00:00
|
|
|
|
2019-01-15 01:48:23 +00:00
|
|
|
@commands.command()
|
|
|
|
async def source(self, ctx):
|
|
|
|
"""Gives link to source code."""
|
|
|
|
await ctx.send(f"You can find my source at {config.source_url}. "
|
|
|
|
"Serious PRs and issues welcome!")
|
|
|
|
|
|
|
|
@commands.command()
|
|
|
|
async def rules(self, ctx, *, targetuser: discord.Member = None):
|
|
|
|
"""Post a link to the Rules"""
|
|
|
|
if not targetuser:
|
|
|
|
targetuser = ctx.author
|
|
|
|
await ctx.send(f"{targetuser.mention}: A link to the rules "
|
|
|
|
f"can be found here: {config.rules_url}")
|
|
|
|
|
2019-02-18 16:17:46 +00:00
|
|
|
@commands.command()
|
|
|
|
async def community(self, ctx, *, targetuser: discord.Member = None):
|
|
|
|
"""Post a link to the community section of the rules"""
|
|
|
|
if not targetuser:
|
|
|
|
targetuser = ctx.author
|
|
|
|
await ctx.send(f"{targetuser.mention}: "
|
2019-02-18 16:18:57 +00:00
|
|
|
"https://reswitched.team/discord/#member-roles-breakdown"
|
2019-02-18 16:17:46 +00:00
|
|
|
"\n\n"
|
|
|
|
"Community role allows access to the set of channels "
|
|
|
|
"on the community category (#off-topic, "
|
|
|
|
"#homebrew-development, #switch-hacking-general etc)."
|
|
|
|
"\n\n"
|
2019-02-18 16:19:43 +00:00
|
|
|
"What you need to get the role is to be around, "
|
2019-02-18 16:17:46 +00:00
|
|
|
"be helpful and nice to people and "
|
|
|
|
"show an understanding of rules.")
|
|
|
|
|
2018-12-23 13:48:15 +00:00
|
|
|
|
|
|
|
def setup(bot):
|
|
|
|
bot.add_cog(Links(bot))
|