「Discord」の版間の差分
ナビゲーションに移動
検索に移動
編集の要約なし |
編集の要約なし |
||
41行目: | 41行目: | ||
このへんに書かれてます | このへんに書かれてます | ||
https://discordpy.readthedocs.io/ja/latest/interactions/api.html#discord.app_commands.Command | https://discordpy.readthedocs.io/ja/latest/interactions/api.html#discord.app_commands.Command | ||
引数の入力補完には choices か autocomplete が使えそうだが、choices は25個までの制限がある模様 |
2025年3月4日 (火) 00:05時点における版
主に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('リプライ')
ファイル送信
channel = client.get_channel(CHANNEL_ID)
await channel.send(file=discord.File("filename"))
定期実行
スラッシュコマンド
このへんに書かれてます https://discordpy.readthedocs.io/ja/latest/interactions/api.html#discord.app_commands.Command
引数の入力補完には choices か autocomplete が使えそうだが、choices は25個までの制限がある模様