Exemplo n.º 1
0
        public override void RenderProgress(BaseQuestGump gump)
        {
            string count = NestArea.NonSpecialCount.ToString();

            gump.AddHtmlLocalized(70, 260, 270, 100, 1054055, BaseQuestGump.Blue, false, false); // Solen Nests Studied :
            gump.AddLabel(70, 280, 0x64, count);
            gump.AddLabel(100, 280, 0x64, "/");
            gump.AddLabel(130, 280, 0x64, count);
        }
 public override void RenderProgress(BaseQuestGump gump)
 {
     if (!Completed)
     {
         gump.AddLabel(70, 260, 270, "Abysmal Horror");
         gump.AddLabel(70, 280, 0x64, CurProgress.ToString());
         gump.AddLabel(100, 280, 0x64, "/");
         gump.AddLabel(130, 280, 0x64, MaxProgress.ToString());
     }
     else
     {
         base.RenderProgress(gump);
     }
 }
Exemplo n.º 3
0
 public override void RenderProgress(BaseQuestGump gump)
 {
     if (!this.Completed)
     {
         gump.AddHtmlLocalized(70, 260, 270, 100, 1054093, BaseQuestGump.Blue, false, false); // Gallons of Water gathered:
         gump.AddLabel(70, 280, 0x64, (this.CurProgress / 5).ToString());
         gump.AddLabel(100, 280, 0x64, "/");
         gump.AddLabel(130, 280, 0x64, (this.MaxProgress / 5).ToString());
     }
     else
     {
         base.RenderProgress(gump);
     }
 }
Exemplo n.º 4
0
        public override void RenderProgress(BaseQuestGump gump)
        {
            if (this.CurProgress > 0 && this.CurProgress < this.MaxProgress)
            {
                gump.AddHtmlObject(70, 260, 270, 100, 1050019, BaseQuestGump.Blue, false, false); // Number of bones collected:

                gump.AddLabel(70, 280, 100, this.CurProgress.ToString());
                gump.AddLabel(100, 280, 100, "/");
                gump.AddLabel(130, 280, 100, this.MaxProgress.ToString());
            }
            else
            {
                base.RenderProgress(gump);
            }
        }
Exemplo n.º 5
0
		public override void RenderProgress( BaseQuestGump gump )
		{
			if ( !Completed )
			{
				// Black/Red Solen Infiltrators killed:
				gump.AddHtmlLocalized( 70, 260, 270, 100, ((SolenMatriarchQuest)System).RedSolen ? 1054088 : 1054087, BaseQuestGump.Blue, false, false );
				gump.AddLabel( 70, 280, 0x64, CurProgress.ToString() );
				gump.AddLabel( 100, 280, 0x64, "/" );
				gump.AddLabel( 130, 280, 0x64, MaxProgress.ToString() );
			}
			else
			{
				base.RenderProgress( gump );
			}
		}
Exemplo n.º 6
0
		public override void RenderProgress( BaseQuestGump gump )
		{
			if ( !Completed )
			{
				// Red/Black Solen Queens killed:
				gump.AddHtmlLocalized( 70, 260, 270, 100, ((AmbitiousQueenQuest)System).RedSolen ? 1054064 : 1054065, BaseQuestGump.Blue, false, false );
				gump.AddLabel( 70, 280, 0x64, CurProgress.ToString() );
				gump.AddLabel( 100, 280, 0x64, "/" );
				gump.AddLabel( 130, 280, 0x64, MaxProgress.ToString() );
			}
			else
			{
				base.RenderProgress( gump );
			}
		}
        public override void RenderProgress( BaseQuestGump gump )
        {
            if ( CurProgress > 0 && CurProgress < MaxProgress )
            {
                gump.AddHtmlObject( 70, 260, 270, 100, "Number of fungus collected:", BaseQuestGump.Blue, false, false );

                gump.AddLabel( 70, 280, 100, CurProgress.ToString() );
                gump.AddLabel( 100, 280, 100, "/" );
                gump.AddLabel( 130, 280, 100, MaxProgress.ToString() );
            }
            else
            {
                base.RenderProgress( gump );
            }
        }
Exemplo n.º 8
0
        public override void RenderProgress(BaseQuestGump gump)
        {
            if (!Completed)
            {
                IngredientInfo info = IngredientInfo.Get(this.Ingredient);

                gump.AddHtmlLocalized(70, 260, 270, 100, info.Name, BaseQuestGump.Blue, false, false);
                gump.AddLabel(70, 280, 0x64, CurProgress.ToString());
                gump.AddLabel(100, 280, 0x64, "/");
                gump.AddLabel(130, 280, 0x64, info.Quantity.ToString());
            }
            else
            {
                base.RenderProgress(gump);
            }
        }
Exemplo n.º 9
0
        public override void RenderProgress(BaseQuestGump gump)
        {
            if (CurProgress > 0 && CurProgress < MaxProgress)
            {
                gump.AddHtmlObject(70, 260, 270, 100, 1050019, BaseQuestGump.Blue, false,
                                   false); // Number of bones collected:

                gump.AddLabel(70, 280, 100, CurProgress.ToString());
                gump.AddLabel(100, 280, 100, "/");
                gump.AddLabel(130, 280, 100, MaxProgress.ToString());
            }
            else
            {
                base.RenderProgress(gump);
            }
        }
Exemplo n.º 10
0
        public override void RenderProgress(BaseQuestGump gump)
        {
            if (!Completed)
            {
                // Rainbow pearls collected:
                gump.AddHtmlObject(70, 260, 270, 100, 1055085, BaseQuestGump.Blue, false, false);

                gump.AddLabel(70, 280, 0x64, CurProgress.ToString());
                gump.AddLabel(100, 280, 0x64, "/");
                gump.AddLabel(130, 280, 0x64, MaxProgress.ToString());
            }
            else
            {
                base.RenderProgress(gump);
            }
        }
Exemplo n.º 11
0
        public override void RenderProgress(BaseQuestGump gump)
        {
            if (!Completed)
            {
                // Calcifina killed:
                gump.AddHtmlLocalized(70, 260, 270, 100, BaseQuestGump.Blue, false, false);

                gump.AddLabel(70, 280, 0x64, "0");
                gump.AddLabel(100, 280, 0x64, "/");
                gump.AddLabel(130, 280, 0x64, "1");
            }
            else
            {
                base.RenderProgress(gump);
            }
        }
Exemplo n.º 12
0
        public override void RenderProgress(BaseQuestGump gump)
        {
            if (!Completed)
            {
                // Deathwatch Beetle Hatchlings killed:
                gump.AddHtmlLocalized(70, 260, 270, 100, 1063318, 0x12DC6BF, false, false);

                gump.AddLabel(70, 280, 0x64, "0");
                gump.AddLabel(100, 280, 0x64, "/");
                gump.AddLabel(130, 280, 0x64, "10");
            }
            else
            {
                base.RenderProgress(gump);
            }
        }
Exemplo n.º 13
0
		public override void RenderProgress( BaseQuestGump gump )
		{
			if ( !Completed )
			{
				// Rainbow pearls collected:
				gump.AddHtmlObject( 70, 260, 270, 100, 1055085, BaseQuestGump.Blue, false, false );

				gump.AddLabel( 70, 280, 0x64, CurProgress.ToString() );
				gump.AddLabel( 100, 280, 0x64, "/" );
				gump.AddLabel( 130, 280, 0x64, MaxProgress.ToString() );
			}
			else
			{
				base.RenderProgress( gump );
			}
		}
Exemplo n.º 14
0
        public override void RenderProgress(BaseQuestGump gump)
        {
            if (!this.Completed)
            {
                // Deathwatch Beetle Hatchlings killed:
                gump.AddHtmlLocalized(70, 260, 270, 100, 1063318, 0x12DC6BF, false, false);

                gump.AddLabel(70, 280, 0x64, "1");
                gump.AddLabel(100, 280, 0x64, "/");
                gump.AddLabel(130, 280, 0x64, "10");
            }
            else
            {
                base.RenderProgress(gump);
            }
        }
Exemplo n.º 15
0
 public override void RenderProgress(BaseQuestGump gump)
 {
     if (!Completed)
     {
         // Black/Red Solen Infiltrators killed:
         gump.AddHtmlLocalized(70, 260, 270, 100, ((SolenMatriarchQuest)System).RedSolen ? 1054088 : 1054087,
                               BaseQuestGump.Blue, false, false);
         gump.AddLabel(70, 280, 0x64, CurProgress.ToString());
         gump.AddLabel(100, 280, 0x64, "/");
         gump.AddLabel(130, 280, 0x64, MaxProgress.ToString());
     }
     else
     {
         base.RenderProgress(gump);
     }
 }
Exemplo n.º 16
0
 public override void RenderProgress(BaseQuestGump gump)
 {
     if (!Completed)
     {
         gump.AddHtmlObject(70, 260, 270, 100, 1049090, BaseQuestGump.Blue, false, false);                 // Horde Minions killed:
         gump.AddLabel(70, 280, 0x64, CurProgress.ToString());
     }
     else
     {
         base.RenderProgress(gump);
     }
 }
Exemplo n.º 17
0
 public override void RenderProgress(BaseQuestGump gump)
 {
     if (!Completed)
     {
         // Red/Black Solen Queens killed:
         gump.AddHtmlLocalized(
             70,
             260,
             270,
             100,
             ((AmbitiousQueenQuest)System).RedSolen ? 1054064 : 1054065,
             BaseQuestGump.Blue
             );
         gump.AddLabel(70, 280, 0x64, CurProgress.ToString());
         gump.AddLabel(100, 280, 0x64, "/");
         gump.AddLabel(130, 280, 0x64, MaxProgress.ToString());
     }
     else
     {
         base.RenderProgress(gump);
     }
 }
Exemplo n.º 18
0
        public override void RenderProgress(BaseQuestGump gump)
        {
            if (!Completed)
            {
                for (int i = 0; i < m_Images.Length; i++)
                {
                    ImageTypeInfo info = ImageTypeInfo.Get(m_Images[i]);

                    gump.AddHtmlObject(70, 260 + 20 * i, 200, 100, info.Name, BaseQuestGump.Blue, false, false);
                    gump.AddLabel(200, 260 + 20 * i, 0x64, " : ");
                    gump.AddHtmlObject(220, 260 + 20 * i, 100, 100, m_Done[i] ? 1055121 : 1055122, BaseQuestGump.Blue, false, false);
                }
            }
            else
            {
                base.RenderProgress(gump);
            }
        }
Exemplo n.º 19
0
 public override void RenderProgress(BaseQuestGump gump)
 {
     if (!this.Completed)
     {
         // Henchmen killed:
         gump.AddHtmlLocalized(70, 260, 270, 100, 1063207, BaseQuestGump.Blue, false, false);
         gump.AddLabel(70, 280, 0x64, this.CurProgress.ToString());
         gump.AddLabel(100, 280, 0x64, "/");
         gump.AddLabel(130, 280, 0x64, this.MaxProgress.ToString());
     }
     else
     {
         base.RenderProgress(gump);
     }
 }
Exemplo n.º 20
0
		public override void RenderProgress( BaseQuestGump gump )
		{
			if ( !Completed )
			{
				IngredientInfo info = IngredientInfo.Get( this.Ingredient );

				gump.AddHtmlLocalized( 70, 260, 270, 100, info.Name, BaseQuestGump.Blue, false, false );
				gump.AddLabel( 70, 280, 0x64, CurProgress.ToString() );
				gump.AddLabel( 100, 280, 0x64, "/" );
				gump.AddLabel( 130, 280, 0x64, info.Quantity.ToString() );
			}
			else
			{
				base.RenderProgress( gump );
			}
		}
Exemplo n.º 21
0
 public override void RenderProgress(BaseQuestGump gump)
 {
     if (!Completed)
     {
         gump.AddHtmlLocalized(70, 260, 270, 100, 1054055, BaseQuestGump.Blue, false, false);
             // Solen Nests Studied :
         gump.AddLabel(70, 280, 0x64, CurProgress.ToString());
         gump.AddLabel(100, 280, 0x64, "/");
         gump.AddLabel(130, 280, 0x64, MaxProgress.ToString());
     }
     else
     {
         base.RenderProgress(gump);
     }
 }
Exemplo n.º 22
0
		public override void RenderProgress( BaseQuestGump gump )
		{
			if ( !Completed )
			{
				gump.AddHtmlObject( 70, 260, 270, 100, 1049090, BaseQuestGump.Blue, false, false ); // Horde Minions killed:
				gump.AddLabel( 70, 280, 0x64, CurProgress.ToString() );
			}
			else
			{
				base.RenderProgress( gump );
			}
		}
 public override void RenderProgress(BaseQuestGump gump)
 {
     if (!Completed)
     {
         gump.AddHtml(70, 260, 270, 100, Color(m_PlantEntry.Name, HtmlBlue), false, false);
         gump.AddLabel(70, 280, 0x64, string.Format( "{0} / {1}", CurProgress.ToString(), m_PlantEntry.Amount.ToString()) );
     }
     else
     {
         base.RenderProgress(gump);
     }
 }
Exemplo n.º 24
0
		public override void RenderProgress( BaseQuestGump gump )
		{
			if ( !Completed )
			{
				for ( int i = 0; i < m_Images.Length; i++ )
				{
					ImageTypeInfo info = ImageTypeInfo.Get( m_Images[i] );

					gump.AddHtmlObject( 70, 260 + 20 * i, 200, 100, info.Name, BaseQuestGump.Blue, false, false );
					gump.AddLabel( 200, 260 + 20 * i, 0x64, " : " );
					gump.AddHtmlObject( 220, 260 + 20 * i, 100, 100, m_Done[i] ? 1055121 : 1055122, BaseQuestGump.Blue, false, false );
				}
			}
			else
			{
				base.RenderProgress( gump );
			}
		}