前提・実現したいこと
全体的に作っていたら
エラーメッセージは出てないです
該当のソースコード
pythonです
1import discord 2import logging 3import abc 4import requests 5from discord.ext import tasks, commands 6import aiohttp 7from pprint import pprint 8import youtube_dl 9import asyncio 10from datetime import datetime 11import json 12 13discord_intents = discord.Intents.all() 14 15 16bot = commands.Bot( 17 command_prefix=commands.when_mentioned_or("/") 18) 19 20 21 22 23 24 25 26 27 28@bot.command() 29async def on_ready(): pass 30async def my_message(message): pass 31async def on_message(message): pass 32 33@bot.command() 34async def foo(ctx, arg): 35 await ctx.send(arg) 36 37@bot.command() 38@commands.has_role('Mastar') 39async def purge(ctx, target:int): 40 channel = ctx.message.channel 41 deleted = await channel.purge(limit=target) 42 await ctx.send(f"{len(deleted)}メッセージを削除しました") 43 44 45 46 47問題はここが表示や実行されません 48ーーーーーーーーーーーーーーーーーーーーー 49class LibeClient(discord.Client): 50 async def on_ready(self): 51 print('Logged on as {0}!'.format(self.user)) 52 print('Logged in as') 53 print(self.user.name) 54 print(self.user.id) 55 print('ログインしました。') 56 print('------------') 57ーーーーーーーーーーーーーーーーーーーーーーーーーー 58 59class LibeClient(discord.Client): 60 def __init__(self, *args, **kwargs): 61 super().__init__(*args, **kwargs) 62 63 self.counter = 0 64 65 self.my_background_task.start() 66 67class LibeCog(commands.Cog): 68 def __init__(self, bot): 69 self.index = 0 70 self.bot = bot 71 self.printer.start() 72 73 def cog_unload(self): 74 self.printer.cancel() 75 76 @tasks.loop(seconds=5.0) 77 async def printer(self): 78 print(self.index) 79 self.index += 1 80 81 @printer.before_loop 82 async def before_printer(self): 83 print('waiting...') 84 await self.bot.wait_until_ready() 85 86 87 88class LibeClient(discord.Client): 89 async def on_message(self, message): 90 91 print('メッセージが来たよ→ {0.author}: {0.content}'.format(message)) 92 93 if message.content.startswith('/id'): 94 await message.channel.send('PaL_Libe') 95 96 if message.content.startswith('logout'): 97 await message.channel.send('ログアウトします。') 98 await client.logout() 99 100 if message.content == '!bot': 101 await message.channel.send('```BOT discordバージョン起動中です。```') 102 103 if message.content.startswith('Hi'): 104 await message.channel.send(message.author.mention + 'hello') 105 106 107 108 109 110 111 112 113 114 115 116 117 118client = LibeClient() 119client.run('TOKEN')
試したこと
調べましたが無理でした
補足情報(FW/ツールのバージョンなど)
python 3.8.12
回答1件
あなたの回答
tips
プレビュー