파이썬으로 디스코드 봇 만들기

디스코드의 놀라운 세계에 빠져보세요!

파이썬으로 디스코드 봇 만들기 디스코드의 놀라운 세계에 빠져보세요!

전체 코드

import discord
from discord.ext import commands
  
app = commands.Bot(command_prefix='prefix that you want')
  
@app.event
async def on_ready():
    print('다음으로 로그인합니다: ')
    print(app.user.name)
    print('connection was succesful')
    await app.change_presence(status=discord.Status.online, activity=None)

@app.command()
async def 따라하기(ctx, *, text):
    await ctx.send(text)
     
     
@app.command()
async def 따라하기2(ctx,text):
    await ctx.send(text)
     
@app.command()
async def 따라하기3(ctx,*text):
    txt = ''
    for tmp in text:
        txt += tmp
        txt += ', '
    await ctx.send(txt[:-2])
      
      
app.run('token that you copied')

 

댓글

같이... 공부해주실거죠?

댓글 본문
버전 관리
명이
현재 버전
선택 버전
graphittie 자세히 보기