Krenair

Player statistics on Game.Azelphur.com

Oct 29th, 2013
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. totalPlayers = 0;
  2. totalCapacity = 0;
  3.  
  4. $( '.server-info > .server-info-right > .server-info-players' ).each( function ( index, element ) {
  5.     splitCounts = element.innerHTML.split( '/' );
  6.     totalPlayers += parseInt( splitCounts[0] );
  7.     totalCapacity += parseInt( splitCounts[1] );
  8. } );
  9.  
  10. console.log( 'Total players: ' + totalPlayers );
  11. console.log( 'Total capacity: ' + totalCapacity );
Advertisement
Add Comment
Please, Sign In to add comment