Skip to content

Commit

Permalink
Edit
Browse files Browse the repository at this point in the history
  • Loading branch information
sunwoo-j committed May 29, 2024
1 parent 49a213d commit 79d7c10
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: 디스코드 봇 DIY - 4. 유저 데이터베이스
date: 2024-05-28 14:50:38 +/-TTTT
lastmod: 2022-05-28 14:50:38 +/-TTTT
date: 2024-05-29 18:53:12 +/-TTTT
lastmod: 2022-05-29 18:53:12 +/-TTTT
categories: [Python, discord.py]
tags: [python, discord, bot, database]
description: 엑셀 파일로 유저 정보 등록하고 관리하기
Expand Down
8 changes: 5 additions & 3 deletions _posts/2024-05-27-discord-bot-3.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
---
title: 디스코드 봇 DIY - 3. 길드 환영 메시지
title: 디스코드 봇 DIY - 3. 신규 멤버 환영 메시지
date: 2024-05-27 10:53:19 +/-TTTT
lastmod: 2022-05-29 17:49:33 +/-TTTT
categories: [Python, discord.py]
tags: [python, discord, bot, event]
description: 클라이언트 이벤트 활용해서 환영해주기
description: 디스코드 이벤트 활용해서 환영 메시지 보내기
---

> 이 글에서 다루는 내용
> - 이벤트 종류 이해하기
> - 새로운 멤버가 들어올 때 환영 DM 보내기
> - 채널
> - 길드별로 메시지 보낼 채널 설정하기
## 이벤트 카테고리

Expand Down Expand Up @@ -159,6 +159,8 @@ async def on_member_join(member):

지금은 한 개의 길드에 대해 직접 ID를 코드에 적어 넣었지만, 길드 관리자가 환영 메시지를 보낼 채널을 봇에게 설정하도록 할 수도 있겠다. 길드마다 설정을 저장하려면 데이터베이스를 먼저 짜야하기 때문에 좀 나중에 다시 돌아오는 편이 나을 거 같다고 생각했다. 다음은 기본적인 사용자 정보를 저장할 수 있는 데이터베이스를 만들어 볼 것이다.

## 부록

### i. 전체 코드

```python
Expand Down

0 comments on commit 79d7c10

Please sign in to comment.