Solved Scoreboard

Discussion in 'Plugin Development' started by ProStriker123, Mar 16, 2015.

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

    ProStriker123

    How can i remove scoreboard from the player?
     
  2. Offline

    ColonelHedgehog

    Like this:

    Code:
    p.setScoreboard(null);
     
  3. Offline

    ProStriker123

    @ColonelHedgehog, Tryed it but not working also thanks for help i got it :)
    This one works good!
    Code:
    p.getScoreboard().clearSlot(DisplaySlot.SIDEBAR);
     
  4. Offline

    ColonelHedgehog

    That'll remove it for all players.

    You can also try:

    Code:
    p.setScoreboard(Bukkit.getMainScoreboard());
     
  5. @ProStriker123 Glad that your problem is solved. Please set this thread to solved by going to Thread Tools > Edit Title > Prefix > Solved. :)
     
Thread Status:
Not open for further replies.

Share This Page