aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS-TheRevival/MainForms/ShiftOSMenu.vb
diff options
context:
space:
mode:
authorEverythingWindows <[email protected]>2022-11-07 19:22:19 +0700
committerEverythingWindows <[email protected]>2022-11-07 19:22:19 +0700
commit0a2b03e31283da77d6feaa2fd9d65349a9e82602 (patch)
tree7c41ad58c6c5ee967dec4ac988e85d23b3259455 /ShiftOS-TheRevival/MainForms/ShiftOSMenu.vb
parent8e9314fd63a107720e0473412b6328d4675fb025 (diff)
downloadshiftos-therevival-old-0a2b03e31283da77d6feaa2fd9d65349a9e82602.tar.gz
shiftos-therevival-old-0a2b03e31283da77d6feaa2fd9d65349a9e82602.tar.bz2
shiftos-therevival-old-0a2b03e31283da77d6feaa2fd9d65349a9e82602.zip
Refined ShiftOS Menu to be more finished and added del command
Diffstat (limited to 'ShiftOS-TheRevival/MainForms/ShiftOSMenu.vb')
-rw-r--r--ShiftOS-TheRevival/MainForms/ShiftOSMenu.vb18
1 files changed, 15 insertions, 3 deletions
diff --git a/ShiftOS-TheRevival/MainForms/ShiftOSMenu.vb b/ShiftOS-TheRevival/MainForms/ShiftOSMenu.vb
index 73f0c32..12b7dfe 100644
--- a/ShiftOS-TheRevival/MainForms/ShiftOSMenu.vb
+++ b/ShiftOS-TheRevival/MainForms/ShiftOSMenu.vb
@@ -51,12 +51,18 @@ Public Class ShiftOSMenu
Close()
End Try
Case "Continue"
- MsgBox("This feature is in development")
Strings.IsFree = False
Strings.OnceInfo(6) = "story"
Terminal.Show()
Terminal.StayAtChapter = True
Close()
+ Case "No"
+ Label3.Visible = False
+ btn_StoryMode.Text = "Story Mode"
+ btn_FreeRoam.Text = "Free Roam Mode"
+ btn_Aboot.Text = "About"
+ btn_Aboot.Visible = True
+ btn_Exit.Visible = True
End Select
End Sub
@@ -68,9 +74,15 @@ Public Class ShiftOSMenu
btn_Aboot.Text = "Back"
btn_Exit.Visible = False
Case "New Game"
+ Label3.Text = "Are you sure?"
+ Label3.Visible = True
+ btn_StoryMode.Text = "Yes"
+ btn_FreeRoam.Text = "No"
+ btn_Aboot.Visible = False
+ btn_Exit.Visible = False
+ Case "Yes"
Strings.IsFree = False
Strings.OnceInfo(6) = "story"
- MsgBox("This feature is in development, be sure to watch out for bugs")
IntroStory.Show()
NewGameMode()
Close()
@@ -149,7 +161,7 @@ Public Class ShiftOSMenu
Label2.Text = "Debug it your way"
End Sub
- Private Sub Label2_Click(sender As Object, e As EventArgs) Handles Label2.Click
+ Private Sub Label2_Click(sender As Object, e As EventArgs) Handles Label2.Click, Label3.Click
If Label2.Text = "Debug it your way" Then
Strings.IsFree = True
GodMode()