本文介紹了如何在 Discord.js 中做出隨機(jī)響應(yīng)的處理方法,對大家解決問題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!
問題描述
我猜標(biāo)題解釋了它.我沒有寫下代碼,如果有人解釋代碼的步驟會(huì)很好.每次使用壁紙"命令時(shí),我希望它從網(wǎng)站發(fā)送壁紙的隨機(jī)鏈接.有幫手嗎?
The title explains it I guess. I have no code written down and it would be nice if someone explains the steps to the code. I want it to send a random link for a wallpaper from a website each time the command 'a wallpaper' is used. Any helpers?
推薦答案
client.on('message', (message) => {
if (message.content.startsWith('!wallpaper')) {
// Here you can choose between creating your array with your own links or use a api that will generate it for you. For now i'll use an array
const wallpapers = [
'https://cdn.discordapp.com/attachments/726436777283289088/734088186711769088/images.png',
'https://cdn.discordapp.com/attachments/726436777283289088/734088144730718258/images.png',
'https://cdn.discordapp.com/attachments/726436777283289088/734087421918183484/images.png',
// You can add as many as you want
];
// Here we will create a random number. Math.random only creates a randomly generated number between 0 and 1.
const response = wallpapers[Math.floor(Math.random() * wallpapers.length)];
message.reply(response);
}
});
如果您愿意,可以在 w3school/Randomization一個(gè)>
這篇關(guān)于如何在 Discord.js 中做出隨機(jī)響應(yīng)的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!
【網(wǎng)站聲明】本站部分內(nèi)容來源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請聯(lián)系我們刪除處理,感謝您的支持!