Interface BedWars.IStats

Enclosing interface:
BedWars

public static interface BedWars.IStats
  • Method Details

    • getPlayerFirstPlay

      Timestamp getPlayerFirstPlay(UUID p)
      Get the player's first play date. You get data from the local cache.
      Parameters:
      p - The UUID of the player.
      Returns:
      The timestamp of the player's first play date.
    • getPlayerLastPlay

      Timestamp getPlayerLastPlay(UUID p)
      Get the player's last play date. You get data from the local cache.
      Parameters:
      p - The UUID of the player.
      Returns:
      The timestamp of the player's last play date.
    • getPlayerWins

      int getPlayerWins(UUID p)
      Get the player's total wins. You get data from the local cache.
      Parameters:
      p - The UUID of the player.
      Returns:
      The total number of wins for the player.
    • getPlayerKills

      int getPlayerKills(UUID p)
      Get the player's regular kills. You get data from the local cache.
      Parameters:
      p - The UUID of the player.
      Returns:
      The number of regular kills for the player.
    • getPlayerTotalKills

      int getPlayerTotalKills(UUID p)
      Get the player's total kills. Regular kills + final kills. You get data from the local cache.
      Parameters:
      p - The UUID of the player.
      Returns:
      The total number of kills for the player.
    • getPlayerFinalKills

      int getPlayerFinalKills(UUID p)
      Get the player's total final kills. You get data from the local cache.
      Parameters:
      p - The UUID of the player.
      Returns:
      The total number of final kills for the player.
    • getPlayerLoses

      int getPlayerLoses(UUID p)
      Get the player's total looses. You get data from the local cache.
      Parameters:
      p - The UUID of the player.
      Returns:
      The total number of losses for the player.
    • getPlayerDeaths

      int getPlayerDeaths(UUID p)
      Get the player's total deaths. You get data from the local cache.
      Parameters:
      p - The UUID of the player.
      Returns:
      The total number of deaths for the player.
    • getPlayerFinalDeaths

      int getPlayerFinalDeaths(UUID p)
      Get the player's total final deaths. You get data from the local cache.
      Parameters:
      p - The UUID of the player.
      Returns:
      The total number of final deaths for the player.
    • getPlayerBedsDestroyed

      int getPlayerBedsDestroyed(UUID p)
      Get the player's beds destroyed. You get data from the local cache.
      Parameters:
      p - The UUID of the player.
      Returns:
      The number of beds destroyed by the player.
    • getPlayerGamesPlayed

      int getPlayerGamesPlayed(UUID p)
      Get the player's games played. You get data from the local cache.
      Parameters:
      p - The UUID of the player.
      Returns:
      The number of games played by the player.