21 lines
1.2 KiB
Python
21 lines
1.2 KiB
Python
import discord
|
|
from utils.emoji import WIFI
|
|
from discord.ext import commands
|
|
|
|
class _server(commands.Cog):
|
|
def __init__(self, bot):
|
|
self.bot = bot
|
|
|
|
"""Server commands"""
|
|
|
|
def help_custom(self):
|
|
emoji = WIFI
|
|
label = "Server Commands"
|
|
description = "Show you Commands of Server"
|
|
return emoji, label, description
|
|
|
|
@commands.group()
|
|
async def __Setup__(self, ctx: commands.Context):
|
|
"""`setup` , `setup create <name>` , `setup delete <name>` , `setup list` , `setup staff` , `setup girl` , `setup friend` , `setup vip` , `setup guest` , `setup config` , `setup reset` , `staff` , `girl` , `friend` , `vip` , `guest`\n\n__**Auto Role**__\n`autorole bots add` , `autorole bots remove` , `autorole bots` , `autorole config` , `autorole humans add` , `autorole humans remove` , `autorole humans` , `autorole reset all` , `autorole reset bots` , `autorole reset humans` , `autorole`\n\n__**Autoresponder**__\n`autoresponder` , `autoresponder create` , `autoresponder delete` , `autoresponder edit` , `autoresponder config`\n\n__**Auto React Commands**__\n`react` , `react add` , `react remove` , `react list` , `react reset`"""
|
|
|