Package games.stendhal.server.entity.mapstuff.sign

Examples of games.stendhal.server.entity.mapstuff.sign.SignFromHallOfFameLoader


  /**
   * Update the player list written on the sign.
   */
  public void updatePlayers() {
    String introduction = "The best maze runners:\n";
    SignFromHallOfFameLoader loader = new SignFromHallOfFameLoader(this, introduction, "M", SIGN_LENGTH, false, true);
    TurnNotifier.get().notifyInTurns(0, loader);
  }
View Full Code Here


    this.ascending = ascending;
  }

  public void fire(Player player, Sentence sentence, EventRaiser npc) {
    if (sign != null) {
      SignFromHallOfFameLoader loader = new SignFromHallOfFameLoader(sign, introduction, fametype, max, ascending, false);
      TurnNotifier.get().notifyInTurns(0, loader);
    }
  }
View Full Code Here

TOP

Related Classes of games.stendhal.server.entity.mapstuff.sign.SignFromHallOfFameLoader

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.