rubyで簡単に応答するbotを作り、起動しようとしたのですが、コマンドプロンプトで、syntax error, unexpected local variable or method, expecting end-of-input
...ent.respond "こんにちは!"と表示され、botが起動できませんでした。
require 'discordrb'
TOKEN = '自分のトークン'
CLIENT_ID = '自分のクライアントid'
bot = Discordrb::Commands::CommandBot.new token: TOKEN,
client_id: CLIENT_ID, prefix: ""
bot.message do |event|
event.respond "こんにちは!"
end
bot.run
何か間違いがあれば、教えてください
回答3件
あなたの回答
tips
プレビュー