Notice
Recent Posts
Recent Comments
Link
반응형
목록on_ready (1)
변명은 만개 결과는 한개
[Discord python bot] 봇 실행시 / 메세지 수신시 event
import discord client = discord.Client() token = "YOUR_BOT_TOKEN" @client.event async def on_ready(): print("logged in as ") #화면에 봇의 아이디, 닉네임 출력 print(client.user.name) print(client.user.id) print("==============") # 디스코드에는 현재 본인이 어떤 게임을 플레이하는지 보여주는 기능이 있습니다. # 이 기능을 이용하여 봇의 상태를 간단하게 출력 가능합니다. game = discord.Game("with the API") await client.change_presence(status=discord.Status.idle, activity=g..
공부/Discord
2020. 6. 25. 02:52