aboutsummaryrefslogtreecommitdiff
path: root/source/WindowsFormsApplication1/Apps
diff options
context:
space:
mode:
Diffstat (limited to 'source/WindowsFormsApplication1/Apps')
-rw-r--r--source/WindowsFormsApplication1/Apps/Shiftnet.Designer.cs1
-rw-r--r--source/WindowsFormsApplication1/Apps/Shiftnet.cs10
-rw-r--r--source/WindowsFormsApplication1/Apps/Terminal.cs1821
3 files changed, 934 insertions, 898 deletions
diff --git a/source/WindowsFormsApplication1/Apps/Shiftnet.Designer.cs b/source/WindowsFormsApplication1/Apps/Shiftnet.Designer.cs
index 5d20f14..cafae5f 100644
--- a/source/WindowsFormsApplication1/Apps/Shiftnet.Designer.cs
+++ b/source/WindowsFormsApplication1/Apps/Shiftnet.Designer.cs
@@ -90,6 +90,7 @@
this.txtaddress.Size = new System.Drawing.Size(640, 20);
this.txtaddress.TabIndex = 0;
this.txtaddress.Text = "shiftnet://main";
+ this.txtaddress.TextChanged += new System.EventHandler(this.txtaddress_TextChanged);
//
// wbshiftnet
//
diff --git a/source/WindowsFormsApplication1/Apps/Shiftnet.cs b/source/WindowsFormsApplication1/Apps/Shiftnet.cs
index cbcab1b..017377c 100644
--- a/source/WindowsFormsApplication1/Apps/Shiftnet.cs
+++ b/source/WindowsFormsApplication1/Apps/Shiftnet.cs
@@ -60,11 +60,17 @@ namespace ShiftOS
wbshiftnet.DocumentText = WebLayer.VisitSite("shiftnet://main");
txtaddress.Text = WebLayer.LastUrl;
}
+
+ private void txtaddress_TextChanged(object sender, EventArgs e)
+ {
+
+ }
}
public class WebLayer
{
- private static string HtmlTemplate = "<html><head><title>Shiftnet Page</title><link rel=\"stylesheet\" href=\"http://playshiftos.ml/shiftnet.css\"/></head><body>#BODY#</body></html>";
+ public static String serverurl = "http://playshiftos.ml";
+ private static string HtmlTemplate = "<html><head><title>Shiftnet Page</title><link rel=\"stylesheet\" href=\"" + serverurl + "/shiftnet.css\"/></head><body>#BODY#</body></html>";
public static string LastUrl = null;
public static string VisitSite(string url)
@@ -74,7 +80,7 @@ namespace ShiftOS
{
try
{
- string content = wc.DownloadString(url.Replace("shiftnet://", "http://www.playshiftos.ml/shiftnet/www/"));
+ string content = wc.DownloadString(url.Replace("shiftnet://", serverurl + "/shiftnet/www/"));
if (content.StartsWith("<!STML>"))
{
LastUrl = url;
diff --git a/source/WindowsFormsApplication1/Apps/Terminal.cs b/source/WindowsFormsApplication1/Apps/Terminal.cs
index 1d39f70..6e9828b 100644
--- a/source/WindowsFormsApplication1/Apps/Terminal.cs
+++ b/source/WindowsFormsApplication1/Apps/Terminal.cs
@@ -36,64 +36,6 @@ namespace ShiftOS
current_dir = Paths.SaveRoot;
}
- public void StartOtherPlayerStory()
- {
- var t = new System.Windows.Forms.Timer();
- t.Interval = 4000;
- int i = 0;
- t.Tick += (object s, EventArgs a) =>
- {
- switch(i)
- {
- case 0:
- WriteLine("IP Address <hidden> is connecting as '???'...");
- break;
- case 1:
- WriteLine("Connection established.");
- break;
- case 2:
- WriteLine("???: Hi, ShiftOS user. I have something to tell you.");
- break;
- case 3:
- WriteLine("???: I'm not a hacker. I'm not a programmer. I am just like you.");
- break;
- case 4:
- WriteLine("???: I am... the Other Player.");
- break;
- case 5:
- WriteLine("???: I too have heard DevX's story about ShiftOS being an experimental operating system.");
- break;
- case 6:
- WriteLine("???: I have also met another user. We'll call him... I don't know... Robert.");
- break;
- case 7:
- WriteLine("???: And this Robert guy, well, he knows a lot about ShiftOS, and DevX.");
- break;
- case 8:
- WriteLine("???: Robert is a fake name I'm calling him. You might know him as Hacker101.");
- break;
- case 9:
- WriteLine("???: Anyways, He told me about you, so I figured I would help you get out of this mess.");
- break;
- case 10:
- WriteLine("???: He said he'll help me get my hard drive back, and get ShiftOS off my system. Once he does, I'll tell you.");
- break;
- case 11:
- WriteLine("???: In the meantime, I have one word for you. Survive. Do NOT let DevX get to you. Do not fall for his tricks. Just play along until I contact you.");
- break;
- case 12:
- WriteLine("???: I'll talk to you about this soon.");
- break;
- case 13:
- t.Stop();
- this.Close();
- API.Upgrades["otherplayerstory1"] = true;
- break;
- }
- i += 1;
- };
- t.Start();
- }
public bool ModLogger = false;
@@ -101,14 +43,15 @@ namespace ShiftOS
{
objToWriteTo = this.txtterm;
SaveSystem.Utilities.LoadedSave.newgame = false;
- if(API.Upgrades["windowedterminal"] == true)
+ if (API.Upgrades["windowedterminal"] == true)
{
this.WindowState = FormWindowState.Normal;
- } else
+ }
+ else
{
this.WindowState = FormWindowState.Maximized;
}
-
+
txtterm.KeyDown += new KeyEventHandler(txtterm_KeyPress);
txtterm.Click += new EventHandler(txtterm_Click);
tmrfirstrun.Tick += new EventHandler(tmrfirstrun_Tick);
@@ -137,7 +80,8 @@ namespace ShiftOS
if (a.Delta > 0)
{
ZoomMultiplier += 1;
- } else
+ }
+ else
{
ZoomMultiplier -= 1;
}
@@ -152,14 +96,14 @@ namespace ShiftOS
ResetTerminalFont();
StartLogCheck();
tmrsetfont.Start();
-
+
}
-
+
private void StartLogCheck()
{
- if(ModLogger == true)
+ if (ModLogger == true)
{
var tmrlog = new System.Windows.Forms.Timer();
tmrlog.Interval = 500;
@@ -245,8 +189,9 @@ namespace ShiftOS
// ERROR: Handles clauses are not supported in C#
private void txtterm_KeyPress(object sender, System.Windows.Forms.KeyEventArgs e)
{
- if(e.Control) {
- if(API.Upgrades["zoomableterminal"] == true)
+ if (e.Control)
+ {
+ if (API.Upgrades["zoomableterminal"] == true)
{
Zooming = true;
}
@@ -315,13 +260,14 @@ namespace ShiftOS
e.SuppressKeyPress = true;
trackpos = trackpos - 1;
}
- else {
+ else
+ {
trackpos = trackpos - 2;
}
}
else
{
- switch(SelectedMode)
+ switch (SelectedMode)
{
case 1:
if (SelectedCharacter > 0)
@@ -351,7 +297,8 @@ namespace ShiftOS
trackpos += API.LastRanCommand.Length;
txtterm.Select(txtterm.TextLength, 0);
}
- else {
+ else
+ {
trackpos = trackpos - 1;
}
break;
@@ -412,7 +359,7 @@ namespace ShiftOS
}
else
{
- switch(SelectedMode)
+ switch (SelectedMode)
{
case 1:
ShiftOS.Hacking.StartHack(SelectedCharacter, UpgradeToHack);
@@ -420,7 +367,7 @@ namespace ShiftOS
break;
case 2:
var c = ShiftOS.Hacking.Characters[SelectedCharacter].Cost;
- if(API.Codepoints >= c)
+ if (API.Codepoints >= c)
{
API.RemoveCodepoints(c);
ShiftOS.Hacking.StartHackWithCharacter(SelectedCharacter, UpgradeToHack);
@@ -438,10 +385,11 @@ namespace ShiftOS
{
trackpos = 0;
var lua = txtterm.Lines[txtterm.Lines.Length - 1];
- try {
+ try
+ {
Interpreter.mod(lua);
}
- catch(Exception ex)
+ catch (Exception ex)
{
WriteLine(ex.Message);
}
@@ -452,14 +400,17 @@ namespace ShiftOS
txtterm.Select(txtterm.TextLength, 0);
}
}
- else {
+ else
+ {
if (e.KeyCode == Keys.Back)
{
}
- else {
- if (Viruses.InfectedWith("keyboardfucker")) {
+ else
+ {
+ if (Viruses.InfectedWith("keyboardfucker"))
+ {
var rnd = new Random();
- if(rnd.Next(0, 20) == 10)
+ if (rnd.Next(0, 20) == 10)
{
e.Handled = true;
txtterm.Text += Viruses.KeyboardInceptor.Intercept();
@@ -470,7 +421,8 @@ namespace ShiftOS
trackpos += 1;
}
}
- else {
+ else
+ {
trackpos = trackpos + 1;
}
}
@@ -482,12 +434,14 @@ namespace ShiftOS
{
e.SuppressKeyPress = true;
}
- else {
+ else
+ {
if (txtterm.SelectedText.Length < 1)
{
trackpos = trackpos - 1;
}
- else {
+ else
+ {
e.SuppressKeyPress = true;
}
}
@@ -501,734 +455,11 @@ namespace ShiftOS
}
- internal void StartShellShock()
- {
- var t = new Thread(new ThreadStart(new Action(() =>
- {
- Thread.Sleep(300);
- WriteLine("Sending false packet to shiftnet://devx/tracker...");
- Thread.Sleep(100);
- WriteLine("Awaiting reply from server...");
- Thread.Sleep(5000);
- WriteLine("Got reply with header \"SOS_TRK_GET\".");
- Thread.Sleep(50);
- WriteLine("[kernel] Sending usage log to server...");
- WriteLine("Intercepting outgoing request...");
- Thread.Sleep(200);
- WriteLine("Got packet contents...");
- Thread.Sleep(25);
- WriteLine("Sifting...");
- Thread.Sleep(500);
- WriteLine("Found connection data for shiftnet://devx/tracker.");
- Thread.Sleep(100);
- WriteLine(@"Username: devx
-Password: z7fjsd3");
- Thread.Sleep(100);
- WriteLine("Authenticating with SSH server on shiftnet://devx/tracker running Arch Linux x86_64...");
- Thread.Sleep(1000);
- WriteLine("[SSH] Access granted.");
- Thread.Sleep(100);
- WriteLine($"[Message] ???: We're in. In about 75 seconds DevX's server will go down. It'll be quite cool actually, Don't know if you've ever seen a forkbomb in action, but because you're in an SSH session with DevX's server and I'm also controlling the same session you're gonna see one. Oh, yeah, this server's the only one of his that doesn't actually run ShiftOS.");
- Thread.Sleep(25000);
- this.Invoke(new Action(() =>
- {
- txtterm.Text = "";
- }));
- int i = 60;
- while(i >= 1)
- {
- Thread.Sleep(1000);
- WriteLine($"Beginning attack on server in {i} seconds.");
- i -= 1;
- }
- WriteLine("[devx@tracker ~]$ ");
- string cmd = ":`(`)`{` `:`|`:` `&` `}`;`:"; //yep. I'm pretending to use a forkbomb on DevX's server. This'll be FUN to code. </sarcasm>
- foreach(string c in cmd.Split('`'))
- {
- Thread.Sleep(100);
- this.Invoke(new Action(() =>
- {
- txtterm.Text += c;
- }));
- }
- WriteLine("[devx@tracker ~]$ ");
- WriteLine("[Message] ???: Alright. I entered the command for you. Looks like it did nothing. DevX wouldn't even know what's happening... but keep your terminal open for 30 seconds.");
- Thread.Sleep(30000);
- this.Invoke(new Action(() =>
- {
- FinalMission.EndGameHandler.GoToNextObjective();
- }));
- int progress = 0;
- while(progress <= 10000)
- {
- int r = new Random().Next(0, 1);
- switch(r)
- {
- case 0:
- WriteLine("-bash: fork: Resource temporarily unavailable");
- break;
- case 1:
- WriteLine("-bash: fork: retry: Resource temporarily unavailable");
- break;
- }
- Thread.Sleep(progress / 10);
- progress++;
- }
- WriteLine("[SSH] Connection to server dropped.");
- this.Invoke(new Action(() =>
- {
- FinalMission.EndGameHandler.GoToNextObjective();
- }));
- this.Invoke(new Action(() => { this.Close(); }));
- })));
- t.Start();
- }
-
public void SetPrefix(string _prefix)
{
- prefix = _prefix;
+ prefix = _prefix;
}
- internal void StartBridgeToMidGame()
- {
- var t2 = new System.Windows.Forms.Timer();
- t2.Interval = 4000;
- int i2 = 0;
- t2.Tick += (object s, EventArgs e) =>
- {
- switch (i2)
- {
- case 0:
- if(API.Upgrades["hacker101"] == true)
- {
- WriteLine("Hacker101: Hello. We meet again. The Other Player told me about your situation.");
- }
- else
- {
- API.Upgrades["hacker101"] = true;
- WriteLine("Hacker101: The Other Player told me about your situation.");
- }
- break;
- case 1:
- WriteLine("Hacker101: Lemme guess. DevX found out about you having the Shiftnet, didn't he...");
- break;
- case 2:
- WriteLine("Hacker101: Well I guess we'll have to fight fire with fire. You remember that person who told you about Hacker Battles?");
- break;
- case 3:
- WriteLine("Hacker101: It's time you know who he is. He is, in fact, me, and to continue on about Hacker Battles...");
- break;
- case 4:
- WriteLine("Hacker101: I can help you take down DevX, but we'll need to take down his defenses and get into his network.");
- break;
- case 5:
- WriteLine("Hacker101: DevX's network of servers is larger than any datacenter on Earth, and it'll take time to plan the perfect attack.");
- break;
- case 6:
- WriteLine("Hacker101: Think of it this way. DevX has a network of networks, each with their own leader.");
- break;
- case 7:
- WriteLine("Hacker101: I can help you find these networks, but it's up to you to take 'em down.");
- break;
- case 8:
- WriteLine("Hacker101: Of course, it's hard to hack a network if you don't know how to start a battle.");
- break;
- case 9:
- WriteLine("Hacker101: Introducing the Battle Preparation Screen.");
- break;
- case 10:
- WriteLine("Hacker101: It'll show you any network I've found, and it'll tell you some useful info about it.");
- break;
- case 11:
- WriteLine("Hacker101: However the spkg package for this thing is HUGE, and will require lots of tweaks to the ShiftOS desktop. spkg will hopefully administer the tweaks for you, but here's a rundown of what'll happen.");
- break;
- case 12:
- WriteLine("Hacker101: For one, you'll be able to have multiple desktop panels to fit more widgets on them.");
- break;
- case 13:
- WriteLine("Hacker101: And if you have the App Launcher, it will get sorted so it doesn't take up the entire screen when you get so many applications installed.");
- break;
- case 14:
- WriteLine("Hacker101: And the rest is a surprise. I'll initiate the install sequence.");
- break;
- case 15:
- InstallMidGameDesktop();
- break;
- }
- i2 += 1;
- };
-
- var t = new System.Windows.Forms.Timer();
- t.Interval = 4000;
- int i = 0;
-
- t.Tick += (object s, EventArgs a) =>
- {
-
-
- switch (i)
- {
- case 0:
- WriteLine("IP <hidden> connecting as Hacker101...");
- break;
- case 1:
- WriteLine("Hacker101: Hello, ShiftOS user. I am a hacker.");
- break;
- case 2:
- if (API.BitnoteAddress != null)
- {
- WriteLine($"Hacker101: I can prove it. You have {API.Codepoints} Codepoints, your Bitnote Address is {API.BitnoteAddress.Address}, and you have {API.BitnoteAddress.Bitnotes}. That's your private address, by the way.");
- }
- else
- {
- WriteLine($"Hacker101: I can prove it. You have {API.Codepoints} Codepoints, and you do not have a Bitnote Address.");
- }
- break;
- case 3:
- WriteLine("Hacker101: Enough fun in games. Listen. There are two things you need to know.");
- break;
- case 4:
- WriteLine("Hacker101: Thing #1. DevX isn't real.");
- break;
- case 5:
- WriteLine("Hacker101: I've decompiled parts of ShiftOS. And you know what I found?");
- break;
- case 6:
- WriteLine("Hacker101: Everything DevX says. Everything he does. Everything he THINKS. It's all hardcoded directly into ShiftOS's core.");
- break;
- case 7:
- WriteLine("Hacker101: Want proof? Here. I'll run a quick Lua script for you.");
- string DecompiledCode = Properties.Resources.DecompiledCode;
- var l = new LuaInterpreter();
- Form win = l.mod.create_window("Decompiled Code", null, 720, 480);
- TextBox txt = new TextBox();
- txt.Multiline = true;
- txt.Text = Properties.Resources.DecompiledCode;
- txt.BorderStyle = BorderStyle.None;
- txt.BackColor = Color.Black;
- txt.ForeColor = Color.White;
- txt.Font = new Font(OSInfo.GetMonospaceFont(), 9);
- l.mod.set_dock(txt, "fill");
- l.mod.add_widget_to_window(win, txt);
- break;
- case 8:
- WriteLine("Hacker101: Not only is that some nice, smokin' fresh C# code directly from ShiftOS, but that's a nice steaming pile of bird poop on DevX's doorstep.");
- break;
- case 9:
- WriteLine("Hacker101: Thing #2. The Shiftnet holds some secrets.");
- break;
- case 10:
- WriteLine("Hacker101: What kind of secrets, I hear you ask through your microphone (jesus, do you seriously talk to us with your voice? Are you that bored?)");
- break;
- case 11:
- WriteLine("Hacker101: Well. I'm talking, pieces of a Lua script that could help stop DevX dead in his digital tracks.");
- break;
- case 12:
- WriteLine("Hacker101: All you gotta do is use my decryption utilities to find the pieces of this encrypted script, download them, decrypt them, and the utility will automatically piece them together for you.");
- break;
- case 13:
- WriteLine("Hacker101: Shiftnet pages ending with .enc are your best bet.");
- break;
- case 14:
- WriteLine("Hacker101: You can install the utilities using spkg install secret.");
- break;
- case 15:
- WriteLine("Hacker101: Then, when the application installs, run it, and use the password 'binary_hell' to install the REAL utilities.");
- break;
- case 16:
- WriteLine("Hacker101: Anyways, that wraps that up. But hang on. One more thing...");
- t.Stop();
- ShiftOS.Hacking.AddCharacter(new Character("Hacker101", "Let's get the job done.", 75, 45, 5));
- t2.Start();
- break;
- }
- i += 1;
- };
- if(API.Upgrades["hacker101"] == true)
- {
- t2.Start();
- }
- else
- {
- t.Start();
- }
-
-
- }
-
- private void InstallMidGameDesktop()
- {
- //throw new NotImplementedException();
- }
-
- int SelectedMode = 0;
- int SelectedCharacter = 0;
-
- public void ShowChar()
- {
- txtterm.Text = "";
- var h = ShiftOS.Hacking.Characters[SelectedCharacter];
- WriteLine(" == Partner Select ==");
- WriteLine($"Partner: {SelectedCharacter + 1}/{ShiftOS.Hacking.Characters.Count}");
- WriteLine($"Name: {h.Name}");
- WriteLine($"Skill: {h.Skill}/100");
- WriteLine($"Speed: {h.Speed}/100");
- WriteLine($"Cost: {h.Cost}");
- WriteLine($"Bio: {h.Bio}");
- WriteLine(Environment.NewLine + "LEFT: Previous Partner, RIGHT: Next Partner, ENTER: Confirm");
- }
-
- public void ShowTools()
- {
- txtterm.Text = "";
- try
- {
- var h = ShiftOS.Hacking.Tools[SelectedCharacter];
- WriteLine(" == Attack Select ==");
- WriteLine($"Attack: {SelectedCharacter + 1}/{ShiftOS.Hacking.Tools.Count}");
- WriteLine($"Name: {h.Name}");
- WriteLine($"Effectiveness: {h.Effectiveness}");
- WriteLine($"Description: {h.Description}");
- WriteLine(Environment.NewLine + "LEFT: Previous Attack, RIGHT: Next Attack, ENTER: Confirm");
- }
- catch
- {
- WriteLine("There are no entries to display in this list.");
- }
- }
-
- private void Hack_ShowCharacters()
- {
- switch(SelectedMode)
- {
- case 1:
- ShiftOS.Hacking.GetCharacters();
- SelectedCharacter = 0;
- ShowTools();
- break;
- case 2:
- ShiftOS.Hacking.GetCharacters();
- SelectedCharacter = 0;
- ShowChar();
- break;
- }
- }
-
- internal void StartAidenNirhStory()
- {
- var t = new System.Windows.Forms.Timer();
- t.Interval = 4000;
- int i = 0;
- t.Tick += (object s, EventArgs a) =>
- {
- switch(i)
- {
- case 0:
- WriteLine("User 151.43.85.33 connecting as \"Aiden\"...");
- break;
- case 2:
- WriteLine($"Aiden: Hey there, {API.Username}1 I'm Aiden Nirh.");
- break;
- case 3:
- WriteLine("Aiden: Have you seen Appscape?");
- break;
- case 4:
- WriteLine("Aiden: It's my package manager for ShiftOS. It's pretty neat.");
- break;
- case 5:
- WriteLine("Aiden: You should check it out, it's on the Shiftnet at shiftnet://main/appscape!");
- break;
- case 6:
- WriteLine("Aiden: But remember, when browsing the Shiftnet try not to venture from the main server!");
- break;
- case 7:
- API.Upgrades["aidennirh"] = true;
- t.Stop();
- this.Close();
- break;
- }
- i += 1;
- };
- t.Start();
- }
-
- internal void StartHacker101Story()
- {
- var t = new System.Windows.Forms.Timer();
- t.Interval = 4000;
- int i = 0;
-
- t.Tick += (object s, EventArgs a) =>
- {
- switch(i)
- {
- case 0:
- WriteLine("IP <hidden> connecting as Hacker101...");
- break;
- case 1:
- WriteLine("Hacker101: Hello, ShiftOS user. I am a hacker.");
- break;
- case 2:
- if (API.BitnoteAddress != null)
- {
- WriteLine($"Hacker101: I can prove it. You have {API.Codepoints} Codepoints, your Bitnote Address is {API.BitnoteAddress.Address}, and you have {API.BitnoteAddress.Bitnotes}. That's your private address, by the way.");
- }
- else
- {
- WriteLine($"Hacker101: I can prove it. You have {API.Codepoints} Codepoints, and you do not have a Bitnote Address.");
- }
- break;
- case 3:
- WriteLine("Hacker101: Enough fun in games. Listen. There are two things you need to know.");
- break;
- case 4:
- WriteLine("Hacker101: Thing #1. DevX isn't real.");
- break;
- case 5:
- WriteLine("Hacker101: I've decompiled parts of ShiftOS. And you know what I found?");
- break;
- case 6:
- WriteLine("Hacker101: Everything DevX says. Everything he does. Everything he THINKS. It's all hardcoded directly into ShiftOS's core.");
- break;
- case 7:
- WriteLine("Hacker101: Want proof? Here. I'll run a quick Lua script for you.");
- string DecompiledCode = Properties.Resources.DecompiledCode;
- var l = new LuaInterpreter();
- Form win = l.mod.create_window("Decompiled Code", null, 720, 480);
- TextBox txt = new TextBox();
- txt.Multiline = true;
- txt.Text = Properties.Resources.DecompiledCode;
- txt.BorderStyle = BorderStyle.None;
- txt.BackColor = Color.Black;
- txt.ForeColor = Color.White;
- txt.Font = new Font(OSInfo.GetMonospaceFont(), 9);
- l.mod.set_dock(txt, "fill");
- l.mod.add_widget_to_window(win, txt);
- break;
- case 8:
- WriteLine("Hacker101: Not only is that some nice, smokin' fresh C# code directly from ShiftOS, but that's a nice steaming pile of bird poop on DevX's doorstep.");
- break;
- case 9:
- WriteLine("Hacker101: Thing #2. The Shiftnet holds some secrets.");
- break;
- case 10:
- WriteLine("Hacker101: What kind of secrets, I hear you ask through your microphone (jesus, do you seriously talk to us with your voice? Are you that bored?)");
- break;
- case 11:
- WriteLine("Hacker101: Well. I'm talking, pieces of a Lua script that could help stop DevX dead in his digital tracks.");
- break;
- case 12:
- WriteLine("Hacker101: All you gotta do is use my decryption utilities to find the pieces of this encrypted script, download them, decrypt them, and the utility will automatically piece them together for you.");
- break;
- case 13:
- WriteLine("Hacker101: Shiftnet pages ending with .enc are your best bet.");
- break;
- case 14:
- WriteLine("Hacker101: You can install the utilities using spkg install secret.");
- break;
- case 15:
- WriteLine("Hacker101: Then, when the application installs, run it, and use the password 'binary_hell' to install the REAL utilities.");
- break;
- case 16:
- WriteLine("Hacker101: Now go. We need that script. I know a friend who will help you get your hard drive back from DevX if you can do this.");
- t.Stop();
- ShiftOS.Hacking.AddCharacter(new Character("Hacker101", "Let's get the job done.", 75, 45, 5));
- API.Upgrades["hacker101"] = true;
- this.Close();
- break;
- }
- i += 1;
- };
- t.Start();
- }
-
- internal void StartOtherPlayerSysFix()
- {
- var t = new System.Windows.Forms.Timer();
- t.Interval = 4000;
- int i = 0;
- t.Tick += (object s, EventArgs a) =>
- {
- switch(i)
- {
- case 0:
- WriteLine("User <hidden> connected as ???.");
- break;
- case 1:
- if(API.Upgrades["otherplayerstory"] == true)
- {
- WriteLine($"???: {API.Username}! Did he find out? Oh God, I hope he can see this...");
- }
- else
- {
- WriteLine("???: Hello? Uhhhh, is this stupid thing working?");
- }
- break;
- case 2:
- if(API.Upgrades["otherplayerstory"] == true)
- {
- WriteLine("???: Ahh. Good. You can read this. It's me, the other player.");
- }
- else
- {
- WriteLine("???: Thank heaven. You can hear me. Don't ask who I am.");
- }
- break;
- case 3:
- WriteLine("???: Looks like DevX hit you hard. Guess he found out you had the Shiftnet.");
- break;
- case 4:
- WriteLine("???: Relax. It's not your fault.");
- break;
- case 5:
- WriteLine("???: Actually, the Shiftnet regularly sends data about it's usage, unencrypted, directly to DevX.");
- break;
- case 6:
- WriteLine("???: This code seems to be embedded into all .saa files. It's actually how I found out about you.");
- break;
- case 7:
- WriteLine("???: It seems weird, I know, but everytime you run a .saa file, an uplink is made to DevX's servers");
- break;
- case 8:
- if (API.Upgrades["otherplayerstory"] == true)
- {
- WriteLine("???: And, well, I think we could use this. I'll see if Hacker101 can track this uplink. If he can, you will know it the next time you run a .saa.");
- }
- else
- {
- WriteLine("???: And, well, I think we could use this. I have a friend who's good with his hacking skills. I'll see if he can help you stop DevX dead. If he can, he will contact you next time you run a .saa.");
- }
- break;
- case 9:
- WriteLine("???: Anyways, connected to your system, I can see your desktop. Looks pretty messed up, huh?");
- break;
- case 10:
- WriteLine("???: You're lucky you don't have the Windows Everywhere virus.");
- break;
- case 11:
- Viruses.InfectFile(Paths.Drivers + "Keyboard.dri", Viruses.VirusID.WindowsEverywhere);
- Viruses.CheckForInfected();
- WriteLine("???: Crap! I spoke too soon.");
- break;
- case 12:
- WriteLine("???: Alright. I'll see if I can hijack your Shiftorium Registry, install a virus scanner, and get rid of the viruses.");
- break;
- case 13:
- API.Upgrades["virusscanner"] = true;
- var trm = new Terminal();
- API.CreateForm(trm, API.LoadedNames.TerminalName, Properties.Resources.iconTerminal);
- trm.command = "vscan";
- trm.DoCommand();
- break;
- case 14:
- WriteLine("???: All better. I hope. As for those random files on your desktop, well, it seems DevX dropped some sort of secret message onto your system.");
- break;
- case 15:
- WriteLine("???: Go ahead and try to decrypt it. The Shiftnet Lua API is very useful.");
- break;
- case 16:
- if(API.Upgrades["otherplayerstory"] == true)
- {
- WriteLine("???: Anyways, I'm gonna go work with Hacker101, discuss those .saa uplinks, and see if we can come up with a suitable attack plan.");
- }
- else
- {
- WriteLine("???: Well, your system is all better. You don't have to thank me. Just, when you open a .saa file, I'll try to contact you if I'm not busy.");
- }
- break;
- case 17:
- WriteLine("???: Talk to you soon. And, remember. ShiftOS is like a forest. DevX is the predator, you are the prey. Watch your back.");
- break;
- case 18:
- t.Stop();
- this.Close();
- API.Upgrades["otherplayerrescue"] = true;
- break;
- }
- i += 1;
- };
- t.Start();
- }
-
- internal void StartHackerBattleIntro()
- {
- var t = new System.Windows.Forms.Timer();
- t.Interval = 4000;
- int i = 0;
- t.Tick += (object s, EventArgs a) =>
- {
- switch(i)
- {
- case 0:
- API.Upgrades["hackerbattles"] = true;
- API.Upgrades["hackcommand"] = true;
- WriteLine("IP address <unidentified> connecting with no identity...");
- break;
- case 1:
- WriteLine("Hey there. So I see you're into hacking.");
- break;
- case 2:
- WriteLine("Oh, how rude of me. You don't know if I'm DevX or not.");
- break;
- case 3:
- WriteLine("Well now you do. I will not show my identity, but I am not DevX.");
- break;
- case 4:
- WriteLine("Anyways. There are two things you must know about hacking within ShiftOS.");
- break;
- case 5:
- WriteLine("1. You can hack more than just the Shiftorium. Look around the user interface for any 'Hack it' buttons.");
- break;
- case 6:
- WriteLine("Also, running 'hack' in the Terminal will let you do even more damage to DevX's security systems as well as give you some advantages.");
- break;
- case 7:
- WriteLine("Ever wanted to make the Shiftorium have a bit of a sale, or even better, make all applications pay out more Codepoints than DevX intends?");
- break;
- case 8:
- WriteLine("Well that 'hack' command is useful then. Go ahead. Try it in another Terminal window. But good God do not close this one.");
- break;
- case 9:
- WriteLine("Because there's one more thing you need to know.");
- break;
- case 10:
- WriteLine("You are not the only person DevX has contacted with ShiftOS.");
- break;
- case 11:
- WriteLine("There are others. Some of them, friendly. Some of them, knowledgable enough to help you.");
- break;
- case 12:
- WriteLine("ShiftOS is like a private community. Anyone can contact anyone provided they have the skill to get in.");
- break;
- case 13:
- WriteLine("Meaning, you may meet some very cool people.");
- break;
- case 14:
- WriteLine("But some of us are... how do you say it... hostile.");
- break;
- case 15:
- WriteLine("Enter the era of Hacker Battles.");
- break;
- case 16:
- WriteLine("It's a network-vs-network every-man-for-himself affair. You'll meet criminals, hackers, agencies and much more.");
- break;
- case 17:
- WriteLine("All offering a little surprise if you can take their network down.");
- break;
- case 18:
- WriteLine("And it's best you get trained, for at any time, anyone could challenge you to one.");
- break;
- case 19:
- WriteLine("And the amount of networks devastated due to untrained users picking a fight with the wrong person is alarmingly huge.");
- break;
- case 20:
- WriteLine("I'll launch a practice program which will teach you the Hacker Battle interface and the fundamentals.");
- break;
- case 21:
- WriteLine("And if you can complete the entire training session, you will be able to defend against anyone who dare battle you.");
- break;
- case 22:
- WriteLine("Starting training session #53D8G in 5 seconds....");
- break;
- case 23:
- WriteLine("Don't worry. It shouldn't be too difficult for you.");
- t.Stop();
- ShiftOS.Hacking.StartBattleTutorial();
- break;
- }
- i += 1;
- };
- t.Start();
- }
-
- internal void StartDevXFuriousStory()
- {
- var t = new System.Windows.Forms.Timer();
- t.Interval = 4000;
- int i = 0;
- t.Tick += (object s, EventArgs a) =>
- {
- switch (i)
- {
- case 0:
- WriteLine("IP 199.108.232.1 Connecting...");
- break;
- case 1:
- WriteLine("DevX: WHAT HAVE YOU DONE?");
- break;
- case 2:
- WriteLine("DevX: How the HELL did you get the Shiftnet?");
- break;
- case 3:
- WriteLine("DevX: What sites have you seen? TALK TO ME.");
- break;
- case 4:
- WriteLine("DevX: Alright, got nothing to say? Fine. You will pay for this...");
- break;
- case 5:
- WriteLine("DevX: I don't know what I'll do... I don't know when I'll do it... but you will wish you never touched a computer in your life...");
- break;
- case 6:
- t.Stop();
- Viruses.DropDevXPayload();
- this.Close();
- var trm = new Terminal();
- API.CreateForm(trm, API.LoadedNames.TerminalName, API.GetIcon("Terminal"));
- trm.StartDevXFuriousStory2();
- break;
- }
- i += 1;
- };
- t.Start();
- }
-
- private void StartDevXFuriousStory2()
- {
- var t = new Thread(new ThreadStart(new Action(() =>
- {
- WriteLine("User '???' connecting...");
- API.PlaySound(Properties.Resources.dial_up_modem_02);
- WriteLine("???: Hello? Ummm... this is awkward...");
- BeepSleep(3000);
- WriteLine("???: Listen - I'm a hacker. Well, not really. I'm friends with one.");
- BeepSleep(3000);
- WriteLine("???: Seems like DevX completely obliterated your system with one of his viruses.");
- BeepSleep(2500);
- WriteLine("???: I'll fix that for you.");
- API.Upgrades["virusscanner"] = true;
- this.Invoke(new Action(() =>
- {
- this.command = "vscan";
- this.DoCommand();
- }));
- BeepSleep(1000);
- WriteLine("???: Better? Cool. Now, I need your help.");
- BeepSleep(1250);
- WriteLine("???: I can't reveal my identity yet - but I co-own this chat-room...");
- BeepSleep(1175);
- WriteLine("???: It's called the 'Hacker Alliance'.");
- BeepSleep(1000);
- WriteLine("???: I'm going to install something called 'HoloChat' on your system. It'll be quick.");
- BeepSleep(2000);
- WriteLine("Installing HoloChat...");
- API.Upgrades["holochat"] = true;
- Thread.Sleep(100);
- WriteLine("Done. Resetting desktop...");
- this.Invoke(new Action(() => { API.CurrentSession.SetupDesktop(); }));
- WriteLine("Done.");
- Thread.Sleep(3000);
- WriteLine("???: Alright - I'll talk to you soon. Just join that chat room when you're ready.");
- BeepSleep(1000);
- this.Invoke(new Action(() =>
- {
- this.Close();
- }));
- })));
- t.Start();
- }
-
- private LuaInterpreter Interpreter = null;
- private bool blockctrlt = false;
/// <summary>
/// Call after creating a Terminal to let Maureen Fenn talk
@@ -1285,6 +516,9 @@ Password: z7fjsd3");
Thread.Sleep(time);
}
+ private LuaInterpreter Interpreter = null;
+ private bool blockctrlt = false;
+
private List<string> GetFonts()
{
var lst = new List<string>();
@@ -1307,7 +541,7 @@ Password: z7fjsd3");
public List<string> GetColorList()
{
var lst = new List<string>();
- if(API.Upgrades["red"] == true)
+ if (API.Upgrades["red"] == true)
lst.Add("red");
if (API.Upgrades["green"] == true)
lst.Add("green");
@@ -1333,7 +567,7 @@ Password: z7fjsd3");
public Color SetColor(string name)
{
Color col = Color.White;
- switch(name)
+ switch (name)
{
case "black":
col = Color.Black;
@@ -1397,9 +631,9 @@ Password: z7fjsd3");
{
case "ls":
case "dir":
- if(API.Upgrades["fileskimmer"])
+ if (API.Upgrades["fileskimmer"])
{
- foreach(var d in Directory.GetDirectories(current_dir))
+ foreach (var d in Directory.GetDirectories(current_dir))
{
WriteLine($"[DIR] {new DirectoryInfo(d).Name}");
}
@@ -1442,11 +676,11 @@ Password: z7fjsd3");
}
break;
case "upg":
- if(API.DeveloperMode)
+ if (API.DeveloperMode)
{
try
{
- switch(args[1])
+ switch (args[1])
{
case "get":
WriteLine(API.Upgrades[args[2]].ToString());
@@ -1526,10 +760,10 @@ Password: z7fjsd3");
case "connections":
try
{
- switch(args[1])
+ switch (args[1])
{
case "list":
- foreach(var client in Package_Grabber.clients)
+ foreach (var client in Package_Grabber.clients)
{
WriteLine($"Hostname: {client.Key}, Port: {client.Value.RemotePort}, Online: {client.Value.IsConnected}");
}
@@ -1538,7 +772,7 @@ Password: z7fjsd3");
API.CreateForm(new ConnectionManager(), "Connections", API.GetIcon("Connections"));
break;
case "drop":
- foreach(var client in Package_Grabber.clients)
+ foreach (var client in Package_Grabber.clients)
{
Package_Grabber.Disconnect(client.Key);
}
@@ -1560,7 +794,8 @@ Password: z7fjsd3");
c.Connect(host, port);
WriteLine("Re-established connection with host.");
}
- else {
+ else
+ {
WriteLine("This host has been connected to already.");
}
}
@@ -1573,11 +808,11 @@ Password: z7fjsd3");
}
break;
case "story":
- if(API.DeveloperMode == true && API.Upgrades["shiftnet"])
+ if (API.DeveloperMode == true && API.Upgrades["shiftnet"])
{
try
{
- switch(args[1])
+ switch (args[1])
{
case "aidennirh":
StartAidenNirhStory();
@@ -1624,10 +859,10 @@ Password: z7fjsd3");
}
break;
case "linux":
- if(API.DeveloperMode)
+ if (API.DeveloperMode)
{
WriteLine("Upgrading your system...");
- foreach(var upg in Shiftorium.Utilities.GetAvailable())
+ foreach (var upg in Shiftorium.Utilities.GetAvailable())
{
API.Upgrades[upg.id] = true;
WriteLine("Installed upgrade \"" + upg.Name + "\"...");
@@ -1644,7 +879,7 @@ Password: z7fjsd3");
if (API.DeveloperMode)
{
WriteLine("Opening...");
-
+
//Apps.Cheats chts = new Apps.Cheats();
//chts.Show();
API.CreateForm(new Apps.Cheats(), "Cheats", API.GetIcon("Terminal"));
@@ -1659,7 +894,7 @@ Password: z7fjsd3");
API.CreateForm(new NetGen(), "Network Generator", API.GetIcon("Terminal"));
break;
case "lua":
- if(API.DeveloperMode == true)
+ if (API.DeveloperMode == true)
{
try
{
@@ -1679,7 +914,7 @@ Password: z7fjsd3");
WriteLine("Lua script file not found.");
}
}
- catch
+ catch
{
this.LuaMode = true;
this.Interpreter = new LuaInterpreter();
@@ -1702,7 +937,7 @@ Password: z7fjsd3");
}
break;
case "hack":
- if(API.Upgrades["hacking"] == true)
+ if (API.Upgrades["hacking"] == true)
{
StartHackingSession("random");
}
@@ -1713,21 +948,22 @@ Password: z7fjsd3");
break;
case "virusscanner":
case "vscan":
- if(API.Upgrades["virusscanner"] == true)
+ if (API.Upgrades["virusscanner"] == true)
{
WriteLine("Scanning for infected files...");
var goodList = new Dictionary<string, string>();
foreach (KeyValuePair<string, string> kv in Viruses.Infections)
{
- if(kv.Value.Contains(";"))
+ if (kv.Value.Contains(";"))
{
- foreach(string file in kv.Value.Split(';'))
+ foreach (string file in kv.Value.Split(';'))
{
if (goodList.ContainsKey(file))
{
goodList[file] += ", " + kv.Key;
}
- else {
+ else
+ {
goodList.Add(file, kv.Key);
}
}
@@ -1738,7 +974,8 @@ Password: z7fjsd3");
{
goodList[kv.Value] += ", " + kv.Key;
}
- else {
+ else
+ {
goodList.Add(kv.Value, kv.Key);
}
}
@@ -1786,17 +1023,17 @@ Password: z7fjsd3");
case "color":
try
{
- if(API.Upgrades["setterminalcolors"] == true)
+ if (API.Upgrades["setterminalcolors"] == true)
{
Color bcol = SetColor(args[1]);
Color tcol = SetColor(args[2]);
API.CurrentSkin.TerminalTextColor = tcol;
API.CurrentSkin.TerminalBackColor = bcol;
-
+
}
}
- catch(Exception)
+ catch (Exception)
{
WriteLine("color: Missing arguments.");
}
@@ -1812,12 +1049,12 @@ Password: z7fjsd3");
{
wrongcommand();
}
- break;
+ break;
case "font":
- if(API.Upgrades["setterminalfont"] == true)
+ if (API.Upgrades["setterminalfont"] == true)
{
var fname = command.Replace("font ", "");
- if(GetFonts().Contains(fname))
+ if (GetFonts().Contains(fname))
{
API.CurrentSkin.TerminalFontStyle = fname;
}
@@ -1832,9 +1069,9 @@ Password: z7fjsd3");
}
break;
case "colorlist":
- if(API.Upgrades["setterminalcolors"] == true)
+ if (API.Upgrades["setterminalcolors"] == true)
{
- foreach(string itm in GetColorList())
+ foreach (string itm in GetColorList())
{
WriteLine(itm);
}
@@ -1906,9 +1143,9 @@ Password: z7fjsd3");
{
try
{
- if(args[2] == "god_utils")
+ if (args[2] == "god_utils")
{
- if(FinalMission.EndGameHandler.GodModeInstallEnabled == true)
+ if (FinalMission.EndGameHandler.GodModeInstallEnabled == true)
{
var t = new Thread(new ThreadStart(new Action(() =>
{
@@ -1943,7 +1180,7 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
}));
})));
t.Start();
- }
+ }
else
{
WriteLine("spkg: Package '" + args[2] + "' not found.");
@@ -1963,7 +1200,7 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
case "alias":
try
{
- switch(args[1])
+ switch (args[1])
{
case "-?":
case "--help":
@@ -1977,7 +1214,7 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
break;
case "--add":
case "-a":
- if(API.AddAlias(args[2], command.Replace("alias " + args[1] + " " + args[2] + " ", "")))
+ if (API.AddAlias(args[2], command.Replace("alias " + args[1] + " " + args[2] + " ", "")))
{
WriteLine("Alias added successfully.");
API.SaveAliases();
@@ -1989,7 +1226,7 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
break;
case "--delete":
case "-d":
- if(API.RemoveAlias(args[2]) == true)
+ if (API.RemoveAlias(args[2]) == true)
{
WriteLine("Alias \"" + args[2] + "\" removed successfully.");
API.SaveAliases();
@@ -2002,7 +1239,7 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
case "-l":
case "--list":
WriteLine("Aliases:");
- foreach(KeyValuePair<string, string> kv in API.CommandAliases)
+ foreach (KeyValuePair<string, string> kv in API.CommandAliases)
{
WriteLine(kv.Key + " => " + kv.Value);
}
@@ -2018,7 +1255,7 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
}
break;
case "username":
- if(API.Upgrades["customusername"] == true)
+ if (API.Upgrades["customusername"] == true)
{
try
{
@@ -2041,7 +1278,7 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
{
API.CurrentSave.osname = args[1];
}
- catch
+ catch
{
WriteLine("osname: Missing arguments.");
}
@@ -2058,7 +1295,8 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
API.CurrentSession.SetUnityMode();
API.CurrentSession.SetupDesktop();
txtterm.Focus();
- } else
+ }
+ else
{
wrongcommand();
}
@@ -2070,12 +1308,16 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
{
if (API.Upgrades["minutessincemidnight"] == false)
{
- if (API.Upgrades["secondssincemidnight"] == true) {
+ if (API.Upgrades["secondssincemidnight"] == true)
+ {
WriteLine("Since midnight, " + API.GetTime() + " seconds have passed.");
- } else {
+ }
+ else
+ {
wrongcommand();
}
- } else
+ }
+ else
{
WriteLine("Since midnight, " + API.GetTime() + " minutes have passed.");
}
@@ -2084,13 +1326,15 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
{
WriteLine("Since Midnight, " + API.GetTime() + " hours have passed.");
}
- } else
+ }
+ else
{
WriteLine("Current time: " + API.GetTime());
}
break;
case "saa":
- if (API.Upgrades["shiftnet"]) {
+ if (API.Upgrades["shiftnet"])
+ {
var f = command.Replace("saa ", "");
if (f.StartsWith("/"))
{
@@ -2167,7 +1411,8 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
{
API.AddCodepoints(500);
WriteLine("You've been granted 500 Codepoints.");
- } else
+ }
+ else
{
wrongcommand();
}
@@ -2198,7 +1443,9 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
{
WriteLine("debug: " + ex.Message);
}
- } else {
+ }
+ else
+ {
try
{
switch (args[1].ToLower())
@@ -2211,14 +1458,15 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
wrongcommand();
break;
}
- } catch
+ }
+ catch
{
wrongcommand(); //Debug command pretends to be an invalid command if an exception is thrown.
}
}
break;
case "echo":
- if(command.Contains("echo "))
+ if (command.Contains("echo "))
{
WriteLine(command.Replace("echo ", ""));
}
@@ -2230,24 +1478,24 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
case "syncsave":
WriteLine("Command removed.");
break;
-
+
default:
if (API.OpenProgram(args[0]) == false)
{
if (API.Upgrades["trmfiles"] == false)
{
bool done = false;
- foreach(KeyValuePair<string, string> kv in API.CommandAliases)
+ foreach (KeyValuePair<string, string> kv in API.CommandAliases)
{
- if(kv.Key == command)
+ if (kv.Key == command)
{
command = kv.Value;
done = true;
DoCommand();
}
-
+
}
- if(done == false)
+ if (done == false)
{
wrongcommand();
}
@@ -2300,7 +1548,7 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
t.Interval = 4000;
t.Tick += (object s, EventArgs a) =>
{
- switch(i)
+ switch (i)
{
case 0:
WriteLine("User '<unknown>' connected as '???'");
@@ -2345,7 +1593,7 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
};
t.Start();
}
-
+
public void StartReboot()
{
txtterm.Text = "";
@@ -2369,9 +1617,9 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
WriteLine($"You have {API.Codepoints} Codepoints.");
WriteLine("Loading modules...");
Thread.Sleep(750);
- foreach(var upg in API.Upgrades)
+ foreach (var upg in API.Upgrades)
{
- if(upg.Value == true)
+ if (upg.Value == true)
{
WriteLine($"Loaded module {upg.Key}...");
}
@@ -2406,7 +1654,7 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
int p = 0;
t.Tick += (object s, EventArgs a) =>
{
- if(p == 4)
+ if (p == 4)
{
t.Stop();
this.Close();
@@ -2440,7 +1688,7 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
WriteLine(" ");
WriteLine("Press the key that corresponds to ");
WriteLine("the option you want. ");
-
+
}
public void showhackinghelp()
@@ -2460,7 +1708,7 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
public void showhelp(string topic)
{
- switch(topic)
+ switch (topic)
{
case "hacking":
showhackinghelp();
@@ -2511,7 +1759,7 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
WriteLine(" - shutdown: Shuts down your PC.");
WriteLine(" - codepoints: Shows how many codepoints you have.");
WriteLine(" - help: Shows this screen.");
- if(API.Upgrades["secondssincemidnight"] == true)
+ if (API.Upgrades["secondssincemidnight"] == true)
{
WriteLine(" - time: Shows the current time.");
}
@@ -2522,7 +1770,7 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
WriteLine(" - username <new_name>: Changes your username.");
WriteLine(" - osname <newname>: Changes the operating system name.");
}
- if(API.Upgrades["shiftnet"] == true)
+ if (API.Upgrades["shiftnet"] == true)
{
WriteLine(" - saa: Runs a specified .saa file.");
WriteLine(" - spkg: Shiftnet Package Manager (more info at shiftnet://main/spkg");
@@ -2534,10 +1782,11 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
WriteLine(SaveSystem.Utilities.LoadedSave.osname + " - Version " + SaveSystem.Utilities.LoadedSave.ingameversion);
WriteLine("==========================" + Environment.NewLine);
WriteLine(" == Info == " + Environment.NewLine);
- if(API.Upgrades["applaunchermenu"] == true)
+ if (API.Upgrades["applaunchermenu"] == true)
{
WriteLine(" - Apps can be run using the App Launcher on the desktop.");
- } else
+ }
+ else
{
WriteLine(" - Apps can be run by typing their name in the Terminal.");
}
@@ -2549,55 +1798,55 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
{
WriteLine(" - The Terminal runs fullscreen at all times.");
}
- if(API.Upgrades["titlebar"] == true)
+ if (API.Upgrades["titlebar"] == true)
{
WriteLine(" - Applications have a titlebar to help distinguish between other apps.");
}
- if(API.Upgrades["windowborders"] == true)
+ if (API.Upgrades["windowborders"] == true)
{
WriteLine(" - Applications have a window border to help distinguish between other apps.");
}
- if(API.Upgrades["multitasking"] == true)
+ if (API.Upgrades["multitasking"] == true)
{
WriteLine(" - Multiple apps can be run at the same time, and you can even run more than one of the same app!");
}
- if(API.Upgrades["movablewindows"] == true)
+ if (API.Upgrades["movablewindows"] == true)
{
WriteLine(" - Applications can be moved using CTRL+W,A,S,D.");
}
- if(API.Upgrades["draggablewindows"] == true)
+ if (API.Upgrades["draggablewindows"] == true)
{
WriteLine(" - You can drag apps around the screen by dragging their titlebars.");
}
- if(API.Upgrades["resizablewindows"] == true)
+ if (API.Upgrades["resizablewindows"] == true)
{
WriteLine(" - You can resize windows by dragging their borders.");
}
- if(API.Upgrades["panelbuttons"] == true)
+ if (API.Upgrades["panelbuttons"] == true)
{
WriteLine($" - A list of open apps is shown at the {API.CurrentSkin.desktoppanelposition.ToLower()} of the screen.");
}
- if(API.Upgrades["usefulpanelbuttons"] == true)
+ if (API.Upgrades["usefulpanelbuttons"] == true)
{
WriteLine(" - You can minimize and restore apps using the panel buttons.");
}
- if(API.Upgrades["titletext"] == true)
+ if (API.Upgrades["titletext"] == true)
{
WriteLine(" - Apps display their names on the titlebar.");
}
- if(API.Upgrades["appicons"] == true)
+ if (API.Upgrades["appicons"] == true)
{
WriteLine(" - Apps display their icons, and they are displayed in their titlebars.");
}
- if(API.Upgrades["autoscrollterminal"] == true)
+ if (API.Upgrades["autoscrollterminal"] == true)
{
WriteLine(" - The Terminal will automatically scroll to the bottom.");
}
- if(API.Upgrades["terminalscrollbar"] == true)
+ if (API.Upgrades["terminalscrollbar"] == true)
{
WriteLine(" - You can scroll up and down the Terminal's buffer.");
}
- if(API.Upgrades["zoomableterminal"] == true)
+ if (API.Upgrades["zoomableterminal"] == true)
{
WriteLine(" - You can zoom the Terminal in and out by holding CTRL and scrolling up or down.");
}
@@ -2680,10 +1929,10 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
public void runterminalfile(string path)
{
- if(File.Exists(path))
+ if (File.Exists(path))
{
string[] cmds = File.ReadAllLines(path);
- foreach(string cmd in cmds)
+ foreach (string cmd in cmds)
{
command = cmd;
DoCommand();
@@ -2717,7 +1966,7 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
private void ScrollDeactivate(object sender, KeyEventArgs e)
{
- if(Zooming == true)
+ if (Zooming == true)
{
Zooming = false;
}
@@ -2728,7 +1977,7 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
private void ResetTerminalFont()
{
string fname = "Font";
- if(API.Upgrades["setterminalfont"] == true)
+ if (API.Upgrades["setterminalfont"] == true)
{
fname = API.CurrentSkin.TerminalFontStyle;
}
@@ -2737,7 +1986,8 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
fname = OSInfo.GetMonospaceFont();
}
int fsize = 9 * ZoomMultiplier;
- try {
+ try
+ {
txtterm.Font = new Font(fname, fsize);
}
catch
@@ -2748,17 +1998,18 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
private void Zoom(object sender, ScrollEventArgs e)
{
-
+
}
private void ScrollTerm(object sender, MouseEventArgs e)
{
- if(Zooming == true)
+ if (Zooming == true)
{
-
- } else
+
+ }
+ else
{
- if(API.Upgrades["terminalscrollbar"] == true)
+ if (API.Upgrades["terminalscrollbar"] == true)
{
txtterm.ScrollBars = ScrollBars.Vertical;
}
@@ -2768,12 +2019,790 @@ HIJACKER is a utility that allows you to hijack any system and install ShiftOS o
private void tmrsetfont_Tick(object sender, EventArgs e)
{
ResetTerminalFont();
- if(API.Upgrades["setterminalcolors"] == true)
+ if (API.Upgrades["setterminalcolors"] == true)
{
txtterm.BackColor = API.CurrentSkin.TerminalBackColor;
txtterm.ForeColor = API.CurrentSkin.TerminalTextColor;
}
}
+
+ public void ShowTools()
+ {
+ txtterm.Text = "";
+ try
+ {
+ var h = ShiftOS.Hacking.Tools[SelectedCharacter];
+ WriteLine(" == Attack Select ==");
+ WriteLine($"Attack: {SelectedCharacter + 1}/{ShiftOS.Hacking.Tools.Count}");
+ WriteLine($"Name: {h.Name}");
+ WriteLine($"Effectiveness: {h.Effectiveness}");
+ WriteLine($"Description: {h.Description}");
+ WriteLine(Environment.NewLine + "LEFT: Previous Attack, RIGHT: Next Attack, ENTER: Confirm");
+ }
+ catch
+ {
+ WriteLine("There are no entries to display in this list.");
+ }
+ }
+
+ private void Hack_ShowCharacters()
+ {
+ switch (SelectedMode)
+ {
+ case 1:
+ ShiftOS.Hacking.GetCharacters();
+ SelectedCharacter = 0;
+ ShowTools();
+ break;
+ case 2:
+ ShiftOS.Hacking.GetCharacters();
+ SelectedCharacter = 0;
+ ShowChar();
+ break;
+ }
+ }
+
+ private void InstallMidGameDesktop()
+ {
+ //throw new NotImplementedException();
+ }
+
+ int SelectedMode = 0;
+ int SelectedCharacter = 0;
+
+ public void ShowChar()
+ {
+ txtterm.Text = "";
+ var h = ShiftOS.Hacking.Characters[SelectedCharacter];
+ WriteLine(" == Partner Select ==");
+ WriteLine($"Partner: {SelectedCharacter + 1}/{ShiftOS.Hacking.Characters.Count}");
+ WriteLine($"Name: {h.Name}");
+ WriteLine($"Skill: {h.Skill}/100");
+ WriteLine($"Speed: {h.Speed}/100");
+ WriteLine($"Cost: {h.Cost}");
+ WriteLine($"Bio: {h.Bio}");
+ WriteLine(Environment.NewLine + "LEFT: Previous Partner, RIGHT: Next Partner, ENTER: Confirm");
+ }
+
+ public void StartShellShock()
+ {
+ var t = new Thread(new ThreadStart(new Action(() =>
+ {
+ Thread.Sleep(300);
+ WriteLine("Sending false packet to shiftnet://devx/tracker...");
+ Thread.Sleep(100);
+ WriteLine("Awaiting reply from server...");
+ Thread.Sleep(5000);
+ WriteLine("Got reply with header \"SOS_TRK_GET\".");
+ Thread.Sleep(50);
+ WriteLine("[kernel] Sending usage log to server...");
+ WriteLine("Intercepting outgoing request...");
+ Thread.Sleep(200);
+ WriteLine("Got packet contents...");
+ Thread.Sleep(25);
+ WriteLine("Sifting...");
+ Thread.Sleep(500);
+ WriteLine("Found connection data for shiftnet://devx/tracker.");
+ Thread.Sleep(100);
+ WriteLine(@"Username: devx
+Password: z7fjsd3");
+ Thread.Sleep(100);
+ WriteLine("Authenticating with SSH server on shiftnet://devx/tracker running Ubuntu 666...");
+ Thread.Sleep(1000);
+ WriteLine("[SSH] Access granted.");
+ Thread.Sleep(100);
+ WriteLine($"[Message] ???: We're in. In about 75 seconds DevX's server will go down. It'll be quite cool actually, Don't know if you've ever seen a forkbomb in action, but because you're in an SSH session with DevX's server and I'm also controlling the same session you're gonna see one. Oh, yeah, this server's the only one of his that doesn't actually run ShiftOS.");
+ Thread.Sleep(25000);
+ this.Invoke(new Action(() =>
+ {
+ txtterm.Text = "";
+ }));
+ int i = 60;
+ while (i >= 1)
+ {
+ Thread.Sleep(1000);
+ WriteLine($"Beginning attack on server in {i} seconds.");
+ i -= 1;
+ }
+ WriteLine("[devx@tracker ~]$ ");
+ string cmd = ":`(`)`{` `:`|`:` `&` `}`;`:"; // <sarcasm> yep. I'm pretending to use a forkbomb on DevX's server. This'll be FUN to code. </sarcasm>
+ foreach (string c in cmd.Split('`'))
+ {
+ Thread.Sleep(100);
+ this.Invoke(new Action(() =>
+ {
+ txtterm.Text += c;
+ }));
+ }
+ WriteLine("[devx@tracker ~]$ ");
+ WriteLine("[Message] ???: Alright. I entered the command for you. Looks like it did nothing. DevX wouldn't even know what's happening... but keep your terminal open for 30 seconds.");
+ Thread.Sleep(30000);
+ this.Invoke(new Action(() =>
+ {
+ FinalMission.EndGameHandler.GoToNextObjective();
+ }));
+ int progress = 0;
+ while (progress <= 10000)
+ {
+ int r = new Random().Next(0, 1);
+ switch (r)
+ {
+ case 0:
+ WriteLine("-bash: fork: Resource temporarily unavailable");
+ break;
+ case 1:
+ WriteLine("-bash: fork: retry: Resource temporarily unavailable");
+ break;
+ }
+ Thread.Sleep(progress / 10);
+ progress++;
+ }
+ WriteLine("[SSH] Connection to server dropped.");
+ this.Invoke(new Action(() =>
+ {
+ FinalMission.EndGameHandler.GoToNextObjective();
+ }));
+ this.Invoke(new Action(() => { this.Close(); }));
+ })));
+ t.Start();
+ }
+
+ internal void StartBridgeToMidGame()
+ {
+ var t2 = new System.Windows.Forms.Timer();
+ t2.Interval = 4000;
+ int i2 = 0;
+ t2.Tick += (object s, EventArgs e) =>
+ {
+ switch (i2)
+ {
+ case 0:
+ if (API.Upgrades["hacker101"] == true)
+ {
+ WriteLine("Hacker101: Hello. We meet again. The Other Player told me about your situation.");
+ }
+ else
+ {
+ API.Upgrades["hacker101"] = true;
+ WriteLine("Hacker101: The Other Player told me about your situation.");
+ }
+ break;
+ case 1:
+ WriteLine("Hacker101: Lemme guess. DevX found out about you having the Shiftnet, didn't he...");
+ break;
+ case 2:
+ WriteLine("Hacker101: Well I guess we'll have to fight fire with fire. You remember that person who told you about Hacker Battles?");
+ break;
+ case 3:
+ WriteLine("Hacker101: It's time you know who he is. He is, in fact, me, and to continue on about Hacker Battles...");
+ break;
+ case 4:
+ WriteLine("Hacker101: I can help you take down DevX, but we'll need to take down his defenses and get into his network.");
+ break;
+ case 5:
+ WriteLine("Hacker101: DevX's network of servers is larger than any datacenter on Earth, and it'll take time to plan the perfect attack.");
+ break;
+ case 6:
+ WriteLine("Hacker101: Think of it this way. DevX has a network of networks, each with their own leader.");
+ break;
+ case 7:
+ WriteLine("Hacker101: I can help you find these networks, but it's up to you to take 'em down.");
+ break;
+ case 8:
+ WriteLine("Hacker101: Of course, it's hard to hack a network if you don't know how to start a battle.");
+ break;
+ case 9:
+ WriteLine("Hacker101: Introducing the Battle Preparation Screen.");
+ break;
+ case 10:
+ WriteLine("Hacker101: It'll show you any network I've found, and it'll tell you some useful info about it.");
+ break;
+ case 11:
+ WriteLine("Hacker101: However the spkg package for this thing is HUGE, and will require lots of tweaks to the ShiftOS desktop. spkg will hopefully administer the tweaks for you, but here's a rundown of what'll happen.");
+ break;
+ case 12:
+ WriteLine("Hacker101: For one, you'll be able to have multiple desktop panels to fit more widgets on them.");
+ break;
+ case 13:
+ WriteLine("Hacker101: And if you have the App Launcher, it will get sorted so it doesn't take up the entire screen when you get so many applications installed.");
+ break;
+ case 14:
+ WriteLine("Hacker101: And the rest is a surprise. I'll initiate the install sequence.");
+ break;
+ case 15:
+ InstallMidGameDesktop();
+ break;
+ }
+ i2 += 1;
+ };
+
+ var t = new System.Windows.Forms.Timer();
+ t.Interval = 4000;
+ int i = 0;
+
+ t.Tick += (object s, EventArgs a) =>
+ {
+
+
+ switch (i)
+ {
+ case 0:
+ WriteLine("IP <hidden> connecting as Hacker101...");
+ break;
+ case 1:
+ WriteLine("Hacker101: Hello, ShiftOS user. I am a hacker.");
+ break;
+ case 2:
+ if (API.BitnoteAddress != null)
+ {
+ WriteLine($"Hacker101: I can prove it. You have {API.Codepoints} Codepoints, your Bitnote Address is {API.BitnoteAddress.Address}, and you have {API.BitnoteAddress.Bitnotes}. That's your private address, by the way.");
+ }
+ else
+ {
+ WriteLine($"Hacker101: I can prove it. You have {API.Codepoints} Codepoints, and you do not have a Bitnote Address.");
+ }
+ break;
+ case 3:
+ WriteLine("Hacker101: Enough fun in games. Listen. There are two things you need to know.");
+ break;
+ case 4:
+ WriteLine("Hacker101: Thing #1. DevX isn't real.");
+ break;
+ case 5:
+ WriteLine("Hacker101: I've decompiled parts of ShiftOS. And you know what I found?");
+ break;
+ case 6:
+ WriteLine("Hacker101: Everything DevX says. Everything he does. Everything he THINKS. It's all hardcoded directly into ShiftOS's core.");
+ break;
+ case 7:
+ WriteLine("Hacker101: Want proof? Here. I'll run a quick Lua script for you.");
+ string DecompiledCode = Properties.Resources.DecompiledCode;
+ var l = new LuaInterpreter();
+ Form win = l.mod.create_window("Decompiled Code", null, 720, 480);
+ TextBox txt = new TextBox();
+ txt.Multiline = true;
+ txt.Text = Properties.Resources.DecompiledCode;
+ txt.BorderStyle = BorderStyle.None;
+ txt.BackColor = Color.Black;
+ txt.ForeColor = Color.White;
+ txt.Font = new Font(OSInfo.GetMonospaceFont(), 9);
+ l.mod.set_dock(txt, "fill");
+ l.mod.add_widget_to_window(win, txt);
+ break;
+ case 8:
+ WriteLine("Hacker101: Not only is that some nice, smokin' fresh C# code directly from ShiftOS, but that's a nice steaming pile of bird poop on DevX's doorstep.");
+ break;
+ case 9:
+ WriteLine("Hacker101: Thing #2. The Shiftnet holds some secrets.");
+ break;
+ case 10:
+ WriteLine("Hacker101: What kind of secrets, I hear you ask through your microphone (jesus, do you seriously talk to us with your voice? Are you that bored?)");
+ break;
+ case 11:
+ WriteLine("Hacker101: Well. I'm talking, pieces of a Lua script that could help stop DevX dead in his digital tracks.");
+ break;
+ case 12:
+ WriteLine("Hacker101: All you gotta do is use my decryption utilities to find the pieces of this encrypted script, download them, decrypt them, and the utility will automatically piece them together for you.");
+ break;
+ case 13:
+ WriteLine("Hacker101: Shiftnet pages ending with .enc are your best bet.");
+ break;
+ case 14:
+ WriteLine("Hacker101: You can install the utilities using spkg install secret.");
+ break;
+ case 15:
+ WriteLine("Hacker101: Then, when the application installs, run it, and use the password 'binary_hell' to install the REAL utilities.");
+ break;
+ case 16:
+ WriteLine("Hacker101: Anyways, that wraps that up. But hang on. One more thing...");
+ t.Stop();
+ ShiftOS.Hacking.AddCharacter(new Character("Hacker101", "Let's get the job done.", 75, 45, 5));
+ t2.Start();
+ break;
+ }
+ i += 1;
+ };
+ if (API.Upgrades["hacker101"] == true)
+ {
+ t2.Start();
+ }
+ else
+ {
+ t.Start();
+ }
+
+
+ }
+
+ internal void StartAidenNirhStory()
+ {
+ var t = new System.Windows.Forms.Timer();
+ t.Interval = 4000;
+ int i = 0;
+ t.Tick += (object s, EventArgs a) =>
+ {
+ switch (i)
+ {
+ case 0:
+ WriteLine("User 151.43.85.33 connecting as \"Aiden\"...");
+ break;
+ case 2:
+ WriteLine($"Aiden: Hey there, {API.Username}1 I'm Aiden Nirh.");
+ break;
+ case 3:
+ WriteLine("Aiden: Have you seen Appscape?");
+ break;
+ case 4:
+ WriteLine("Aiden: It's my package manager for ShiftOS. It's pretty neat.");
+ break;
+ case 5:
+ WriteLine("Aiden: You should check it out, it's on the Shiftnet at shiftnet://main/appscape!");
+ break;
+ case 6:
+ WriteLine("Aiden: But remember, when browsing the Shiftnet try not to venture from the main server!");
+ break;
+ case 7:
+ API.Upgrades["aidennirh"] = true;
+ t.Stop();
+ this.Close();
+ break;
+ }
+ i += 1;
+ };
+ t.Start();
+ }
+
+ internal void StartHacker101Story()
+ {
+ var t = new System.Windows.Forms.Timer();
+ t.Interval = 4000;
+ int i = 0;
+
+ t.Tick += (object s, EventArgs a) =>
+ {
+ switch (i)
+ {
+ case 0:
+ WriteLine("IP <hidden> connecting as Hacker101...");
+ break;
+ case 1:
+ WriteLine("Hacker101: Hello, ShiftOS user. I am a hacker.");
+ break;
+ case 2:
+ if (API.BitnoteAddress != null)
+ {
+ WriteLine($"Hacker101: I can prove it. You have {API.Codepoints} Codepoints, your Bitnote Address is {API.BitnoteAddress.Address}, and you have {API.BitnoteAddress.Bitnotes}. That's your private address, by the way.");
+ }
+ else
+ {
+ WriteLine($"Hacker101: I can prove it. You have {API.Codepoints} Codepoints, and you do not have a Bitnote Address.");
+ }
+ break;
+ case 3:
+ WriteLine("Hacker101: Enough fun in games. Listen. There are two things you need to know.");
+ break;
+ case 4:
+ WriteLine("Hacker101: Thing #1. DevX isn't real.");
+ break;
+ case 5:
+ WriteLine("Hacker101: I've decompiled parts of ShiftOS. And you know what I found?");
+ break;
+ case 6:
+ WriteLine("Hacker101: Everything DevX says. Everything he does. Everything he THINKS. It's all hardcoded directly into ShiftOS's core.");
+ break;
+ case 7:
+ WriteLine("Hacker101: Want proof? Here. I'll run a quick Lua script for you.");
+ string DecompiledCode = Properties.Resources.DecompiledCode;
+ var l = new LuaInterpreter();
+ Form win = l.mod.create_window("Decompiled Code", null, 720, 480);
+ TextBox txt = new TextBox();
+ txt.Multiline = true;
+ txt.Text = Properties.Resources.DecompiledCode;
+ txt.BorderStyle = BorderStyle.None;
+ txt.BackColor = Color.Black;
+ txt.ForeColor = Color.White;
+ txt.Font = new Font(OSInfo.GetMonospaceFont(), 9);
+ l.mod.set_dock(txt, "fill");
+ l.mod.add_widget_to_window(win, txt);
+ break;
+ case 8:
+ WriteLine("Hacker101: Not only is that some nice, smokin' fresh C# code directly from ShiftOS, but that's a nice steaming pile of bird poop on DevX's doorstep.");
+ break;
+ case 9:
+ WriteLine("Hacker101: Thing #2. The Shiftnet holds some secrets.");
+ break;
+ case 10:
+ WriteLine("Hacker101: What kind of secrets, I hear you ask through your microphone (jesus, do you seriously talk to us with your voice? Are you that bored?)");
+ break;
+ case 11:
+ WriteLine("Hacker101: Well. I'm talking, pieces of a Lua script that could help stop DevX dead in his digital tracks.");
+ break;
+ case 12:
+ WriteLine("Hacker101: All you gotta do is use my decryption utilities to find the pieces of this encrypted script, download them, decrypt them, and the utility will automatically piece them together for you.");
+ break;
+ case 13:
+ WriteLine("Hacker101: Shiftnet pages ending with .enc are your best bet.");
+ break;
+ case 14:
+ WriteLine("Hacker101: You can install the utilities using spkg install secret.");
+ break;
+ case 15:
+ WriteLine("Hacker101: Then, when the application installs, run it, and use the password 'binary_hell' to install the REAL utilities.");
+ break;
+ case 16:
+ WriteLine("Hacker101: Now go. We need that script. I know a friend who will help you get your hard drive back from DevX if you can do this.");
+ t.Stop();
+ ShiftOS.Hacking.AddCharacter(new Character("Hacker101", "Let's get the job done.", 75, 45, 5));
+ API.Upgrades["hacker101"] = true;
+ this.Close();
+ break;
+ }
+ i += 1;
+ };
+ t.Start();
+ }
+
+ internal void StartOtherPlayerSysFix()
+ {
+ var t = new System.Windows.Forms.Timer();
+ t.Interval = 4000;
+ int i = 0;
+ t.Tick += (object s, EventArgs a) =>
+ {
+ switch (i)
+ {
+ case 0:
+ WriteLine("User <hidden> connected as ???.");
+ break;
+ case 1:
+ if (API.Upgrades["otherplayerstory"] == true)
+ {
+ WriteLine($"???: {API.Username}! Did he find out? Oh God, I hope he can see this...");
+ }
+ else
+ {
+ WriteLine("???: Hello? Uhhhh, is this stupid thing working?");
+ }
+ break;
+ case 2:
+ if (API.Upgrades["otherplayerstory"] == true)
+ {
+ WriteLine("???: Ahh. Good. You can read this. It's me, the other player.");
+ }
+ else
+ {
+ WriteLine("???: Thank heaven. You can hear me. Don't ask who I am.");
+ }
+ break;
+ case 3:
+ WriteLine("???: Looks like DevX hit you hard. Guess he found out you had the Shiftnet.");
+ break;
+ case 4:
+ WriteLine("???: Relax. It's not your fault.");
+ break;
+ case 5:
+ WriteLine("???: Actually, the Shiftnet regularly sends data about it's usage, unencrypted, directly to DevX.");
+ break;
+ case 6:
+ WriteLine("???: This code seems to be embedded into all .saa files. It's actually how I found out about you.");
+ break;
+ case 7:
+ WriteLine("???: It seems weird, I know, but everytime you run a .saa file, an uplink is made to DevX's servers");
+ break;
+ case 8:
+ if (API.Upgrades["otherplayerstory"] == true)
+ {
+ WriteLine("???: And, well, I think we could use this. I'll see if Hacker101 can track this uplink. If he can, you will know it the next time you run a .saa.");
+ }
+ else
+ {
+ WriteLine("???: And, well, I think we could use this. I have a friend who's good with his hacking skills. I'll see if he can help you stop DevX dead. If he can, he will contact you next time you run a .saa.");
+ }
+ break;
+ case 9:
+ WriteLine("???: Anyways, connected to your system, I can see your desktop. Looks pretty messed up, huh?");
+ break;
+ case 10:
+ WriteLine("???: You're lucky you don't have the Windows Everywhere virus.");
+ break;
+ case 11:
+ Viruses.InfectFile(Paths.Drivers + "Keyboard.dri", Viruses.VirusID.WindowsEverywhere);
+ Viruses.CheckForInfected();
+ WriteLine("???: Crap! I spoke too soon.");
+ break;
+ case 12:
+ WriteLine("???: Alright. I'll see if I can hijack your Shiftorium Registry, install a virus scanner, and get rid of the viruses.");
+ break;
+ case 13:
+ API.Upgrades["virusscanner"] = true;
+ var trm = new Terminal();
+ API.CreateForm(trm, API.LoadedNames.TerminalName, Properties.Resources.iconTerminal);
+ trm.command = "vscan";
+ trm.DoCommand();
+ break;
+ case 14:
+ WriteLine("???: All better. I hope. As for those random files on your desktop, well, it seems DevX dropped some sort of secret message onto your system.");
+ break;
+ case 15:
+ WriteLine("???: Go ahead and try to decrypt it. The Shiftnet Lua API is very useful.");
+ break;
+ case 16:
+ if (API.Upgrades["otherplayerstory"] == true)
+ {
+ WriteLine("???: Anyways, I'm gonna go work with Hacker101, discuss those .saa uplinks, and see if we can come up with a suitable attack plan.");
+ }
+ else
+ {
+ WriteLine("???: Well, your system is all better. You don't have to thank me. Just, when you open a .saa file, I'll try to contact you if I'm not busy.");
+ }
+ break;
+ case 17:
+ WriteLine("???: Talk to you soon. And, remember. ShiftOS is like a forest. DevX is the predator, you are the prey. Watch your back.");
+ break;
+ case 18:
+ t.Stop();
+ this.Close();
+ API.Upgrades["otherplayerrescue"] = true;
+ break;
+ }
+ i += 1;
+ };
+ t.Start();
+ }
+
+ internal void StartHackerBattleIntro()
+ {
+ var t = new System.Windows.Forms.Timer();
+ t.Interval = 4000;
+ int i = 0;
+ t.Tick += (object s, EventArgs a) =>
+ {
+ switch (i)
+ {
+ case 0:
+ API.Upgrades["hackerbattles"] = true;
+ API.Upgrades["hackcommand"] = true;
+ WriteLine("IP address <unidentified> connecting with no identity...");
+ break;
+ case 1:
+ WriteLine("Hey there. So I see you're into hacking.");
+ break;
+ case 2:
+ WriteLine("Oh, how rude of me. You don't know if I'm DevX or not.");
+ break;
+ case 3:
+ WriteLine("Well now you do. I will not show my identity, but I am not DevX.");
+ break;
+ case 4:
+ WriteLine("Anyways. There are two things you must know about hacking within ShiftOS.");
+ break;
+ case 5:
+ WriteLine("1. You can hack more than just the Shiftorium. Look around the user interface for any 'Hack it' buttons.");
+ break;
+ case 6:
+ WriteLine("Also, running 'hack' in the Terminal will let you do even more damage to DevX's security systems as well as give you some advantages.");
+ break;
+ case 7:
+ WriteLine("Ever wanted to make the Shiftorium have a bit of a sale, or even better, make all applications pay out more Codepoints than DevX intends?");
+ break;
+ case 8:
+ WriteLine("Well that 'hack' command is useful then. Go ahead. Try it in another Terminal window. But good God do not close this one.");
+ break;
+ case 9:
+ WriteLine("Because there's one more thing you need to know.");
+ break;
+ case 10:
+ WriteLine("You are not the only person DevX has contacted with ShiftOS.");
+ break;
+ case 11:
+ WriteLine("There are others. Some of them, friendly. Some of them, knowledgable enough to help you.");
+ break;
+ case 12:
+ WriteLine("ShiftOS is like a private community. Anyone can contact anyone provided they have the skill to get in.");
+ break;
+ case 13:
+ WriteLine("Meaning, you may meet some very cool people.");
+ break;
+ case 14:
+ WriteLine("But some of us are... how do you say it... hostile.");
+ break;
+ case 15:
+ WriteLine("Enter the era of Hacker Battles.");
+ break;
+ case 16:
+ WriteLine("It's a network-vs-network every-man-for-himself affair. You'll meet criminals, hackers, agencies and much more.");
+ break;
+ case 17:
+ WriteLine("All offering a little surprise if you can take their network down.");
+ break;
+ case 18:
+ WriteLine("And it's best you get trained, for at any time, anyone could challenge you to one.");
+ break;
+ case 19:
+ WriteLine("And the amount of networks devastated due to untrained users picking a fight with the wrong person is alarmingly huge.");
+ break;
+ case 20:
+ WriteLine("I'll launch a practice program which will teach you the Hacker Battle interface and the fundamentals.");
+ break;
+ case 21:
+ WriteLine("And if you can complete the entire training session, you will be able to defend against anyone who dare battle you.");
+ break;
+ case 22:
+ WriteLine("Starting training session #53D8G in 5 seconds....");
+ break;
+ case 23:
+ WriteLine("Don't worry. It shouldn't be too difficult for you.");
+ t.Stop();
+ ShiftOS.Hacking.StartBattleTutorial();
+ break;
+ }
+ i += 1;
+ };
+ t.Start();
+ }
+
+ internal void StartDevXFuriousStory()
+ {
+ var t = new System.Windows.Forms.Timer();
+ t.Interval = 4000;
+ int i = 0;
+ t.Tick += (object s, EventArgs a) =>
+ {
+ switch (i)
+ {
+ case 0:
+ WriteLine("IP 199.108.232.1 Connecting...");
+ break;
+ case 1:
+ WriteLine("DevX: WHAT HAVE YOU DONE?");
+ break;
+ case 2:
+ WriteLine("DevX: How the HELL did you get the Shiftnet?");
+ break;
+ case 3:
+ WriteLine("DevX: What sites have you seen? TALK TO ME.");
+ break;
+ case 4:
+ WriteLine("DevX: Alright, got nothing to say? Fine. You will pay for this...");
+ break;
+ case 5:
+ WriteLine("DevX: I don't know what I'll do... I don't know when I'll do it... but you will wish you never touched a computer in your life...");
+ break;
+ case 6:
+ t.Stop();
+ Viruses.DropDevXPayload();
+ this.Close();
+ var trm = new Terminal();
+ API.CreateForm(trm, API.LoadedNames.TerminalName, API.GetIcon("Terminal"));
+ trm.StartDevXFuriousStory2();
+ break;
+ }
+ i += 1;
+ };
+ t.Start();
+ }
+
+ private void StartDevXFuriousStory2()
+ {
+ var t = new Thread(new ThreadStart(new Action(() =>
+ {
+ WriteLine("User '???' connecting...");
+ API.PlaySound(Properties.Resources.dial_up_modem_02);
+ WriteLine("???: Hello? Ummm... this is awkward...");
+ BeepSleep(3000);
+ WriteLine("???: Listen - I'm a hacker. Well, not really. I'm friends with one.");
+ BeepSleep(3000);
+ WriteLine("???: Seems like DevX completely obliterated your system with one of his viruses.");
+ BeepSleep(2500);
+ WriteLine("???: I'll fix that for you.");
+ API.Upgrades["virusscanner"] = true;
+ this.Invoke(new Action(() =>
+ {
+ this.command = "vscan";
+ this.DoCommand();
+ }));
+ BeepSleep(1000);
+ WriteLine("???: Better? Cool. Now, I need your help.");
+ BeepSleep(1250);
+ WriteLine("???: I can't reveal my identity yet - but I co-own this chat-room...");
+ BeepSleep(1175);
+ WriteLine("???: It's called the 'Hacker Alliance'.");
+ BeepSleep(1000);
+ WriteLine("???: I'm going to install something called 'HoloChat' on your system. It'll be quick.");
+ BeepSleep(2000);
+ WriteLine("Installing HoloChat...");
+ API.Upgrades["holochat"] = true;
+ Thread.Sleep(100);
+ WriteLine("Done. Resetting desktop...");
+ this.Invoke(new Action(() => { API.CurrentSession.SetupDesktop(); }));
+ WriteLine("Done.");
+ Thread.Sleep(3000);
+ WriteLine("???: Alright - I'll talk to you soon. Just join that chat room when you're ready.");
+ BeepSleep(1000);
+ this.Invoke(new Action(() =>
+ {
+ this.Close();
+ }));
+ })));
+ t.Start();
+ }
+ public void StartOtherPlayerStory()
+ {
+ var t = new System.Windows.Forms.Timer();
+ t.Interval = 4000;
+ int i = 0;
+ t.Tick += (object s, EventArgs a) =>
+ {
+ switch (i)
+ {
+ case 0:
+ WriteLine("IP Address <hidden> is connecting as '???'...");
+ break;
+ case 1:
+ WriteLine("Connection established.");
+ break;
+ case 2:
+ WriteLine("???: Hi, ShiftOS user. I have something to tell you.");
+ break;
+ case 3:
+ WriteLine("???: I'm not a hacker. I'm not a programmer. I am just like you.");
+ break;
+ case 4:
+ WriteLine("???: I am... the Other Player.");
+ break;
+ case 5:
+ WriteLine("???: I too have heard DevX's story about ShiftOS being an experimental operating system.");
+ break;
+ case 6:
+ WriteLine("???: I have also met another user. We'll call him... I don't know... Robert.");
+ break;
+ case 7:
+ WriteLine("???: And this Robert guy, well, he knows a lot about ShiftOS, and DevX.");
+ break;
+ case 8:
+ WriteLine("???: Robert is a fake name I'm calling him. You might know him as Hacker101.");
+ break;
+ case 9:
+ WriteLine("???: Anyways, He told me about you, so I figured I would help you get out of this mess.");
+ break;
+ case 10:
+ WriteLine("???: He said he'll help me get my hard drive back, and get ShiftOS off my system. Once he does, I'll tell you.");
+ break;
+ case 11:
+ WriteLine("???: In the meantime, I have one word for you. Survive. Do NOT let DevX get to you. Do not fall for his tricks. Just play along until I contact you.");
+ break;
+ case 12:
+ WriteLine("???: I'll talk to you about this soon.");
+ break;
+ case 13:
+ t.Stop();
+ this.Close();
+ API.Upgrades["otherplayerstory1"] = true;
+ break;
+ }
+ i += 1;
+ };
+ t.Start();
+ }
}
-
}