gpt4 book ai didi

javascript - 如何在一天的不同时间设置机器人的状态?

转载 作者:行者123 更新时间:2023-11-30 20:19:43 26 4
gpt4 key购买 nike

我有一个 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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com