【5分で分かる!】Discord Botの作り方 2024年最新版

Описание к видео 【5分で分かる!】Discord Botの作り方 2024年最新版

【URL1】
h ttps://discord.com/developers/applications
(hとtのスペースを消してください)
【URL2】
h ttps://code.visualstudio.com/
(hとtのスペースを消してください)
【コマンド】
py -3 -m pip install -U discord.py
【プログラム】
import discord
TOKEN = "ここに自分のトークンを代入"
client = discord.Client(intents=discord.Intents.all())
@client.event
async def on_ready():
print(f'We have logged in as {client.user}')
@client.event
async def on_message(message):
if message.author == client.user:
return
if message.content == 'hello':
await message.channel.send('hay')
client.run(TOKEN)

Комментарии

Информация по комментариям в разработке