83 lines
3.1 KiB
C#
83 lines
3.1 KiB
C#
using System;
|
|
using Server;
|
|
using Server.Gumps;
|
|
using Server.Network;
|
|
using Server.Items;
|
|
using Server.Mobiles;
|
|
using System.Collections.Generic;
|
|
using Server.ContextMenus;
|
|
using Server.Commands;
|
|
|
|
namespace Server.Gumps
|
|
{
|
|
public class OldFishermanGump2 : Gump
|
|
{
|
|
public static void Initialize()
|
|
{
|
|
CommandSystem.Register("OldFishermanGump2", AccessLevel.GameMaster, new CommandEventHandler(OldFishermanGump2_OnCommand));
|
|
}
|
|
|
|
private static void OldFishermanGump2_OnCommand( CommandEventArgs e )
|
|
{
|
|
e.Mobile.SendGump( new OldFishermanGump2( e.Mobile ) );
|
|
}
|
|
|
|
public OldFishermanGump2( 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 Old Fisherman" );
|
|
|
|
|
|
AddHtml( 107, 140, 300, 230, "<BODY>" +
|
|
//----------------------/----------------------------------------------/
|
|
"<BASEFONT COLOR=YELLOW><I>James carefully inspects the jar</I><BR><BR>Now let me see... Yep! That'll do it!<BR><BR>" +
|
|
"<BASEFONT COLOR=YELLOW>Thanks alot youngster! You can have this old pole here. I won't be needing it anymore.<BR><BR><I>James hands you his fishing pole</I><BR><BR>" +
|
|
"<BASEFONT COLOR=YELLOW>Darn thing never caught nothin' but old boots anyhow. I wish ye better luck with it. Happy to see another fisherman around." +
|
|
"<BASEFONT COLOR=YELLOW> Just not enough fisherman anymore.<BR><BR> Oh! By the way, if you come back I have a few more of them poles you could have, for the price of worms, of course!" +
|
|
"</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( "Catch yourself a whopper! Thanks again for the worms!" );
|
|
break;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
} |