実現したいこと
discordで、ボイスチャットの入室や退室などの通知をbotにさせたいんですが、なかなかうまくいかず、調べたりもしてみたのですが、私の知識が乏しいものでいまいち理解できませんでした。すいません、、
発生している問題・エラーメッセージ
SyntaxError: invalid syntax IndentationError: unexpected indent NameError: name 'end' is not defined NameError: name 'bot' is not defined なんとなくendが存在しませんって言っているのはわかります
該当のソースコード
python395
1TOKEN = '' 2CLIENT_ID = ID(数字) 3 4 5inform_channel = チャンネルID または '#チャンネルname' 6 7 8bot = Discordrb::Commands::CommandBot.new token: TOKEN, client_id: CLIENT_ID, prefix:'/' 9 10 11bot.voice_state_update do |event| 12 13 user = event.user.name 14 15 16 if event.channel == nil then 17 18 channel_name = event.old_channel.name 19 20 21 bot.send_message(inform_channel, "@everyone #{user} が #{channel_name}を出ました!") 22 else 23 24 channel_name = event.channel.name 25 26 27 bot.send_message(inform_channel, "@everyone #{user} が #{channel_name}に入りました!") 28 end 29end 30 31 32bot.run
ご教授願いますorz
これはRubyのソースコードではないですか?
あ、すいませんでしたorz
あなたの回答
tips
プレビュー