diff options
| author | EverythingWindows <[email protected]> | 2022-11-24 08:18:00 +0700 |
|---|---|---|
| committer | EverythingWindows <[email protected]> | 2022-11-24 08:18:00 +0700 |
| commit | a594d38810939c8afbf0e12fb970d8aa3fd880e5 (patch) | |
| tree | 0d4dc7b1453e5f619376589ae9c18a63c0e00335 /ShiftOS-TheRevival/Functions/InGame/StoreManager | |
| parent | 537ba4982ec7c8b3a1a3609fe13bc6f0624fee73 (diff) | |
| download | shiftos-therevival-old-a594d38810939c8afbf0e12fb970d8aa3fd880e5.tar.gz shiftos-therevival-old-a594d38810939c8afbf0e12fb970d8aa3fd880e5.tar.bz2 shiftos-therevival-old-a594d38810939c8afbf0e12fb970d8aa3fd880e5.zip | |
Developing Chapter 2 stuff now
Diffstat (limited to 'ShiftOS-TheRevival/Functions/InGame/StoreManager')
| -rw-r--r-- | ShiftOS-TheRevival/Functions/InGame/StoreManager/Shiftoriums.vb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ShiftOS-TheRevival/Functions/InGame/StoreManager/Shiftoriums.vb b/ShiftOS-TheRevival/Functions/InGame/StoreManager/Shiftoriums.vb index 9a8d6af..066b9fd 100644 --- a/ShiftOS-TheRevival/Functions/InGame/StoreManager/Shiftoriums.vb +++ b/ShiftOS-TheRevival/Functions/InGame/StoreManager/Shiftoriums.vb @@ -138,6 +138,10 @@ 'This is for Chapter 2 packages for ShiftOS If Strings.AvailableFeature(35) = 0 Then NewLine("(duwm | 200 CP) Dual Window Manager") + Else + If Strings.AvailableFeature(36) = 0 Then + NewLine("(shifter | 250 CP) Shifter") + End If End If End Sub @@ -451,6 +455,17 @@ NewLine(ManHeader(1)) NormalCommand() End If + Case "shifter" + If Strings.AvailableFeature(36) = 0 Then + ManHeader(0) = "Shifter" + ManHeader(1) = "250 CP" + NewLine(ManHeader(0)) + NewLine(Nothing) + NewLine("Desktop customization program for ShiftOS") + NewLine(Nothing) + NewLine(ManHeader(1)) + NormalCommand() + End If Case Else NormalCommand() Console.TextBox1.Text = Console.TextBox1.Text & Environment.NewLine & "Shiftorium: Bad command or not available" @@ -735,6 +750,7 @@ 'Chapter 2 packages Case "duwm" Strings.AvailableFeature(35) = "1" + Strings.AvailableFeature(36) = "0" success = True End Select If success = False Then |
