78 lines
2.5 KiB
C#
78 lines
2.5 KiB
C#
using System;
|
|
using System.Collections;
|
|
using Server.Multis;
|
|
using Server.Network;
|
|
|
|
namespace Server.Gumps
|
|
{
|
|
public class ReclaimVendorGump : Gump
|
|
{
|
|
private readonly BaseHouse m_House;
|
|
private readonly ArrayList m_Vendors;
|
|
public ReclaimVendorGump(BaseHouse house)
|
|
: base(50, 50)
|
|
{
|
|
this.m_House = house;
|
|
this.m_Vendors = new ArrayList(house.InternalizedVendors);
|
|
|
|
this.AddBackground(0, 0, 170, 50 + this.m_Vendors.Count * 20, 0x13BE);
|
|
|
|
this.AddImageTiled(10, 10, 150, 20, 0xA40);
|
|
this.AddHtmlLocalized(10, 10, 150, 20, 1061827, 0x7FFF, false, false); // <CENTER>Reclaim Vendor</CENTER>
|
|
|
|
this.AddImageTiled(10, 40, 150, this.m_Vendors.Count * 20, 0xA40);
|
|
|
|
for (int i = 0; i < this.m_Vendors.Count; i++)
|
|
{
|
|
Mobile m = (Mobile)this.m_Vendors[i];
|
|
|
|
int y = 40 + i * 20;
|
|
|
|
this.AddButton(10, y, 0xFA5, 0xFA7, i + 1, GumpButtonType.Reply, 0);
|
|
this.AddLabel(45, y, 0x481, m.Name);
|
|
}
|
|
}
|
|
|
|
public override void OnResponse(NetState sender, RelayInfo info)
|
|
{
|
|
Mobile from = sender.Mobile;
|
|
|
|
if (info.ButtonID == 0 || !this.m_House.IsActive || !this.m_House.IsInside(from) || !this.m_House.IsOwner(from) || !from.CheckAlive())
|
|
return;
|
|
|
|
int index = info.ButtonID - 1;
|
|
|
|
if (index < 0 || index >= this.m_Vendors.Count)
|
|
return;
|
|
|
|
Mobile mob = (Mobile)this.m_Vendors[index];
|
|
|
|
if (!this.m_House.InternalizedVendors.Contains(mob))
|
|
return;
|
|
|
|
if (mob.Deleted)
|
|
{
|
|
this.m_House.InternalizedVendors.Remove(mob);
|
|
}
|
|
else
|
|
{
|
|
bool vendor, contract;
|
|
BaseHouse.IsThereVendor(from.Location, from.Map, out vendor, out contract);
|
|
|
|
if (vendor)
|
|
{
|
|
from.SendLocalizedMessage(1062677); // You cannot place a vendor or barkeep at this location.
|
|
}
|
|
else if (contract)
|
|
{
|
|
from.SendLocalizedMessage(1062678); // You cannot place a vendor or barkeep on top of a rental contract!
|
|
}
|
|
else
|
|
{
|
|
this.m_House.InternalizedVendors.Remove(mob);
|
|
mob.MoveToWorld(from.Location, from.Map);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |