Server.Items.TreasureMapChest.TreasureMapChest C# (CSharp) Méthode

TreasureMapChest() public méthode

public TreasureMapChest ( Mobile owner, int level, bool temporary ) : System
owner Mobile
level int
temporary bool
Résultat System
		public TreasureMapChest( Mobile owner, int level, bool temporary ) : base( 0xE40 )
		{
			m_Owner = owner;
			m_Level = level;
			m_DeleteTime = DateTime.Now + TimeSpan.FromHours( 3.0 );

			m_Temporary = temporary;
			m_Guardians = new List<Mobile>();

			m_Timer = new DeleteTimer( this, m_DeleteTime );
			m_Timer.Start();

			Fill( this, level );
		}

Same methods

TreasureMapChest::TreasureMapChest ( Serial serial ) : System
TreasureMapChest::TreasureMapChest ( int level ) : System