public override void Update() { base.Update(); if (Time.realtimeSinceStartup - this.m_fOpenTime > 2f && !this.bIsSendPacket) { if (NrTSingleton <NewExplorationManager> .Instance.Send_GS_NEWEXPLORATION_START_REQ()) { this.bIsSendPacket = true; MsgBoxUI msgBoxUI = NrTSingleton <FormsManager> .Instance.GetForm(G_ID.MSGBOX_DLG) as MsgBoxUI; if (msgBoxUI != null) { msgBoxUI.Close(); } } else { NrTSingleton <FormsManager> .Instance.LoadForm(G_ID.NEWEXPLORATION_MAIN_DLG); this.Close(); } } }