前提・実現したいこと
私は今、Discordでイベントを開催していたりするのですが、そのイベントの際にチャンネルを多数使用するので消すのが面倒です。そのためチャンネルを全てbotに削除させようとしたのですが、チャンネルIDを全取得する方法がわかりません
(他の人のサーバーでも使うかもしれないので、名前やIDから取得するようにしています)
発生している問題・エラーメッセージ
無し
該当のソースコード
Python
1 if devids.count(str(message.author.id) + "\n") == 1: 2 if message.content.startswith('ab?lolpet') == True: 3 replacedMsg = message.content.split() 4 if replacedMsg.count("name") >= 1: 5 try: 6 replacedMsg = message.content.replace("ab?lolpet ","") 7 replacedMsg = replacedMsg.replace("name ","") 8 if replacedMsg == "": return await message.channel.send("ERROR:Not inputed") 9 guild = discord.utils.get(client.guilds, name=replacedMsg) 10 return 11 except: 12 return await message.channel.send("ERROR") 13 elif replacedMsg.count("id") >= 1: 14 try: 15 replacedMsg = message.content.replace("ab?lolpet ","") 16 replacedMsg = replacedMsg.replace("id ","") 17 if isint(replacedMsg): 18 guildTemp = await client.fetch_guild(int(replacedMsg)) 19 guild = discord.utils.get(client.guilds, name=guildTemp) 20 print(guild) 21 return 22 else: 23 return await message.channel.send("ERROR:Not Int") 24 except: 25 return await message.channel.send("ERROR") 26 else: 27 return await message.channel.send("ERROR:Invailed Method") 28 return
試したこと
https://qiita.com/sizumita/items/b37e74fca41d98077a18 これを見てやりましたが工夫しても全取得できなかった(ほかの文献も見つからなかった)
補足情報(FW/ツールのバージョンなど)
Replit稼働
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。