public override void OnResponse(NetState state, RelayInfo info)
        {
            Mobile from = state.Mobile;

            if (from == null)
            {
                return;
            }

            if (info.ButtonID == 0)
            {
                m_From.SendMessage(m_Mobile.Name + " declines your request to mate the two Korpres.");
                m_Mobile.SendMessage("You decline " + m_From.Name + "'s request to mate the two Korpres.");
            }
            if (info.ButtonID == 1)
            {
                m_ED1.Blessed  = true;
                m_ED1.Pregnant = true;

                Korpre3MatingTimer mt = new Korpre3MatingTimer(m_ED1, TimeSpan.FromDays(0.0));
                mt.Start();
                m_ED1.EndMating = DateTime.Now + TimeSpan.FromDays(0.0);

                m_From.SendMessage(m_Mobile.Name + " accepts your request to mate the two Korpres.");
                m_Mobile.SendMessage("You accept " + m_From.Name + "'s request to mate the two Korpres.");
            }
        }
        public override void OnResponse( NetState state, RelayInfo info )
        {
            Mobile from = state.Mobile;

            if ( from == null )
                return;

            if ( info.ButtonID == 0 )
            {
                m_From.SendMessage( m_Mobile.Name +" declines your request to mate the two Korpres." );
                m_Mobile.SendMessage( "You decline "+ m_From.Name +"'s request to mate the two Korpres." );
            }
            if ( info.ButtonID == 1 )
            {
                m_ED1.Blessed = true;
                m_ED1.Pregnant = true;

                Korpre3MatingTimer mt = new Korpre3MatingTimer( m_ED1, TimeSpan.FromDays( 0.0 ) );
                mt.Start();
                m_ED1.EndMating = DateTime.Now + TimeSpan.FromDays( 0.0 );

                m_From.SendMessage( m_Mobile.Name +" accepts your request to mate the two Korpres." );
                m_Mobile.SendMessage( "You accept "+ m_From.Name +"'s request to mate the two Korpres." );
            }
        }