diff --git a/events/ready.js b/events/ready.js index 7ba985d..b4ad1e9 100644 --- a/events/ready.js +++ b/events/ready.js @@ -1,3 +1,10 @@ module.exports = (client) => { console.log(`Ready as ${client.user.tag} to serve in ${client.channels.cache.size} channels on ${client.guilds.cache.size} servers, for a total of ${client.users.cache.size} users.`); -}; \ No newline at end of file + const activities = [`All Giveaways Running Smoothly`, `Many Giveaways`, `People winning a prize`]; + setInterval(() => { + let activity = activities[Math.floor(Math.random() * activities.length)]; + client.user.setActivity(activity, { type: "WATCHING" }); + }, 20000); + +}; +};