Interface BedWars.IStats

Enclosing interface:
BedWars

public static interface BedWars.IStats
  • Method Details

    • getPlayerFirstPlay

      Timestamp getPlayerFirstPlay(UUID p)
      Get player first play date. You get data from the local cache.
    • getPlayerLastPlay

      Timestamp getPlayerLastPlay(UUID p)
      Get player last play date. You get data from the local cache.
    • getPlayerWins

      int getPlayerWins(UUID p)
      Get player total wins. You get data from the local cache.
    • getPlayerKills

      int getPlayerKills(UUID p)
      Get player regular kills. You get data from the local cache.
    • getPlayerTotalKills

      int getPlayerTotalKills(UUID p)
      Get player total kills. Regular kills + final kills. You get data from the local cache.
    • getPlayerFinalKills

      int getPlayerFinalKills(UUID p)
      Get player total final kills. You get data from the local cache.
    • getPlayerLoses

      int getPlayerLoses(UUID p)
      Get player total looses. You get data from the local cache.
    • getPlayerDeaths

      int getPlayerDeaths(UUID p)
      Get player total deaths. You get data from the local cache.
    • getPlayerFinalDeaths

      int getPlayerFinalDeaths(UUID p)
      Get player total final deaths. You get data from the local cache.
    • getPlayerBedsDestroyed

      int getPlayerBedsDestroyed(UUID p)
      Get player beds destroyed. You get data from the local cache.
    • getPlayerGamesPlayed

      int getPlayerGamesPlayed(UUID p)
      Get player games played. You get data from the local cache.