Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

add rtfm and domservice tags #3

Merged
merged 1 commit into from
Apr 20, 2024
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
30 changes: 30 additions & 0 deletions _orangcbot/extensions/tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,17 @@
Maintainers shouldn't be spending all their time merging PRs and neither should you spend all your time waiting for it.
"""

rtfm = """
Please read the damned docs. It exists for a reason.\n
Our maintainers and helpers are volunteers. It's not our job to answer stupid questions already answered in the documentation or FAQ.\n
- [is-a.dev documentation](https://is-a.dev/docs)\n
- <#991779321758896258>\n
"""
domservice = """
is-a.dev can give you support with your ***domain***, and that's provided you've read the [documentation](https://is-a.dev/docs).\n
We do __not__ provide support for anything else. We aren't an HTML boot camp, it's not our job to teach you JSON. And we don't provide support for Github or DNS questions either.
"""


class Tags(commands.Cog):
def __init__(self, bot):
Expand Down Expand Up @@ -44,7 +55,26 @@ async def waittime(self, ctx):
color=nextcord.Colour.red(),
)
await ctx.send(embed=embed)

@commands.command()
async def rtfm(self, ctx):
if True:
embed = nextcord.Embed(
title="Read The Fucking Manual",
description=rtfm,
color=nextcord.Colour.red(),
)
await ctx.send(embed=embed)

@commands.command()
async def domservice(self, ctx):
if True:
embed = nextcord.Embed(
title="We're a domain service, and we provide support for domains",
description=domservice,
color=nextcord.Colour.red(),
)
await ctx.send(embed=embed)

def setup(bot):
bot.add_cog(Tags(bot))
Loading