25 lines
547 B
C#
25 lines
547 B
C#
using System;
|
|
using Server;
|
|
using Server.Gumps;
|
|
using Server.Mobiles;
|
|
using Server.Network;
|
|
|
|
namespace Server.Engines.MLQuests.Gumps
|
|
{
|
|
public class QuestConversationGump : BaseQuestGump
|
|
{
|
|
public QuestConversationGump( MLQuest quest, PlayerMobile pm, TextDefinition text )
|
|
: base( 3006156 ) // Quest Conversation
|
|
{
|
|
CloseOtherGumps( pm );
|
|
|
|
SetTitle( quest.Title );
|
|
RegisterButton( ButtonPosition.Right, ButtonGraphic.Close, 3 );
|
|
|
|
SetPageCount( 1 );
|
|
|
|
BuildPage();
|
|
AddConversation( text );
|
|
}
|
|
}
|
|
}
|