{
Plot plot = PlotManager.plotList.get(args[0]);
EntityPlayer seller = UserIdent.getPlayerByUuid(plot.getOwner());
OutputHandler.chatNotification(seller, "Player " + buyer.getDisplayName() + " offered to purchase plot " + plot.getName() + " for " + args[1]
+ ". Type /sellplot <plotName> yes to accept, /sellplot <plotName> no to deny. This offer will expire in " + PlotManager.timeout + " seconds.");
PlotManager.pendingOffers.put(plot.getName(), new Offer(plot, buyer, seller, Integer.parseInt(args[1])));
}
else{
OutputHandler.chatError(buyer, "Incorrect syntax. Try this instead: <plotName> <amount>");
}