//信息框 2015.9.21 23:36
 public void MsgBox(String text)
 {
     NetMsg.MsgNotice notice = new NetMsg.MsgNotice();
     notice.Create(null, GetGamePackKeyEx());
     byte[] buff = notice.GetMsgBoxBuff(text);
     this.SendData(buff);
 }