「Discord」の版間の差分

提供:ペチラボ書庫
ナビゲーションに移動 検索に移動
編集の要約なし
26行目: 26行目:
async def on_message(message):
async def on_message(message):
await message.reply('リプライ')
await message.reply('リプライ')
</syntaxhighlight>
===ファイル送信===
<syntaxhighlight lang="python">
channel = client.get_channel(CHANNEL_ID)
await channel.send(file=discord.File("filename"))
</syntaxhighlight>
</syntaxhighlight>



2025年3月2日 (日) 16:14時点における版

主にdiscord.pyについて書く

Discord bot の作成

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

messageに含まれる情報

  • id


できること

リアクションをつける

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

リプライ

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

ファイル送信

channel = client.get_channel(CHANNEL_ID)
await channel.send(file=discord.File("filename"))

定期実行