Examples of acceptOffer()


Examples of games.stendhal.server.entity.trade.Market.acceptOffer()

  class ConfirmAcceptOfferChatAction implements ChatAction {
    public void fire (Player player, Sentence sentence, EventRaiser npc) {
      Offer offer = getOffer();
      Market m = TradeCenterZoneConfigurator.getShopFromZone(player.getZone());
      String itemname = offer.getItemName();
      if (m.acceptOffer(offer,player)) {
        // Successful trade. Tell the offerer
        StringBuilder earningToFetchMessage = new StringBuilder();
        earningToFetchMessage.append("Your ");
        earningToFetchMessage.append(itemname);
        earningToFetchMessage.append(" was sold. You can now fetch your earnings from me.");
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.