「Discord」の版間の差分
ナビゲーションに移動
検索に移動
編集の要約なし |
編集の要約なし |
||
9行目: | 9行目: | ||
# Privileged Gateway Intentsを設定する | # Privileged Gateway Intentsを設定する | ||
# botをサーバーに招待する | # botをサーバーに招待する | ||
== できること == | |||
* リアクションをつける | |||
<syntaxhighlight lang="python"> | |||
async def on_message(message) | |||
await message.add_reaction('👍') | |||
</syntaxhighlight> |
2023年3月30日 (木) 22:44時点における版
主にdiscord.pyについて書く
Discord bot の作成
- Applicationを作成する
- botアカウントを追加
- Privileged Gateway Intentsを設定する
- botをサーバーに招待する
できること
- リアクションをつける
async def on_message(message)
await message.add_reaction('👍')