Package games.stendhal.server.entity.mapstuff.office

Examples of games.stendhal.server.entity.mapstuff.office.RentedSign


import marauroa.common.game.RPObject;

public class RentedSignTransformer implements Transformer {

  public RPObject transform(final RPObject object) {
        return new RentedSign(object);
  }
View Full Code Here


        text = text.toLowerCase();
      }

      // put the sign up
      rentedSignList.removeByName(player.getName());
      final RentedSign sign = new RentedSign(player, text);
      final boolean success = rentedSignList.add(sign);

      // confirm, log, tell postman
      if (success) {
        player.drop("money", MONEY);
View Full Code Here

TOP

Related Classes of games.stendhal.server.entity.mapstuff.office.RentedSign

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.