public void EndAuction() { if (m_Plot == null) { return; } if (m_Plot.HasTempMulti()) { m_Plot.RemoveTempPlot(); } Mobile winner = null; int highest = 0; Dictionary <Mobile, BidEntry> combined = new Dictionary <Mobile, BidEntry>(m_Auctioners); //Combine auction bids with the bids for next available plot foreach (KeyValuePair <Mobile, BidEntry> kvp in MaginciaBazaar.NextAvailable) { combined.Add(kvp.Key, kvp.Value); } //Get highest bid foreach (BidEntry entry in combined.Values) { if (entry.Amount > highest) { highest = entry.Amount; } } // Check for owner, and if the owner has a match bad AND hasn't bidded on another plot! if (m_Plot.Owner != null && MaginciaBazaar.Reserve.ContainsKey(m_Plot.Owner) && MaginciaBazaar.Instance != null && !MaginciaBazaar.Instance.HasActiveBid(m_Plot.Owner)) { int matching = MaginciaBazaar.GetBidMatching(m_Plot.Owner); if (matching >= highest) { MaginciaBazaar.DeductReserve(m_Plot.Owner, highest); int newreserve = MaginciaBazaar.GetBidMatching(m_Plot.Owner); winner = m_Plot.Owner; /*You extended your lease on Stall ~1_STALLNAME~ at the ~2_FACET~ New Magincia * Bazaar. You matched the top bid of ~3_BIDAMT~gp. That amount has been deducted * from your Match Bid of ~4_MATCHAMT~gp. Your Match Bid balance is now *~5_NEWMATCH~gp. You may reclaim any additional match bid funds or adjust * your match bid for next week at the bazaar.*/ MaginciaLottoSystem.SendMessageTo(m_Plot.Owner, new NewMaginciaMessage(null, new TextDefinition(1150427), string.Format("@{0}@{1}@{2}@{3}@{4}", m_Plot.PlotDef.ID, m_Plot.PlotDef.Map.ToString(), highest.ToString("N0"), matching.ToString("N0"), newreserve.ToString("N0")))); } else { /*You lost the bid to extend your lease on Stall ~1_STALLNAME~ at the ~2_FACET~ * New Magincia Bazaar. Your match bid amount of ~3_BIDAMT~gp is held in escrow * at the Bazaar. You may obtain a full refund there at any time. Your hired * merchant, if any, has deposited your proceeds and remaining inventory at the * Warehouse in New Magincia. You must retrieve these within one week or they * will be destroyed.*/ MaginciaLottoSystem.SendMessageTo(m_Plot.Owner, new NewMaginciaMessage(null, new TextDefinition(1150528), string.Format("@{0}@{1}@{2}", m_Plot.PlotDef.ID, m_Plot.PlotDef.Map.ToString(), matching.ToString("N0")))); } } else if (m_Plot.Owner != null) { /*Your lease has expired on Stall ~1_STALLNAME~ at the ~2_FACET~ New Magincia Bazaar.*/ MaginciaLottoSystem.SendMessageTo(m_Plot.Owner, new NewMaginciaMessage(null, new TextDefinition(1150430), string.Format("@{0}@{1}", m_Plot.PlotDef.ID, m_Plot.PlotDef.Map.ToString()))); } if (winner == null) { //Get list of winners List <BidEntry> winners = new List <BidEntry>(); foreach (KeyValuePair <Mobile, BidEntry> kvp in combined) { if (kvp.Value.Amount >= highest) { winners.Add(kvp.Value); } } // One winner! if (winners.Count == 1) { winner = winners[0].Bidder; } else { // get a list of specific type (as opposed to next available) List <BidEntry> specifics = new List <BidEntry>(); foreach (BidEntry bid in winners) { if (bid.BidType == BidType.Specific) { specifics.Add(bid); } } // one 1 specific! if (specifics.Count == 1) { winner = specifics[0].Bidder; } else if (specifics.Count > 1) { //gets oldest specific BidEntry oldest = null; foreach (BidEntry entry in specifics) { if (oldest == null || entry.DatePlaced < oldest.DatePlaced) { oldest = entry; } } winner = oldest.Bidder; } else { //no specifics! gets oldest of list of winners BidEntry oldest = null; foreach (BidEntry entry in winners) { if (oldest == null || entry.DatePlaced < oldest.DatePlaced) { oldest = entry; } } if (oldest != null) { winner = oldest.Bidder; } } } } //Give back gold foreach (KeyValuePair <Mobile, BidEntry> kvp in m_Auctioners) { Mobile m = kvp.Key; if (m != winner) { if (!Banker.Deposit(m, kvp.Value.Amount, true) && m.Backpack != null) { int total = kvp.Value.Amount; while (total > 60000) { m.Backpack.DropItem(new BankCheck(60000)); total -= 60000; } if (total > 0) { m.Backpack.DropItem(new BankCheck(total)); } } } } //Does actual changes to plots if (winner != null) { MaginciaBazaar.AwardPlot(this, winner, highest); } else { m_Plot.Reset(); // lease expires m_Plot.NewAuction(MaginciaBazaar.GetShortAuctionTime); } }
public static void AwardPlot(MaginciaPlotAuction auction, Mobile winner, int highest) { MaginciaBazaarPlot plot = auction.Plot; if (m_NextAvailable.ContainsKey(winner)) { m_NextAvailable.Remove(winner); } if (plot != null && plot.Owner != winner) { MaginciaBazaarPlot current = GetPlot(winner); //new owner if (current == null && winner != plot.Owner) { /*You won a lease on Stall ~1_STALLNAME~ at the ~2_FACET~ New Magincia Bazaar. * Your bid amount of ~3_BIDAMT~gp won the auction and has been remitted. Your * lease begins immediately and will continue for 7 days.*/ MaginciaLottoSystem.SendMessageTo(winner, new NewMaginciaMessage(null, new TextDefinition(1150426), String.Format("{0}\t{1}\t{2}", plot.PlotDef.ID, plot.PlotDef.Map.ToString(), highest.ToString("###,###,###")))); } plot.Reset(); //Transfer to new plot if (current != null) { /*You won a lease and moved to Stall ~1_STALLNAME~ at the ~2_FACET~ New Magincia * Bazaar. The lease on your previous stall has been terminated. Your hired * merchant, if any, has relocated your stall and goods to the new lot. Your * bid amount of ~3_BIDAMT~gp has been remitted.*/ MaginciaLottoSystem.SendMessageTo(winner, new NewMaginciaMessage(null, new TextDefinition(1150428), String.Format("{0}\t{1}\t{2}", plot.PlotDef.ID, plot.PlotDef.Map, highest.ToString("###,###,###")))); plot.PlotMulti = current.PlotMulti; plot.Merchant = current.Merchant; plot.ShopName = current.ShopName; current.PlotMulti = null; current.Merchant = null; current.Owner = null; if (current.Auction != null) { current.Auction.EndAuction(); } } plot.Owner = winner; plot.NewAuction(GetLongAuctionTime); } else if (plot != null) { if (plot.Owner != null) { plot.NewAuction(GetLongAuctionTime); } else { plot.Reset(); plot.NewAuction(GetShortAuctionTime); } } }