custom status discord bot code example
Example 1: custom status discord bot
client.on("ready", () =>{
console.log(`Logged in as ${barry is skeetless
}!`);
client.user.setPresence({
status: "online",
game: {
name: "!help",
type: "PLAYING"
}
});
});
Example 2: custom status discord bot
client.on("ready", () =>{
console.log(`Logged in as ${client.user.tag}!`);
client.user.setPresence({
status: "online",
game: {
name: "!help",
type: "PLAYING"
}
});
});
Example 3: custom status discord bot
client.user.setActivity("with depression", {
type: "STREAMING",
url: url here"
});