84 lines
3.3 KiB
C#
84 lines
3.3 KiB
C#
using System;
|
|
using Server;
|
|
using Server.Gumps;
|
|
using Server.Network;
|
|
using Server.Items;
|
|
using Server.Mobiles;
|
|
using Server.Commands;
|
|
|
|
namespace Server.Gumps
|
|
{
|
|
public class TsunadequestGump : Gump
|
|
{
|
|
public static void Initialize()
|
|
{
|
|
CommandSystem.Register("TsunadequestGump", AccessLevel.GameMaster, new CommandEventHandler(TsunadequestGump_OnCommand));
|
|
}
|
|
|
|
private static void TsunadequestGump_OnCommand( CommandEventArgs e )
|
|
{
|
|
e.Mobile.SendGump( new TsunadequestGump( e.Mobile ) );
|
|
}
|
|
|
|
public TsunadequestGump( 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, "Orochimaru's Assassination" );
|
|
|
|
|
|
AddHtml( 107, 140, 300, 230, "<BODY>" +
|
|
//----------------------/----------------------------------------------/
|
|
"<BASEFONT COLOR=GREEN>Hokage Tsunade looks at you vaugly. After she puts down her paper, she says If you are brave enough, I have an urgant mission for you<BR><BR>I take it you wish for me to continue. *Tsunade clears her throat* Well, Orochimaru is said to be currently hiding out someplace in The Fire Dungeon, We must kill him... He is a great threat to us all. <BR>" +
|
|
"<BASEFONT COLOR=GREEN>Are you still interested?<BR><BR>What I would need you to do, is venture into The Fire Dungeon, Track him down, and kill him and any guards. I need you to bring me his heart, for proof, only because i haven't seen you around here." +
|
|
"</BODY>", false, true);
|
|
|
|
// <BASEFONT COLOR=#7B6D20>
|
|
|
|
// AddLabel( 113, 135, 0x34, "Tsunade puts down her Papers and asks.." );
|
|
// AddLabel( 113, 150, 0x34, "so you are going to help me?" );
|
|
// AddLabel( 113, 165, 0x34, "Remember, I need his heart as proof..." );
|
|
// AddLabel( 113, 180, 0x34, "You can find him in The Fire Dungeon." );
|
|
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( "Hokage Tsunade goes back to her work." );
|
|
break;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
} |