Пример #1
0
		public override void RenderProgress( BaseQuestGump gump )
		{
			if ( CurProgress > 0 && CurProgress < MaxProgress )
			{
				gump.AddHtmlObject( 70, 260, 270, 100, "Number of Soul Crystals given to Jalinde.", 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 );
			}
		}