디스코드 봇 개발 초기 단계에서 발생하는 에러 중 하나는 아래와 같다. bot = commands.Bot(command_prefix=':') TypeError: BotBase.__init__() missing 1 required keyword-only argument: 'intents' intents 가 필요하다는 뜻으로 아래와 같이 작성해주면 쉽게 해결할 수 있다. intents = discord.Intents.all() bot = commands.Bot(command_prefix='.',intents=intents) 쉽게 에러가 해결되면 코딩이 아니지. 아래처럼 새로운 에러가 발생. Traceback (most recent call last): File "C:/Users/USER/Desktop/디스코..