web-dev-qa-db-ja.com

discord.pyボットのステータスを変更する方法

私には難しいかもしれませんが、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')
2
Squv

このEzzを使用できます!

# 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"))
3
Squv

この問題 に従って、Client.change_presenceのゲームキーワード引数はアクティビティに名前が変更されたため、コードは次のようになります

activity = discord.Game(name="Just")
await client.change_presence(status=discord.Status.idle, activity=activity)
0
painor

ボットは引き続きPlaying XまたはStreaming Yただし、[〜#〜]しない[〜#〜]カスタムステータス

https://discordpy.readthedocs.io/en/latest/ext/commands/api.html#discord.ext.commands.Bot.change_presence

0
kak7