/*
 * Created by SharpDevelop.
 * User: Shawn
 * Date: 4/7/2005
 * Time: 1:02 AM
 * 
 * To change this template use Tools | Options | Coding | Edit Standard Headers.
 */
using System; 
using Server; 
using Server.Gumps; 
using Server.Network;
using Server.Items;
using Server.Mobiles;

namespace Server.Gumps
{ 
   public class ThirdPart : Gump 
   { 
      public static void Initialize() 
      { 
         Commands.Register( "ThirdPart", AccessLevel.GameMaster, new CommandEventHandler( ThirdPart_OnCommand ) ); 
      } 

      private static void ThirdPart_OnCommand( CommandEventArgs e ) 
      { 
         e.Mobile.SendGump( new ThirdPart( e.Mobile ) ); 
      } 

      public ThirdPart( Mobile owner ) : base( 50,50 ) 
      { 
//----------------------------------------------------------------------------------------------------

				AddPage( 0 );
			AddImageTiled(  54, 33, 369, 400, 2624 );
			AddAlphaRegion( 54, 33, 369, 400 );

			AddImageTiled( 416, 39, 44, 389, 203 );
//--------------------------------------Window size bar--------------------------------------------
			
			AddImage( 97, 49, 9005 );
			AddImageTiled( 58, 39, 29, 390, 10460 );
			AddImageTiled( 412, 37, 31, 389, 10460 );
			AddLabel( 140, 60, 0x34, "The Quest of the DarkElf King" );
			

			AddHtml( 107, 140, 300, 230, "<BODY>" +
//----------------------/----------------------------------------------/
"<BASEFONT COLOR=YELLOW>Ahhh, I see that you have Brought to me,<BR>" +
"<BASEFONT COLOR=YELLOW>The Kryss of the DarkElf, This item by it self<BR>" +
"<BASEFONT COLOR=YELLOW>Some would find to be of Value. But This along<BR>" +
"<BASEFONT COLOR=YELLOW>with the Armor of the DarkElf King is of more<BR>" +
"<BASEFONT COLOR=YELLOW>Value to all the Elf Race. But there is one more<BR>" +
"<BASEFONT COLOR=YELLOW>Item that i need for you to bring me, Before i<BR>" +
"<BASEFONT COLOR=YELLOW>can bestow upon you the Armor that you seek.<BR>" +
"<BASEFONT COLOR=YELLOW>This item is found in the Lands of Ilshnar,<BR>" +
"<BASEFONT COLOR=YELLOW>on a creatur called the Elf Stalker. The Item<BR>" +
"<BASEFONT COLOR=YELLOW>that i request from you is called,<BR>" +
"<BASEFONT COLOR=YELLOW>The Stone of the Elf Race!!. This stone when used<BR>" +
"<BASEFONT COLOR=YELLOW>by someone of Vile nature can track the Dark Elf King<BR>" +
"<BASEFONT COLOR=YELLOW>where ever he may be. This as you can imagine could<BR>" +
"<BASEFONT COLOR=YELLOW>Lead to the demise of the Elf Race.<BR>" +
"<BASEFONT COLOR=YELLOW>Bring me that Stone now and i will reward you for<BR>" +
"<BASEFONT COLOR=YELLOW>Battles and for your Loyalty to the Dark Elf Race!!" +

						     "</BODY>", false, true);
			

			AddImage( 430, 9, 10441);
			AddImageTiled( 40, 38, 17, 391, 9263 );
			AddImage( 6, 25, 10421 );
			AddImage( 34, 12, 10420 );
			AddImageTiled( 94, 25, 342, 15, 10304 );
			AddImageTiled( 40, 427, 415, 16, 10304 );
			AddImage( -10, 314, 10402 );
			AddImage( 56, 150, 10411 );
			AddImage( 155, 120, 2103 );
			AddImage( 136, 84, 96 );

			AddButton( 225, 390, 0xF7, 0xF8, 0, GumpButtonType.Reply, 0 ); 

//--------------------------------------------------------------------------------------------------------------
      } 

      public override void OnResponse( NetState state, RelayInfo info ) //Function for GumpButtonType.Reply Buttons 
      { 
         Mobile from = state.Mobile; 

         switch ( info.ButtonID ) 
         { 
         		case 0:;//Case uses the ActionIDs defenied above. Case 0 defenies the actions for the button with the action id 0
            { 
               //Cancel 
               from.SendMessage( "May the God of the Dark Elf be with you!!" );
               break; 
            } 

         }
      }
   }
}
