繁体   English   中英

如何在 discord.py 中一次运行多个功能?

[英]How do I run multiple functions at a time in discord.py?

在我的机器人中,我有一个 function,它每秒一次始终向字典中的值添加一次以表示“付费员工”。 我还有一个@client.command function,它显示了发送命令时字典的键和值。 虽然“付费” function (总是)打开,但查找 function 不起作用,on_message ZC1C425268E68385D1AB5074C17A94F1 起作用。 如何使机器人并行检测@client.command function?

import discord
from discord.ext import commands
from discord.ext import tasks
import asyncio

client = commands.Bot(command_prefix='/')

payroll = []
data = {}


# /start will start operations and manage payroll for everyone on the server
# will make it on_ready
@client.event
async def on_ready():
    global data
    server = client.get_guild(670006903815929889)
    # starts balance for everyone on the server at the time of the command and adds them to the payroll
    for person in server.members:
        person = str(person)
        payroll.append(person)
        data[person] = int(0)
    print(data)

    await asyncio.sleep(1)

    # pays everyone at a steady BASE rate
    while True:
        for person in payroll:
            data[person] += 10
        print(data)
        await asyncio.sleep(60)


# on message
@client.event
async def on_message(ctx):
    global data
    balance = int(data[str(ctx.author)])
    data[str(ctx.author)] -= 5

    if balance <= 25 and ctx.author.id != 734119994761150585:
        await ctx.channel.send('Be careful {author}! Your balance is ${balance}.')

    if balance <= 0 and ctx.author.id != 734119994761150585:
        # delete message
        await ctx.channel.send('Oops! {author}, you have run out of money. As a consequence, you will be deducted $15.')
        data[str(ctx.author)] -= 15

    if message.startswith("/dm"):
        await message.author.send('Hello World!')

# look-up stats
@client.command()
async def dm(message):
    await message.author.send('stats go here')


client.run("token")

命令 function 将不起作用,因为您没有处理该命令。 为此,请在您的消息 function 中添加小行:

@client.event()
async def on_message(message):
    #YOUR CODE HERE
    await client.process_commands(message)

对于持续运行 function 或一次运行多个:您可以在 function 中添加任务,该任务将持续运行或以给定的时间差运行。 深入的文档可以在 discord.py 文档中找到。

代码片段:

from discord.ext import tasks
@tasks.loop(seconds = 5)
async def test_function():
    #YOUR CODE 
    pass 

@client.event
async def on_ready():
    #TASK RUN
    test_function.start()

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM