齿轮必须从齿轮派生

齿轮必须从齿轮派生

本文介绍了discord.py重写:TypeError:齿轮必须从齿轮派生的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

随着我的机器人越来越大,我正在尝试实现齿轮,但是遇到了一个问题.我已经设置好了我的整个代码,但由于某些奇怪的原因,我不断收到此错误:

As my bot is getting bigger, I'm trying to implement cogs, however I have ran across a problem. I have my whole code set up and ready, but for some weird reason I keep getting this error:

    Traceback (most recent call last):
  File "C:\Users\Lauras\Desktop\Akagi Bot\main.py", line 107, in <module>
    bot.add_cog("cogs.fun")
  File "C:\Users\Lauras\AppData\Local\Programs\Python\Python36\lib\site-packages\discord\ext\commands\bot.py", line 477, in add_cog
    raise TypeError('cogs must derive from Cog')
TypeError: cogs must derive from Cog

我在main.py上的代码如下:

My code on main.py looks like this:

   import discord
    import asyncio
    import typing
    import random
    import json
    import oauth
    from discord.ext import commands

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

@bot.event
async def on_ready():
    await bot.change_presence(activity=discord.Activity(name='with Kaga :3',type=0))
    print (discord.__version__)
    print(f"{bot.user.name} - {bot.user.id}")
    print ('Akagi is ready to serve the Commander :3 !')

    bot.add_cog("cogs.fun")
    bot.run(oauth.bot_token)

有趣"的齿轮如下:

import discord
from discord.ext import commands

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

class FunCog:
    def __init__(self, bot):
        self.bot = bot

    @commands.command()
    async def hug(self, ctx):
        await ctx.send('has been hugged by', file=discord.File('iloveyou.gif'))
        pass


def setup(bot: commands.Bot):
    bot.add_cog(FunCog(bot))

可能是什么问题?我也在使用discord.py重写.谢谢!

What could be the problem? I'm also using discord.py rewrite. Thanks !

推荐答案

我建议签出 https://discordpy.readthedocs.io/en/latest/ext/commands/cogs.html 这将帮助您更好地了解齿轮.

I recommend checking out https://discordpy.readthedocs.io/en/latest/ext/commands/cogs.htmlThis will help you get a better understanding of Cogs.

首先,您需要将 bot.add_cog("cogs.fun")更改为 bot.load_extension("cogs.fun")

Firstly, you need to change bot.add_cog("cogs.fun") to bot.load_extension("cogs.fun")

这不是必需的,但是您无需再次定义 bot .将 def setup(bot:commands.Bot):更改为 def setup(bot):

This isn't necessary but you don't need to define bot again.Change def setup(bot: commands.Bot): to def setup(bot):

您还需要将 FunCog类:更改为 FunCog类(commands.Cog):

当重写版本出现新更新时,我建议保持最新.这是一个工作的齿轮文件的示例..希望这对您有所帮助!最多

I recommend staying up to date with changes when new updates come out for the rewrite version. Here is a quick look into an example of a working cog file..Hope this helped! Max.

这篇关于discord.py重写:TypeError:齿轮必须从齿轮派生的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-06 23:14