「Discord」の版間の差分

提供:ペチラボ書庫
ナビゲーションに移動 検索に移動
16行目: 16行目:
async def on_message(message)
async def on_message(message)
await message.add_reaction('👍')
await message.add_reaction('👍')
</syntaxhighlight>
===リプライ===
<syntaxhighlight lang="python">
async def on_message(message)
await message.reply('リプライ')
</syntaxhighlight>
</syntaxhighlight>

2023年3月30日 (木) 23:26時点における版

主にdiscord.pyについて書く

Discord bot の作成

  1. Applicationを作成する
  2. botアカウントを追加
  3. Privileged Gateway Intentsを設定する
  4. botをサーバーに招待する

できること

リアクションをつける

async def on_message(message)
	await message.add_reaction('👍')

リプライ

async def on_message(message)
	await message.reply('リプライ')