aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS-TheRevival/MainForms/SaveLoadSystem.vb
diff options
context:
space:
mode:
authorEverythingWindows <[email protected]>2022-11-14 13:50:43 +0700
committerEverythingWindows <[email protected]>2022-11-14 13:50:43 +0700
commitbd4c45f316d11e124fe5d21d9c5f66e21149fc5d (patch)
treec9b1a4ad85f7d8c6b3cbe05f7769cb04f907dfa3 /ShiftOS-TheRevival/MainForms/SaveLoadSystem.vb
parentb37a6e60c9ffa266fc1fc9afc13cada7704100b0 (diff)
downloadshiftos-therevival-old-bd4c45f316d11e124fe5d21d9c5f66e21149fc5d.tar.gz
shiftos-therevival-old-bd4c45f316d11e124fe5d21d9c5f66e21149fc5d.tar.bz2
shiftos-therevival-old-bd4c45f316d11e124fe5d21d9c5f66e21149fc5d.zip
More organized
Diffstat (limited to 'ShiftOS-TheRevival/MainForms/SaveLoadSystem.vb')
-rw-r--r--ShiftOS-TheRevival/MainForms/SaveLoadSystem.vb9
1 files changed, 9 insertions, 0 deletions
diff --git a/ShiftOS-TheRevival/MainForms/SaveLoadSystem.vb b/ShiftOS-TheRevival/MainForms/SaveLoadSystem.vb
index 5b7f77e..bd61679 100644
--- a/ShiftOS-TheRevival/MainForms/SaveLoadSystem.vb
+++ b/ShiftOS-TheRevival/MainForms/SaveLoadSystem.vb
@@ -3,6 +3,7 @@
Module SaveLoadSystem
Public Sub NewGameMode()
+ 'Sets all features to 2 (Unavailable for Shiftorium) except ShiftOS Key (AvailableFeatures(11))
Directory.Delete(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) & "\ShiftOS\ShiftFS", True)
Directory.Delete(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) & "\ShiftOS\saved", True)
Directory.CreateDirectory(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) & "\ShiftOS\ShiftFS")
@@ -44,9 +45,12 @@ Module SaveLoadSystem
Strings.AvailableFeature(28) = "2"
Strings.AvailableFeature(29) = "2"
Strings.AvailableFeature(30) = "2"
+ '0.2.6 Features
+ Strings.AvailableFeature(31) = "2"
End Sub
Public Sub FreeRoamMode()
+ 'Sets all features to as bought
Strings.ComputerInfo(0) = "shiftos"
Strings.ComputerInfo(1) = "user"
Strings.ComputerInfo(2) = "0"
@@ -84,9 +88,12 @@ Module SaveLoadSystem
Strings.AvailableFeature(28) = "3"
Strings.AvailableFeature(29) = "1"
Strings.AvailableFeature(30) = "1"
+ '0.2.6 Features
+ Strings.AvailableFeature(31) = "1"
End Sub
Public Sub GodMode()
+ 'Same as new game but codepoints automatically assigned to 9999 and not saved into the FS
Strings.ComputerInfo(0) = "shiftos"
Strings.ComputerInfo(1) = "user"
Strings.ComputerInfo(2) = 9999
@@ -123,6 +130,8 @@ Module SaveLoadSystem
Strings.AvailableFeature(28) = "2"
Strings.AvailableFeature(29) = "2"
Strings.AvailableFeature(30) = "2"
+ '0.2.6 Features
+ Strings.AvailableFeature(31) = "2"
End Sub
Public Sub SaveGame()