30 lines
688 B
C#
30 lines
688 B
C#
using System;
|
|
using Server;
|
|
using Server.Gumps;
|
|
|
|
namespace Server.Gumps
|
|
{
|
|
public class JasminFinishGump : Gump
|
|
{
|
|
public JasminFinishGump()
|
|
: base( 200, 200 )
|
|
{
|
|
this.Closable=true;
|
|
this.Disposable=true;
|
|
this.Dragable=true;
|
|
this.Resizable=false;
|
|
this.AddPage(0);
|
|
this.AddBackground(0, 0, 353, 118, 9270);
|
|
this.AddAlphaRegion( 2, 2, 349, 114 );
|
|
// this.AddItem(297, 38, 4168);
|
|
this.AddLabel(118, 15, 1149, @"Quest Complete");
|
|
this.AddLabel(48, 39, 255, @"She thanks you profusely.");
|
|
this.AddLabel(48, 55, 255, @"Here take this game, and some gold.");
|
|
this.AddLabel(48, 71, 255, @"Thank you again!");
|
|
// this.AddItem(12, 38, 4171);
|
|
|
|
}
|
|
|
|
|
|
}
|
|
} |