コード例 #1
0
        public MaginciaBazaar() : base(3240)
        {
            Movable   = false;
            m_Enabled = true;

            WarehouseSuperintendent mob = new WarehouseSuperintendent();

            mob.MoveToWorld(new Point3D(3795, 2259, 20), Map.Trammel);
            mob.Home      = mob.Location;
            mob.RangeHome = 12;

            mob = new WarehouseSuperintendent();
            mob.MoveToWorld(new Point3D(3795, 2259, 20), Map.Felucca);
            mob.Home      = mob.Location;
            mob.RangeHome = 12;

            LoadPlots();
            AddPlotSigns();

            if (m_Enabled)
            {
                StartTimer();
            }

            m_Phase = Phase.Phase1;
            ActivatePlots();
        }
コード例 #2
0
            public ClaimStorageEntry(Mobile from, WarehouseSuperintendent mobile) : base(1150681, 3)
            {
                m_Mobile = mobile;
                m_Entry  = MaginciaBazaar.GetStorageEntry(from);

                if (m_Entry == null)
                {
                    Flags |= CMEFlags.Disabled;
                }
            }
コード例 #3
0
ファイル: MaginciaBizaar.cs プロジェクト: Crome696/ServUO
		public MaginciaBazaar() : base(3240)
		{
			Movable = false;
			m_Enabled = true;
			
			WarehouseSuperintendent mob = new WarehouseSuperintendent();
			mob.MoveToWorld(new Point3D(3795, 2259, 20), Map.Trammel);
			mob.Home = mob.Location;
			mob.RangeHome = 12;
			
			mob = new WarehouseSuperintendent();
            mob.MoveToWorld(new Point3D(3795, 2259, 20), Map.Felucca);
			mob.Home = mob.Location;
			mob.RangeHome = 12;

            LoadPlots();
            AddPlotSigns();

            if (m_Enabled)
                StartTimer();

            m_Phase = Phase.Phase1;
            ActivatePlots();
		}
コード例 #4
0
 public BackfeePrompt(WarehouseSuperintendent mobile, StorageEntry entry)
 {
     m_Mobile = mobile;
     m_Entry  = entry;;
 }
コード例 #5
0
			public ClaimStorageEntry(Mobile from, WarehouseSuperintendent mobile) : base(1150681, 3)
			{
				m_Mobile = mobile;
                m_Entry = MaginciaBazaar.GetStorageEntry(from);

                if(m_Entry == null)
                    Flags |= CMEFlags.Disabled;
			}
コード例 #6
0
			public BackfeePrompt(WarehouseSuperintendent mobile, StorageEntry entry)
			{
				m_Mobile = mobile;
                m_Entry = entry; ;
			}