随机图像生成器不适用于discord bot

时间:2018-01-04 23:53:59

标签: javascript image random discord

我已经摆弄它仍然无法让它发挥作用。此外,我尝试了一个单一的图像,它没有问题。这是我的代码:



home




1 个答案:

答案 0 :(得分:0)

使用:

var rand = Math.floor(Math.random() * rands.length);

比发送图像使用

message.channel.send("rawr", rands[rand]);

使用更好的变量命名的示例:



var images = ["./catboy/cb1.jpg","./catboy/cb2.jpg","./catboy/cb3.jpg","./catboy/cb4.jpg"];
var rand = Math.floor(Math.random() * images.length);
var randomImage = images[rand];

console.log( randomImage ) // The one to send
// message.channel.send("rawr", randomImage);