#にゃ、わんって言ったら対応した言葉を返すようにしたいです。
import discord
#トークンは全て0にしておきます!
TOKEN = '000000000000000000000000000000O'
client = discord.Client()
@bot.event
async def on_ready():
print('ログインしたよ〜♪')
@bot.event
if(message):
if message.author.bot:
return
message.author.bot == 'にゃ':
await message.channel.send("にゃ〜♪")
@bot.event
if(message):
if message.author.bot:
return
message.author.bot == 'わん':
await message.channel.send("わんっ")
bot.run(TOKEN)
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。