1m04bot/events/ready.js

11 lines
296 B
JavaScript
Raw Permalink Normal View History

2024-01-18 21:40:05 +00:00
import {ActivityType} from "discord.js";
export async function execute(client) {
client.user.setPresence({
activities: [{name: `Ankhal`, type: ActivityType.Listening}],
status: 'idle',
afk: true
});
client.user.setStatus('idle')
client.user.setAFK(true)
}