145 lines
4.9 KiB
C#
145 lines
4.9 KiB
C#
using Server.Guilds;
|
|
using Server.Mobiles;
|
|
using Server.Multis;
|
|
using Server.Network;
|
|
|
|
namespace Server.Gumps;
|
|
|
|
public class ConfirmResizeHouseGump : StaticGump<ConfirmResizeHouseGump>
|
|
{
|
|
private readonly BaseHouse _house;
|
|
|
|
public override bool Singleton => true;
|
|
|
|
public ConfirmResizeHouseGump(BaseHouse house) : base(110, 100) => _house = house;
|
|
|
|
protected override void BuildLayout(ref StaticGumpBuilder builder)
|
|
{
|
|
builder.SetNoClose();
|
|
|
|
builder.AddPage();
|
|
|
|
builder.AddBackground(0, 0, 420, 280, 0x13BE);
|
|
|
|
builder.AddImageTiled(10, 10, 400, 20, 0xA40);
|
|
builder.AddAlphaRegion(10, 10, 400, 20);
|
|
|
|
builder.AddHtmlLocalized(10, 10, 400, 20, 1060635, 0x7800); // <CENTER>WARNING</CENTER>
|
|
|
|
builder.AddImageTiled(10, 40, 400, 200, 0xA40);
|
|
builder.AddAlphaRegion(10, 40, 400, 200);
|
|
|
|
/*
|
|
* You are attempting to resize your house. You will be refunded the house's
|
|
* value directly to your bank box. All items in the house will *remain behind*
|
|
* and can be *freely picked up by anyone*. Once the house is demolished, however,
|
|
* only this account will be able to place on the land for one hour. This *will*
|
|
* circumvent the normal 7-day waiting period (if it applies to you). This action
|
|
* will not un-condemn any other houses on your account. If you have other,
|
|
* grandfathered houses, this action *WILL* condemn them. Are you sure you wish
|
|
* to continue?
|
|
*/
|
|
builder.AddHtmlLocalized(10, 40, 400, 200, 1080196, 0x7F00, false, true);
|
|
|
|
builder.AddImageTiled(10, 250, 400, 20, 0xA40);
|
|
builder.AddAlphaRegion(10, 250, 400, 20);
|
|
|
|
builder.AddButton(10, 250, 0xFA5, 0xFA7, 1);
|
|
builder.AddButton(210, 250, 0xFA5, 0xFA7, 0);
|
|
|
|
builder.AddHtmlLocalized(40, 250, 170, 20, 1011036, 0x7FFF); // OKAY
|
|
builder.AddHtmlLocalized(240, 250, 170, 20, 1011012, 0x7FFF); // CANCEL
|
|
}
|
|
|
|
public override void OnResponse(NetState state, in RelayInfo info)
|
|
{
|
|
if (info.ButtonID > 1 || _house.Deleted)
|
|
{
|
|
return;
|
|
}
|
|
|
|
var from = state.Mobile;
|
|
|
|
if (info.ButtonID == 0)
|
|
{
|
|
from.SendGump(new HouseGumpAOS(HouseGumpPageAOS.Customize, from, _house));
|
|
return;
|
|
}
|
|
|
|
if (!_house.IsOwner(from))
|
|
{
|
|
from.SendLocalizedMessage(501320); // Only the house owner may do this.
|
|
return;
|
|
}
|
|
|
|
if (_house.MovingCrate != null || _house.InternalizedVendors.Count > 0)
|
|
{
|
|
// You can not resize your house at this time. Please remove all items fom the moving crate and try again.
|
|
from.SendLocalizedMessage(1080455);
|
|
return;
|
|
}
|
|
|
|
if (!Guild.NewGuildSystem && _house.FindGuildstone() != null)
|
|
{
|
|
from.SendLocalizedMessage(501389); // You cannot redeed a house with a guildstone inside.
|
|
return;
|
|
}
|
|
|
|
/*
|
|
if (_house.PlayerVendors.Count > 0)
|
|
{
|
|
from.SendLocalizedMessage(503236); // You need to collect your vendor's belongings before moving.
|
|
return;
|
|
}
|
|
*/
|
|
if (_house.HasRentedVendors && _house.VendorInventories.Count > 0)
|
|
{
|
|
// You cannot do that that while you still have contract vendors or unclaimed contract vendor inventory in your house.
|
|
from.SendLocalizedMessage(1062679);
|
|
return;
|
|
}
|
|
|
|
if (_house.HasRentedVendors)
|
|
{
|
|
// You cannot do that that while you still have contract vendors in your house.
|
|
from.SendLocalizedMessage(1062680);
|
|
return;
|
|
}
|
|
|
|
if (_house.VendorInventories.Count > 0)
|
|
{
|
|
// You cannot do that that while you still have unclaimed contract vendor inventory in your house.
|
|
from.SendLocalizedMessage(1062681);
|
|
return;
|
|
}
|
|
|
|
if (from.AccessLevel > AccessLevel.Player)
|
|
{
|
|
from.SendMessage("You do not get a refund for your house as you are not a player.");
|
|
}
|
|
else
|
|
{
|
|
var toGive = !_house.IsAosRules || _house.Price <= 0 ? _house.GetDeed() : null;
|
|
|
|
if (toGive != null && !from.BankBox.TryDropItem(from, toGive, false))
|
|
{
|
|
toGive.Delete();
|
|
from.SendLocalizedMessage(500390); // Your bank box is full.
|
|
return;
|
|
}
|
|
|
|
if (_house.Price <= 0 || !Banker.Deposit(from, _house.Price))
|
|
{
|
|
from.SendMessage("Unable to refund house.");
|
|
return;
|
|
}
|
|
|
|
// ~1_AMOUNT~ gold has been deposited into your bank box.
|
|
from.SendLocalizedMessage(1060397, _house.Price.ToString());
|
|
}
|
|
|
|
_house.RemoveKeys(from);
|
|
new TempNoHousingRegion(_house, from);
|
|
_house.Delete();
|
|
}
|
|
}
|