Advertisement
mystro1

Untitled

Mar 28th, 2020
507
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. client.on('ready', function(){
  2.     var ms = 60000 ;
  3.     var setGame = [`${prefix}help`,`Type ${prefix}help`];
  4.     var i = -1;
  5.     var j = 0;
  6.     setInterval(function (){
  7.         if( i == -1 ){
  8.             j = 1;
  9.         }
  10.         if( i == (setGame.length)-1 ){
  11.             j = -1;
  12.         }
  13.         i = i+j;
  14.         client.user.setGame(setGame[i],`http://www.twitch.tv/barontube`);
  15.     }, ms);
  16.     console.log(` ????????? |> Name: ${client.user.username}`);
  17.  console.log(` ????????? |> Servers: ${client.guilds.size}`);
  18.  console.log(` ???????????????????? |> Members: ${client.users.size}`);
  19.  console.log(` ????????????????????? |> Channels: ${client.channels.size}`);
  20.  console.log(` ???????????????????? |> prefix: ${prefix}`);
  21.  console.log(` ???????????????????? |> Id: ${client.user.id}`);
  22.  console.log(` ??????????????????? |> premium Id's server: ${premium}`);
  23. console.log(` ???????????????????`);
  24. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement