GamerSK

Untitled

Feb 15th, 2020
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. console.log(getCurrentPlayers(730));
  2. function getCurrentPlayers(id) {
  3.     $.get("https://game-status.eu/api/status.php?server=" + id, function(
  4.         data
  5.     ) {
  6.         setCurrentPlayers(data.players);
  7.     });
  8. }
  9.  
  10. function setCurrentPlayers(players) {
  11.     return players;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment