Example #1
0
async def serverBanner(ctx):
    notify = Notify(ctx=ctx, title='Server Banner')
    notify.prepair()
    notify.image(
        title=f"🖼️ Here's {ctx.guild.name} banner",
        image=f"{ctx.guild.banner_url.BASE + ctx.guild.banner_url._url}")
Example #2
0
async def avatar(ctx, Member: discord.Member = None):
    notify = Notify(ctx=ctx, title='Avatar')
    notify.prepair()
    notify.image(title=f"🖼️ Here's {Member.display_name} profile picture",
                 image=f"{Member.avatar_url.BASE + Member.avatar_url._url}")
Example #3
0
async def serverLogo(ctx):
    notify = Notify(ctx=ctx, title='Server Icon')
    notify.prepair()
    notify.image(title=f"🖼️ Here's {ctx.guild.name} logo",
                 image=f"{ctx.guild.icon_url.BASE + ctx.guild.icon_url._url}")