blob: fe0457f600c97ae21e1423249c93c3a9c30cb8e5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
private void tmrfirstrun_Tick(object sender, EventArgs e)
{
switch (firstrun)
{
case 1:
txtterm.Text = txtterm.Text + "Installation Successfull" + Environment.NewLine;
blockctrlt = true;
break;
case 2:
txtterm.Text = txtterm.Text + "IP 199.108.232.1 Connecting..." + Environment.NewLine + "User@" + SaveSystem.Utilities.LoadedSave.osname + " $> ";
API.PlaySound(Properties.Resources.dial_up_modem_02);
break;
case 12:
txtterm.Text = txtterm.Text + "IP 199.108.232.1 Connected!" + Environment.NewLine + "User@" + SaveSystem.Utilities.LoadedSave.osname + " $> ";
API.PlaySound(Properties.Resources.writesound);
break;
case 15:
txtterm.Text = txtterm.Text + "DevX: Hi, my name is DevX and you are now using an early version of my operating system \"ShiftOS\"." + Environment.NewLine + "User@ShiftOS $> ";
API.PlaySound(Properties.Resources.writesound);
break;
case 22:
txtterm.Text = txtterm.Text + "DevX: Currently the terminal is open and I am using it to communicate with you remotely." + Environment.NewLine + "User@ShiftOS $> ";
API.PlaySound(Properties.Resources.writesound);
break;
case 28:
txtterm.Text = txtterm.Text + "DevX: ShiftOS is going to be the most revolutionary operating system in the world that will run on every electronic device you can think of." + Environment.NewLine + "User@ShiftOS $> ";
API.PlaySound(Properties.Resources.writesound);
break;
case 36:
txtterm.Text = txtterm.Text + "DevX: I can't tell you much about my future plans right now but if you can help me then I may tell you more in future" + Environment.NewLine + "User@ShiftOS $> ";
API.PlaySound(Properties.Resources.writesound);
break;
case 44:
txtterm.Text = txtterm.Text + "DevX: ShiftOS is barely usable in it's current state so I need you to help me evolve it using codepoints" + Environment.NewLine + "User@ShiftOS $> ";
API.PlaySound(Properties.Resources.writesound);
break;
case 50:
txtterm.Text = txtterm.Text + "DevX: Once you acquire codepoints you can use them to upgrade certain components of ShiftOS or add new software" + Environment.NewLine + "User@ShiftOS $> ";
API.PlaySound(Properties.Resources.writesound);
break;
case 59:
txtterm.Text = txtterm.Text + "DevX: I'll close the terminal now and send you to the blank ShiftOS desktop" + Environment.NewLine + "User@ShiftOS $> ";
API.PlaySound(Properties.Resources.writesound);
break;
case 65:
txtterm.Text = txtterm.Text + "DevX: You can open and close the terminal at any time by pressing CTRL + T" + Environment.NewLine + "User@ShiftOS $> ";
API.PlaySound(Properties.Resources.writesound);
break;
case 70:
txtterm.Text = txtterm.Text + "DevX: Once you are on the desktop open the terminal, type \"help\" and then press enter for a guide on using ShiftOS" + Environment.NewLine + "User@ShiftOS $> ";
API.PlaySound(Properties.Resources.writesound);
break;
case 80:
txtterm.Text = txtterm.Text + "DevX: Gotta run now but I'll contact you soon to see how you are going with evolving ShiftOS for me while I... Work on something else" + Environment.NewLine + "User@ShiftOS $> ";
API.PlaySound(Properties.Resources.writesound);
break;
case 89:
txtterm.Text = txtterm.Text + "DevX: Remember to always click the black desktop first and then press press CTRL + T to open the terminal otherwise the terminal won't open!" + Environment.NewLine + "User@ShiftOS $> ";
API.PlaySound(Properties.Resources.writesound);
break;
case 94:
API.PlaySound(Properties.Resources.typesound);
txtterm.Text = "User@" + SaveSystem.Utilities.LoadedSave.osname + " $> ";
tmrfirstrun.Stop();
this.Close();
blockctrlt = false;
SaveSystem.Utilities.saveGame();
break;
}
firstrun = firstrun + 1;
txtterm.SelectionStart = txtterm.TextLength;
}
|