示例#1
0
 public ConfirmPeerlessGump(BaseActivation key)
     : base(0, 0)
 {
     m_key      = key;
     Closable   = true;
     Disposable = true;
     Dragable   = true;
     Resizable  = false;
     AddPage(0);
     AddBackground(38, 45, 238, 134, 9250);
     AddLabel(78, 64, 0, @"Are you sure you want to");
     AddLabel(131, 84, 0, @"teleport");
     AddLabel(61, 104, 0, @"your party to unknown area?");
     AddButton(128, 140, 241, 242, 0, GumpButtonType.Reply, 0);
     AddButton(198, 140, 247, 248, 1, GumpButtonType.Reply, 0);
 }
示例#2
0
            public ConfirmPeerlessPartyGump(BaseActivation key, PlayerMobile from)
                : base(0, 0)
            {
                m_Key      = key;
                Closable   = true;
                Disposable = true;
                Dragable   = true;
                Resizable  = false;
                AddPage(0);
                AddBackground(38, 45, 238, 134, 9250);
                AddLabel(62, 64, 0, @"Your party is teleporting to an");
                AddLabel(118, 84, 0, @"unknown area.");
                AddLabel(98, 104, 0, @"Do you wish to go?");
                AddButton(128, 140, 241, 242, 0, GumpButtonType.Reply, 0);
                AddButton(198, 140, 247, 248, 1, GumpButtonType.Reply, 0);

                m_Accept = new AcceptConfirmPeerlessPartyTimer(from);
                m_Accept.Start();
            }
示例#3
0
            public ConfirmPeerlessPartyGump( BaseActivation key, PlayerMobile from )
                : base(0, 0)
            {
                m_Key = key;
                Closable = true;
                Disposable = true;
                Dragable = true;
                Resizable = false;
                AddPage( 0 );
                AddBackground( 38, 45, 238, 134, 9250 );
                AddLabel( 62, 64, 0, @"Your party is teleporting to an" );
                AddLabel( 118, 84, 0, @"unknown area." );
                AddLabel( 98, 104, 0, @"Do you wish to go?" );
                AddButton( 128, 140, 241, 242, 0, GumpButtonType.Reply, 0 );
                AddButton( 198, 140, 247, 248, 1, GumpButtonType.Reply, 0 );

                m_Accept = new AcceptConfirmPeerlessPartyTimer( from );
                m_Accept.Start();
            }
示例#4
0
 public ConfirmPeerlessGump( BaseActivation key )
     : base(0, 0)
 {
     m_key = key;
     Closable = true;
     Disposable = true;
     Dragable = true;
     Resizable = false;
     AddPage( 0 );
     AddBackground( 38, 45, 238, 134, 9250 );
     AddLabel( 78, 64, 0, @"Are you sure you want to" );
     AddLabel( 131, 84, 0, @"teleport" );
     AddLabel( 61, 104, 0, @"your party to unknown area?" );
     AddButton( 128, 140, 241, 242, 0, GumpButtonType.Reply, 0 );
     AddButton( 198, 140, 247, 248, 1, GumpButtonType.Reply, 0 );
 }