Advertisement
Ryyan

Untitled

Jul 18th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. client.on("ready", () => {
  2. // This event will run if the bot starts, and logs in, successfully.
  3. console.log(`wus popping bois`);//this is what the console says if it logs in.
  4. // Example of changing the bot's playing game to something useful. `client.user` is what the
  5. // docs refer to as the "ClientUser".
  6. client.user.setPresence({
  7. game: {
  8. name: `xxxtentacion "SAD!"`,//you can set this to anything.
  9. type: "listening",//this is what the bot is doing, you can do: "playing", "watching", "streaming", "listening", example of using it: i did watching, and xxxtentacion sad.
  10. url: "https://www.twitch.tv/monstercat"//this is used for streaming. when they click 'watch' it will bring them to this link.
  11. }
  12. });
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement