私には難しいかもしれませんが、stackoverflow powerを信じています
ボットのステータスを再生から監視に変更したい。私はこれを試しますが、それでもステータスを再生しています。
コード:
import discord
from discord.ext.commands import Bot
from discord.ext import commands
import asyncio
PREFIX = ("$")
bot = commands.Bot(command_prefix=PREFIX, description='Hi')
@bot.event
async def on_ready():
activity = discord.Game(name="Netflix", type=3)
await bot.change_presence(status=discord.Status.idle, activity=activity)
print("Bot is ready!")
bot.run('TOKEN')
# Setting `Playing ` status
await bot.change_presence(activity=discord.Game(name="a game"))
# Setting `Streaming ` status
await bot.change_presence(activity=discord.Streaming(name="My Stream", url=my_Twitch_url))
# Setting `Listening ` status
await bot.change_presence(activity=discord.Activity(type=discord.ActivityType.listening, name="a song"))
# Setting `Watching ` status
await bot.change_presence(activity=discord.Activity(type=discord.ActivityType.watching, name="a movie"))
この問題 に従って、Client.change_presenceのゲームキーワード引数はアクティビティに名前が変更されたため、コードは次のようになります
activity = discord.Game(name="Just")
await client.change_presence(status=discord.Status.idle, activity=activity)
ボットは引き続きPlaying X
またはStreaming Y
ただし、[〜#〜]しない[〜#〜]カスタムステータス