如何让不和谐机器人发出 -100 到 100 之间的随机数

时间:2021-03-12 06:55:54

标签: node.js discord discord.js

所以作为标题,我想让discord bot发出-100到100之间的随机数,但我不知道该怎么做,bot只能发出-100或100之间的随机数。这是我的代码:

if(command.endsWith("random number")) {message.channel.send(Math.floor(Math.random() * 100) + "%")

1 个答案:

答案 0 :(得分:0)

你可以这样写:

if(command.endsWith("random number")) 
{

message.channel.send(Math.floor((Math.random() - 0.5) * 200) + "%")

}