齿轮中的Discord @ bot.event

时间:2019-03-12 09:04:14

标签: python-3.x discord.py

我尝试使用 Mental 中的the example进行齿轮事件,但我迷路了。我无法弄清楚如何在main.py文件中触发事件。 bot.extra_events去哪里了?

这是我的脚本:

from discord.ext import commands
import discord
import sys, traceback

startup_extensions = ["cog"]

bot = commands.Bot(command_prefix='?')


@bot.event
async def on_ready():  

    if __name__ == '__main__':
            for extension in startup_extensions:
                try:
                    bot.load_extension(extension)
                except Exception as e:
                    print(f'Failed to load extension {extension}.', file=sys.stderr)
                    traceback.print_exc()
    print(f'Successfully logged in and booted...!')





bot.run("TOKEN")

我正在使用v0.16.12。 谢谢,这是我的第一个python项目

0 个答案:

没有答案