Updating auto statuses

This commit is contained in:
2023-04-17 20:16:42 +02:00
parent 229d26235b
commit d6bd7aafd0

View File

@@ -136,18 +136,39 @@ client.on(Events.ClientReady, () => {
client.user.setActivity({ name: "over the Illegitimate Server", type: ActivityType.Watching }); client.user.setActivity({ name: "over the Illegitimate Server", type: ActivityType.Watching });
const activities = [ const activities = [
"over the Illegitimate Server", {
"Jone be an idiot", name: "with Jone the idiot",
"Martina is definitely a bot", type: ActivityType.Playing
"urTryhard steal finals", },
"Perlcence be an AI", {
"Taken my creator", name: "with Martina the bot",
"ur mom in my bed" type: ActivityType.Playing
},
{
name: "urCryhard steal finals again",
type: ActivityType.Watching
},
{
name: "with Perlcence the AI",
type: ActivityType.Playing
},
{
name: "my creator Taken",
type: ActivityType.Watching
},
{
name: "with ur mom in my bed",
type: ActivityType.Playing
},
{
name: "over the Illegitimate Server",
type: ActivityType.Watching
}
]; ];
let i = 0; let i = 0;
setInterval(() => setInterval(() =>
client.user.setActivity({ name: `${activities[i++ % activities.length]}`, type: ActivityType.Watching }), 1000 * 60 * 30 client.user.setActivity(activities[i++ % activities.length]), 1000 * 60 * 30
) )
}); });