17 lines
544 B
C#
17 lines
544 B
C#
namespace Server.Engines.MLQuests.Gumps
|
|
{
|
|
public class InfoNPCGump : BaseQuestGump
|
|
{
|
|
public InfoNPCGump(TextDefinition title, TextDefinition message)
|
|
: base(1060668) // INFORMATION
|
|
{
|
|
RegisterButton(ButtonPosition.Left, ButtonGraphic.Close, 3);
|
|
|
|
SetPageCount(1);
|
|
|
|
BuildPage();
|
|
title.AddHtmlText(this, 160, 108, 250, 16, false, false, 0x2710, 0x4AC684);
|
|
message.AddHtmlText(this, 98, 156, 312, 180, false, true, 0x15F90, 0xBDE784);
|
|
}
|
|
}
|
|
}
|