示例#1
0
		public override void OnResponse( Server.Network.NetState state, RelayInfo info )
		{
			if( info.ButtonID >= 1 && info.ButtonID <= _list.Length )
			{
				PageEntryGump g = new PageEntryGump( state.Mobile, _list[info.ButtonID - 1] );

				g.SendTo( state );
			}
		}
示例#2
0
        public override void OnResponse(Server.Network.NetState state, RelayInfo info)
        {
            if (info.ButtonID >= 1 && info.ButtonID <= _list.Length)
            {
                PageEntryGump g = new PageEntryGump(state.Mobile, _list[info.ButtonID - 1]);

                g.SendTo(state);
            }
        }
示例#3
0
		public void Resend( NetState state )
		{
			PageEntryGump g = new PageEntryGump( _mobile, _entry );

			g.SendTo( state );
		}
示例#4
0
        public void Resend(NetState state)
        {
            PageEntryGump g = new PageEntryGump(_mobile, _entry);

            g.SendTo(state);
        }