如何更改discord.py机器人活动

编程入门 行业动态 更新时间:2024-10-11 05:24:36
本文介绍了如何更改discord.py机器人活动的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

这可能对我来说很难,但我相信stackoverflow的功能,

我想将机器人状态从播放更改为观看.我尝试了这个,但它仍在播放状态.

I want to change the bot status from playing to watching. I try this but it still playing status.

代码:

import discord from discord.extmands 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')

推荐答案

您可以使用此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"))

更多推荐

如何更改discord.py机器人活动

本文发布于:2023-11-23 13:09:13,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1621557.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:机器人   如何更改   discord   py

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!