Updating auto statuses
This commit is contained in:
37
index.js
37
index.js
@@ -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
|
||||||
)
|
)
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user