これを、discordで使えるようPythonに直してほしいんですけど....
少しはやれよと言われるかもだけど、早急なもので....
JavaScript
1client.on("message", async message => { 2 if (message.author.id == "302050872383242240") { 3 if ( 4 message.embeds[0].color == "2406327" && 5 message.embeds[0].url == "https://disboard.org/" && 6 (message.embeds[0].description.match(/表示順をアップしたよ/) || 7 message.embeds[0].description.match(/Bump done/) || 8 message.embeds[0].description.match(/Bump effectué/) || 9 message.embeds[0].description.match(/Bump fatto/) || 10 message.embeds[0].description.match(/Podbito serwer/) || 11 message.embeds[0].description.match(/Успешно поднято/) || 12 message.embeds[0].description.match(/갱신했어/) || 13 message.embeds[0].description.match(/Patlatma tamamlandı/)) 14 ) { 15 const noti = await message.channel.send({ 16 embed: { 17 title: "Bumpが実行されました!", 18 description: 19 "再度実行可能になったらお知らせします。", 20 color: 7506394 21 } 22 }); 23 noti.delete({ timeout: 7200000 }); 24 setTimeout(() => { 25 message.channel.send({ 26 embed: { 27 title: "Bumpできます!", 28 description: "コマンド`!d bump`を送信できます。", 29 color: 7506394 30 } 31 }); 32 }, 7200000); 33 } else if ( 34 message.embeds[0].color == "15420513" && 35 message.embeds[0].url == "https://disboard.org/" && 36 (message.embeds[0].description.match( 37 /このサーバーを上げられるようになるまで/ 38 ) || 39 message.embeds[0].description.match( 40 /あなたがサーバーを上げられるようになるまで/ 41 )) 42 ) { 43 var splcontent_a = message.embeds[0].description.split("と"); 44 console.log(splcontent_a[1]); 45 var splcontent_b = splcontent_a[1].split("分"); 46 console.log(splcontent_b[0]); 47 var waittime_bump = splcontent_b[0]; 48 49 message.channel.send({ 50 embed: { 51 title: "Bumpに失敗したようです…", 52 description: waittime_bump + "分後にもう一度お試しください。", 53 color: 7506394 54 } 55 }); 56 } 57 } 58});
念のためいうと
nodejsはインストール済み
discordpythonインストール済み トークン取得済み
あなたの回答
tips
プレビュー