diff --git a/ShiftOS-TheRevival/Functions/InGame/LoreManager/IntroStoryTell.vb b/ShiftOS-TheRevival/Functions/InGame/LoreManager/IntroStoryTell.vb index 84db026..53eacad 100644 --- a/ShiftOS-TheRevival/Functions/InGame/LoreManager/IntroStoryTell.vb +++ b/ShiftOS-TheRevival/Functions/InGame/LoreManager/IntroStoryTell.vb @@ -1,7 +1,7 @@ Module IntroStoryTell Public Sub StoryLineIntro(Timestamp As Integer) Select Case Strings.ComputerInfo(3) - Case "0" + Case 0 Select Case Timestamp Case 5 ResetLine("Connected to ") @@ -37,6 +37,35 @@ Terminal_AssignPrompt() TextRebind() End Select + Case 1 + Select Case Timestamp + Case 5 + ResetLine(" Connected") + Case 25 + NewLine(" : Hmmm, you've got your terminal explored enough, ay?") + Case 75 + NewLine(" : I've seen your progress and let's just say, it's quite rough for me.") + Case 145 + NewLine(" : Having to code each functions, programs, and applications while you are using it, haha.") + Case 180 + NewLine(" : I think you've already push the boundary of command line interface for ShiftOS.") + Case 220 + NewLine(" : Let me introduce you to my basic Window Manager for ShiftOS, DuWM.") + Case 270 + NewLine(" : It is capable for handling 2 programs at the same time.") + Case 320 + NewLine(" : And the window manager will evolve as you usually using it.") + Case 380 + NewLine(" : Wonder why you cannot send a message to me while I'm communicating with you?") + Case 420 'That's the number baby! + NewLine(" : Because I only design this to do one-way communication, no reply whatsover.") + Case 475 + NewLine(" : Anyways, you gotta have 200 codepoints to install DuWM") + Case 550 + NewLine(" : Once you able to afford it and installing it, there's a guide to use the window manager") + Case 600 + NewLine(" : Alright, I gotta go now and see you in the next progress.") + End Select End Select End Sub End Module