如何在 discord py 中创建默认命令?

时间:2021-05-24 13:35:00

标签: python discord discord.py

我想在同一个命令中有两个命令,我想要一个默认的“presencas”,另一个参数是“presencascanal”。

这是我的代码:

# Command to know how much people are in general
@bot.command(name='presencas')
@commands.has_role(admin_id)
async def on_message(ctx):
    await ctx.send('Presenças no servidor no dia: ' + str(datetime.now().date()) + ' às ' + time.strftime(r"%H:%M") + 'H')
    with open('presencas_' + str(datetime.now().date()) + '.csv', 'w', newline='') as file:

        writer = csv.writer(file, delimiter=':', quoting=csv.QUOTE_NONE)
        writer.writerow(['Nome, tag, timestamp'])

        for user in ctx.guild.members:
            writer = csv.writer(file, delimiter='"', quoting=csv.QUOTE_NONE)
            if user.status != discord.Status.offline:
                writer.writerow([user.name + ', ' + '#'+user.discriminator + ', ' +str(datetime.now().date()) + ' ' + time.strftime(r"%H:%M") + 'H'])

    await ctx.send(file=discord.File(r'presencas_' + str(datetime.now().date()) + '.csv'))


#Command to know how much people are a specific channel
@bot.command()
@commands.has_role(admin_id)
async def presencascanal(ctx, canal):

    channel = bot.get_channel(int(canal))  # Canal de onde a lista vem

    members = channel.members  # Encontra os membros que estão no canal

    await ctx.send('Presenças no canal ' + channel.name + ' no dia ' + str(datetime.now().date()) + ' às ' + time.strftime(r"%H:%M") + 'H')
    with open('presencas_canal_' + channel.name + '_' + str(datetime.now().date()) + '.csv', 'w', newline='') as file:

        writer = csv.writer(file, delimiter=':', quoting=csv.QUOTE_NONE)
        writer.writerow(['Nome, tag, timestamp'])

        for user in members:
            writer = csv.writer(file, delimiter='"', quoting=csv.QUOTE_NONE)
            if user.status != discord.Status.offline:
                writer.writerow([user.name + ', ' + '#'+user.discriminator + ', ' +str(datetime.now().date()) + ' ' + time.strftime(r"%H:%M") + 'H'])

    await ctx.send(file=discord.File(r'presencas_canal_' + channel.name + '_' + str(datetime.now().date()) + '.csv'))

2 个答案:

答案 0 :(得分:4)

根据 Vajra Budiono 回答下的评论,我认为您的意思是:

@bot.command(aliases=['cmd'])
async def command(ctx, parameter = None):
    if arg == None:
        # the default command
    else:
        # command when you pass parameter

parameter = None 表示如果你调用一个没有参数的命令,默认情况下这个参数会有 None 值。

答案 1 :(得分:2)

我想你想要一个命令函数用不同的命令执行,我希望我做对了,有一个参数你可以在命令装饰器中传递,它被称为别名,这是你传递它的方式:

@bot.command(aliases=['cmd'])
async def command(ctx):
    ctx.channel.send('test')

现在你有一个默认的“command”,你也可以用“cmd”来激活这个功能,你也可以在别名列表中添加更多的别名

这是一个示例输出,前缀为“!”:

user: !command
bot: test
user: !cmd
bot: test

希望我能帮上忙,如果你想问什么就在这个答案下给我评论