반응형
Notice
Recent Posts
Recent Comments
Link
안 쓰던 블로그
[디스코드봇] 봇 프로필에 ~하는 중이라고 표시하기 본문
반응형
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을 해 두면 봇이 온라인으로 표시 된다
반응형
'언어 > 파이썬 디스코드봇' 카테고리의 다른 글
[디스코드봇] 이모지를 누르면 봇이 반응하기2 (wait_for()사용) (2) | 2020.09.11 |
---|---|
[디스코드봇] 이모지를 누르면 봇이 반응하기 (15) | 2020.09.07 |
[디스코드봇] 메시지를 이쁘게 출력하기 embed (0) | 2020.09.07 |
[디스코드봇] 봇이 이모지로 반응하기 (0) | 2020.09.07 |
[디스코드 봇] 명령어 인식하기 (0) | 2020.09.07 |
Comments