「Discord」の版間の差分
ナビゲーションに移動
検索に移動
編集の要約なし |
編集の要約なし |
||
(同じ利用者による、間の7版が非表示) | |||
3行目: | 3行目: | ||
* [https://discord.com/developers/docs/intro Discord公式ドキュメント] | * [https://discord.com/developers/docs/intro Discord公式ドキュメント] | ||
* [https://discordpy.readthedocs.io/ja/latest/index.html discord.py] | * [https://discordpy.readthedocs.io/ja/latest/index.html discord.py] | ||
== Discord bot の作成 == | |||
# Applicationを作成する | |||
# botアカウントを追加 | |||
# Privileged Gateway Intentsを設定する | |||
# botをサーバーに招待する | |||
== messageに含まれる情報 == | |||
* id | |||
== できること == | |||
===リアクションをつける=== | |||
<syntaxhighlight lang="python"> | |||
async def on_message(message): | |||
await message.add_reaction('👍') | |||
</syntaxhighlight> | |||
===リプライ=== | |||
<syntaxhighlight lang="python"> | |||
async def on_message(message): | |||
await message.reply('リプライ') | |||
</syntaxhighlight> | |||
== 定期実行 == | |||
* https://discordpy.readthedocs.io/ja/latest/ext/tasks/index.html |
2024年4月30日 (火) 14:19時点における最新版
主にdiscord.pyについて書く
Discord bot の作成
- Applicationを作成する
- botアカウントを追加
- Privileged Gateway Intentsを設定する
- botをサーバーに招待する
messageに含まれる情報
- id
できること
リアクションをつける
async def on_message(message):
await message.add_reaction('👍')
リプライ
async def on_message(message):
await message.reply('リプライ')