CheckVendorAccess() public method

public CheckVendorAccess ( Mobile from ) : bool
from Mobile
return bool
Exemplo n.º 1
0
		public VendorSellEntry( Mobile from, BaseVendor vendor )
			: base( 6104, 8 )
		{
			m_Vendor = vendor;
			Enabled = vendor.CheckVendorAccess( from );
		}
Exemplo n.º 2
0
		public VendorBuyEntry(Mobile from, BaseVendor vendor)
			: base(6103, 8)
		{
			this.m_Vendor = vendor;
			this.Enabled = vendor.CheckVendorAccess(from);
		}