public ClaimListGump( InnMaid Maid, Mobile from, List<BaseBlue> list ) : base( 50, 50 )
			{
				m_Maid = Maid;
				m_From = from;
				m_List = list;

				from.CloseGump( typeof( ClaimListGump ) );

				AddPage( 0 );

				AddBackground( 0, 0, 325, 50 + (list.Count * 20), 9250 );
				AddAlphaRegion( 5, 5, 315, 40 + (list.Count * 20) );

				AddHtml( 15, 15, 275, 20, "<BASEFONT COLOR=#FFFFFF>Select a pet to retrieve from the stables:</BASEFONT>", false, false );

				for ( int i = 0; i < list.Count; ++i )
				{
					BaseBlue pet = list[i];

					if ( pet == null || pet.Deleted )
						continue;

					AddButton( 15, 39 + (i * 20), 10006, 10006, i + 1, GumpButtonType.Reply, 0 );
					AddHtml( 32, 35 + (i * 20), 275, 18, String.Format( "<BASEFONT COLOR=#C0C0EE>{0}</BASEFONT>", pet.Name ), false, false );
				}
			}
Exemple #2
0
            public ClaimListGump(InnMaid Maid, Mobile from, List <BaseBlue> list) : base(50, 50)
            {
                m_Maid = Maid;
                m_From = from;
                m_List = list;

                from.CloseGump(typeof(ClaimListGump));

                AddPage(0);

                AddBackground(0, 0, 325, 50 + (list.Count * 20), 9250);
                AddAlphaRegion(5, 5, 315, 40 + (list.Count * 20));

                AddHtml(15, 15, 275, 20, "<BASEFONT COLOR=#FFFFFF>Select a pet to retrieve from the stables:</BASEFONT>", false, false);

                for (int i = 0; i < list.Count; ++i)
                {
                    BaseBlue pet = list[i];

                    if (pet == null || pet.Deleted)
                    {
                        continue;
                    }

                    AddButton(15, 39 + (i * 20), 10006, 10006, i + 1, GumpButtonType.Reply, 0);
                    AddHtml(32, 35 + (i * 20), 275, 18, String.Format("<BASEFONT COLOR=#C0C0EE>{0}</BASEFONT>", pet.Name), false, false);
                }
            }
			public StableEntry( InnMaid Maid, Mobile from ) : base( 6126, 12 )
			{
				m_Maid = Maid;
				m_From = from;
			}
			public StableTarget( InnMaid Maid ) : base( 12, false, TargetFlags.None )
			{
				m_Maid = Maid;
			}
			public ClaimAllEntry( InnMaid Maid, Mobile from ) : base( 6127, 12 )
			{
				m_Maid = Maid;
				m_From = from;
			}
Exemple #6
0
 public StableEntry(InnMaid Maid, Mobile from) : base(6126, 12)
 {
     m_Maid = Maid;
     m_From = from;
 }
Exemple #7
0
 public StableTarget(InnMaid Maid) : base(12, false, TargetFlags.None)
 {
     m_Maid = Maid;
 }
Exemple #8
0
 public ClaimAllEntry(InnMaid Maid, Mobile from) : base(6127, 12)
 {
     m_Maid = Maid;
     m_From = from;
 }