Answers for "como poner estado a un bot en discord"

0

como poner estado a un bot en discord

client.on("ready", () => {
   console.log("Estoy listo!");
   
   client.user.setPresence( {
       status: "online",
       game: {
           name: "help | crater",
           type: "PLAYING"
       }
   } );

});
Posted by: Guest on October-02-2020

Code answers related to "como poner estado a un bot en discord"

Python Answers by Framework

Browse Popular Code Answers by Language