PhantomEye
PhantomEye
DIAdiscord.js - Imagine an app
Created by PhantomEye on 3/18/2025 in #djs-questions
How do I make sure my Discord bot stays idle?
alright, thank you!
15 replies
DIAdiscord.js - Imagine an app
Created by PhantomEye on 3/18/2025 in #djs-questions
How do I make sure my Discord bot stays idle?
Okay yeah I've set it in the constructor, that should be it?
15 replies
DIAdiscord.js - Imagine an app
Created by PhantomEye on 3/18/2025 in #djs-questions
How do I make sure my Discord bot stays idle?
damn
15 replies
DIAdiscord.js - Imagine an app
Created by PhantomEye on 3/18/2025 in #djs-questions
How do I make sure my Discord bot stays idle?
working on it sorry lol
15 replies
DIAdiscord.js - Imagine an app
Created by PhantomEye on 3/18/2025 in #djs-questions
How do I make sure my Discord bot stays idle?
Yeah I see, so is there any way to circumvent that? or should I periodically set it again
15 replies
DIAdiscord.js - Imagine an app
Created by PhantomEye on 3/18/2025 in #djs-questions
How do I make sure my Discord bot stays idle?
I'm already setting it on startup to idle, that's the only place I set it
export default {
name: Events.ClientReady,
once: true,
async execute(client) {
await client.user.setPresence ({
status: 'idle',
activities: [{
type: ActivityType.Custom,
name: 'activity',
state: 'Overseeing Servers'
}]
})
console.log(`Ready! As ${client.user.tag}`);
logs.logMessage(`🌃 Online and connected as v${await getVersion()}!`);
}
};
export default {
name: Events.ClientReady,
once: true,
async execute(client) {
await client.user.setPresence ({
status: 'idle',
activities: [{
type: ActivityType.Custom,
name: 'activity',
state: 'Overseeing Servers'
}]
})
console.log(`Ready! As ${client.user.tag}`);
logs.logMessage(`🌃 Online and connected as v${await getVersion()}!`);
}
};
15 replies
DIAdiscord.js - Imagine an app
Created by PhantomEye on 3/18/2025 in #djs-questions
How do I make sure my Discord bot stays idle?
Or does Discord always set the bot's activity status to online when it sends a message?
15 replies