コマンド[.test]を実行すると指定したテキストチャンネルへメッセージを送信するbotを作成しています。
.testを実行した際
TypeError: get_channel() missing 1 required positional argument: 'id'
といったエラーが起きてしまいます。
get_channel()の引数はchannnel_id一つで良いはずで、[チャンネルID]もテキストチャンネルを右クリックしてIDをコピーして持ってきたものなので原因がわかりません。
main
1from discord.ext import commands 2 3import traceback 4INITIAL_EXTENSIONS = ['cogs.cogs'] 5 6TOKEN = '[トークン]' 7 8class MyBot(commands.Bot): 9 10 def __init__(self, command_prefix): 11 super().__init__(command_prefix) 12 13 for cog in INITIAL_EXTENSIONS: 14 try: 15 self.load_extension(cog) 16 except Exception: 17 traceback.print_exc() 18 19 20 async def on_ready(self): 21 print('-----') 22 print(self.user.name) 23 print(self.user.id) 24 print('-----') 25 26if __name__ == '__main__': 27 bot = MyBot(command_prefix='.') 28 bot.run(TOKEN)
cogs
1from discord.ext import commands 2class mycog(commands.Cog): 3 def __init__(self, bot): 4 self.bot = bot 5 6 @commands.command() 7 async def ping(self, ctx): 8 await ctx.send('pong!') 9 10 @commands.command() 11 async def test(self, ctx): 12 channel = MyBot.get_channel([チャンネルID]) 13 await channel.send('test') 14 15def setup(bot): 16 bot.add_cog(mycog(bot))
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/07/07 06:43