SakuraProject / sakura-bot

SakuraBotです。
MIT License
9 stars 3 forks source link

findnewbot #59

Closed yaakiyu closed 2 years ago

yaakiyu commented 2 years ago

時間がないので一旦メモ。

import discord
import random

@_bot.command()
async def findnewbot(ctx):
    bots = [u for u in _bot.users if u.bot and u not in ctx.guild.members]
    bot = random.choice(bots)
    await ctx.send(f"{bot} choiced from {len(bots)} bots.", embed=discord.Embed(
        title="Bot Invite Link (permission 0)",
        description=discord.utils.oauth_url(bot.id, guild=ctx.guild)
    ))
yaakiyu commented 2 years ago

実装した。