안 쓰던 블로그

[디스코드봇] 봇 프로필에 ~하는 중이라고 표시하기 본문

언어/파이썬 디스코드봇

[디스코드봇] 봇 프로필에 ~하는 중이라고 표시하기

proqk 2020. 9. 7. 16:47
반응형
import discord
import asyncio
from discord.ext import commands
from discord.ext.commands import Bot

client = discord.Client()


@client.event
async def on_ready():
    print("디스코드 봇 로그인이 완료되었습니다.")
    print("디스코드봇 이름:" + client.user.name)
    print("디스코드봇 ID:" + str(client.user.id))
    print("디스코드봇 버전:" + str(discord.__version__))
    print('------')
    await client.change_presence(status=discord.Status.online, activity=discord.Game("재밌는 일"))


client.run('봇토큰입력')

on_ready()는 실행되면 처음 하는 일을 적는다

봇이 실행되면 콘솔에다가 print를 하고 ~하는 중을 띄운다

status.online을 해 두면 봇이 온라인으로 표시 된다

반응형
Comments