所以作为标题,我想让discord bot发出-100到100之间的随机数,但我不知道该怎么做,bot只能发出-100或100之间的随机数。这是我的代码:
if(command.endsWith("random number")) {message.channel.send(Math.floor(Math.random() * 100) + "%")
答案 0 :(得分:0)
你可以这样写:
if(command.endsWith("random number"))
{
message.channel.send(Math.floor((Math.random() - 0.5) * 200) + "%")
}