Examples of RentedSign


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

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

        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
Copyright © 2018 www.massapi.com. 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.