64 lines
2.1 KiB
C#
64 lines
2.1 KiB
C#
using System;
|
|
using Server;
|
|
using Server.Mobiles;
|
|
using Server.Items;
|
|
using Server.Gumps;
|
|
using Server.Network;
|
|
|
|
namespace Server.Gumps
|
|
{
|
|
public class HunterQuestGump : Gump
|
|
{
|
|
|
|
public HunterQuestGump()
|
|
: base(0, 0)
|
|
{
|
|
|
|
this.Closable = false;
|
|
this.Disposable = false;
|
|
this.Dragable = true;
|
|
this.Resizable = false;
|
|
this.AddPage(0);
|
|
|
|
this.AddBackground(232, 113, 289, 364, 9250);
|
|
this.AddLabel(332, 146, 0, @"Gibberling Hunter");
|
|
// Quest text
|
|
this.AddHtml(252, 190, 250, 225, "< BODY > " +
|
|
"Usually i have no trouble fighting the gibberling "+
|
|
"by my self, but now that has changed.<BR><BR> "+
|
|
"They are being organised by a queen, "+
|
|
"The Gibberling Queen, she is the strongest "+
|
|
"gibberling i have ever fought, i am lucky "+
|
|
"to have escaped with my life!, hordes of "+
|
|
"gibberling follow her into battle "+
|
|
"like nothing i have ever seen. "+
|
|
"<BR><BR> "+
|
|
"I will reward you if you disperse of "+
|
|
"this beast for me, with a special dagger. "+
|
|
"just bring me her head when you are done, "+
|
|
"she was last seen South of Umbra in the desert thru the mountain passage "+
|
|
"gathering more gibberling, may you survive "+
|
|
"your task and live to reap the reward. "+
|
|
" </BODY> ", (bool)true, (bool)true);// Quest text
|
|
this.AddImage(246, 124, 9004);
|
|
this.AddImage(469, 124, 9004);
|
|
this.AddImage(246, 431, 9005);
|
|
this.AddButton(339, 421, 1149, 1148, 0, GumpButtonType.Reply, 0);
|
|
}
|
|
|
|
public override void OnResponse(NetState state, RelayInfo info)
|
|
{
|
|
Mobile from = state.Mobile;
|
|
|
|
switch (info.ButtonID)
|
|
{
|
|
case 0: // Close/Cancel
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|