Remove Scoreboard from Sidebar

Discussion in 'Plugin Development' started by z0mb3eLP, Apr 11, 2014.

Thread Status:
Not open for further replies.
  1. Offline

    z0mb3eLP

    Hey Guys :D

    I have a problem.
    I am making a pvp plugin where the score is displayed in a scoreboard on the sidebar.
    Now after the game has ended, i want to remove the scoreboard from the sidebar so the sidebar is cleared.

    i didnt find any method for that. i mean it somehow has to work doesnt it?

    regards
    z0mb3eLP
     
  2. Offline

    Dahwn

    z0mb3eLP
    Simply create a new scoreboard which has nothing displayed:
    Code:java
    1. ScoreboardManager sm = Bukkit.getServer().getScoreboardManager();
    2. player.setScoreboard(sm.getNewScoreboard());

    -Dahwn
     
  3. Offline

    robbo5899

    Code:java
    1. player.getScoreboard().clearSlot(DisplaySlot.SIDEBAR);
     
    UNC00KED and ImPhantom like this.
Thread Status:
Not open for further replies.

Share This Page