作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 discord 机器人,我试图每小时更改一次状态以带来一些多样性。但我不太熟悉 javascript 日期,有什么帮助吗?这是我的代码:
var quotes = ["to my fire mix | >commands", "to youtube videos | >commands"]
if(it is this time of day){
var rand = quotes[Math.floor(Math.random() * quotes.length)];
client.user.setActivity(rand, {type: 'LISTENING'})
}
最佳答案
更新:我最终选择了增量计时器。
function refreshStatus(){
var quotes = ["my fire mix | >commands", "youtube videos | >commands", "the loneley sound of nothing | >commands", "audiomemes memes | >commands", "danno | >commands"]
x = 5
x=x*60
rand = quotes[Math.floor(quotes.length * Math.random())]
if(rand){
client.user.setActivity(rand, {type: 'LISTENING'});
}
setTimeout(refreshStatus, x*1000)
}
关于javascript - 如何在一天的不同时间设置机器人的状态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51578874/
我是一名优秀的程序员,十分优秀!