1
0
Fork 0
mirror of https://github.com/myned/modufur.git synced 2024-11-02 13:12:40 +00:00
modufur/src/main/cogs/info.py

40 lines
1.1 KiB
Python
Raw Normal View History

2017-09-24 15:05:28 +00:00
import asyncio
2017-10-13 02:26:22 +00:00
import traceback as tb
2017-09-24 15:05:28 +00:00
import discord
from discord.ext import commands
2017-10-13 02:26:22 +00:00
2017-09-24 15:05:28 +00:00
from misc import exceptions as exc
class Info:
def __init__(self, bot):
self.bot = bot
2017-10-13 02:26:22 +00:00
@commands.command(hidden=True)
async def hi(ctx):
user = ctx.message.author
hello = 'Hewwo, {}.'.format(user.mention)
if user.id == checks.owner_id:
hello += '.. ***Master.*** uwu'
elif user.guild_permissions.administrator:
hello = '{} **Admin** {}'.format(hello[:7], hello[7:])
elif user.guild_permissions.ban_members:
hello = '{} **Mod** {}'.format(hello[:7], hello[7:])
await ctx.send(hello)
2017-09-24 15:05:28 +00:00
@commands.group(name='info', aliases=['i'])
async def info(self, ctx):
if invoked_subcommand is None:
await ctx.send('<embed>BOT INFO</embed>')
@info.command(aliases=['g', 'server', 's'], brief='Provides info about a guild', hidden=True)
async def guild(self, ctx):
2017-10-13 02:26:22 +00:00
pass
2017-09-24 15:05:28 +00:00
@info.command(aliases=['u', 'member', 'm'], brief='Provides info about a user', hidden=True)
async def user(self, ctx):
2017-10-13 02:26:22 +00:00
pass