Glitchでdiscordのbotを作っているのですが、
glitch
1if(msg.isMemberMentioned(client.user)) 2 { 3 if (msg.content.indexOf('content') > 0){ 4 msg.reply(msg.content); 5 console.log(msg.content); 6 return; 7 } 8 if (msg.content.indexOf('logout') > 0){ 9 msg.reply('ログアウトします。'); 10 client.destroy(); 11 return; 12 } 13 if (msg.content.indexOf('status') > 0){ 14 msg.reply(client.status); 15 return; 16 } 17 if (msg.content.indexOf('help') > 0){ 18 msg.reply('ヘルプメッセージ'); 19 return; 20 } 21 sendGAS(msg); 22 return; 23 }
と書いて、実際に helpなどと打っても反応しません。
どこが間違ってるのでしょうか、分かりません。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。