「Discord」の版間の差分
ナビゲーションに移動
検索に移動
(→できること) |
編集の要約なし |
||
(同じ利用者による、間の4版が非表示) | |||
9行目: | 9行目: | ||
# Privileged Gateway Intentsを設定する | # Privileged Gateway Intentsを設定する | ||
# botをサーバーに招待する | # botをサーバーに招待する | ||
== messageに含まれる情報 == | |||
* id | |||
== できること == | == できること == | ||
14行目: | 18行目: | ||
===リアクションをつける=== | ===リアクションをつける=== | ||
<syntaxhighlight lang="python"> | <syntaxhighlight lang="python"> | ||
async def on_message(message) | async def on_message(message): | ||
await message.add_reaction('👍') | await message.add_reaction('👍') | ||
</syntaxhighlight> | </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('リプライ')