aboutsummaryrefslogtreecommitdiff
path: root/Histacom2/OS/Win95/Win95Apps/Story/Hack1.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Histacom2/OS/Win95/Win95Apps/Story/Hack1.cs')
-rw-r--r--Histacom2/OS/Win95/Win95Apps/Story/Hack1.cs72
1 files changed, 39 insertions, 33 deletions
diff --git a/Histacom2/OS/Win95/Win95Apps/Story/Hack1.cs b/Histacom2/OS/Win95/Win95Apps/Story/Hack1.cs
index a918cda..a0f6cb1 100644
--- a/Histacom2/OS/Win95/Win95Apps/Story/Hack1.cs
+++ b/Histacom2/OS/Win95/Win95Apps/Story/Hack1.cs
@@ -38,39 +38,45 @@ namespace Histacom2.OS.Win95.Win95Apps.Story
public static async void ContinueObjective()
{
- WinClassicTerminal Console = new WinClassicTerminal(true);
- WinClassic app = wm.Init(Console, "MS-DOS Prompt", null, true, true);
- TitleScreen.frm95.AddTaskBarItem(app, app.Tag.ToString(), "MS-DOS Prompt", null);
+ try
+ {
+ WinClassicTerminal Console = new WinClassicTerminal(true);
+ WinClassic app = wm.Init(Console, "MS-DOS Prompt", null, true, true);
+ TitleScreen.frm95.AddTaskBarItem(app, app.Tag.ToString(), "MS-DOS Prompt", null);
- Console.WriteLine("telnet> 104.27.135.159 Connecting...");
- await Task.Delay(2500);
- Console.WriteLine("telnet> 104.27.135.159 Connected.");
- await Task.Delay(2500);
- Console.WriteLine("telnet> 104.27.135.159 set hostname to 'TheHiddenHacker'.");
- await Task.Delay(2500);
- Console.WriteLine("TheHiddenHacker> I see you have access to 12padams.com.");
- await Task.Delay(4500);
- Console.WriteLine("TheHiddenHacker> Though it doesn't seem obvious, only a very limited amount of people can access the site.");
- await Task.Delay(6000);
- Console.WriteLine("TheHiddenHacker> 12padams has a secret, and I need you to help me find it.");
- await Task.Delay(3500);
- Console.WriteLine("TheHiddenHacker> I was snooping around his website, when he blacklisted my IP address.");
- await Task.Delay(4000);
- Console.WriteLine("TheHiddenHacker> While I was searching, I noticed a file that I didn't have permission to download. I need you to get it for me.");
- await Task.Delay(6500);
- Console.WriteLine("TheHiddenHacker> First, I'll need you to download an FTP client, available under the software section of 12padams' website.");
- await Task.Delay(5000);
- Console.WriteLine("TheHiddenHacker> Once that's downloaded, You'll need to type in a Hostname, Username, and Password.");
- await Task.Delay(4500);
- Console.WriteLine("TheHiddenHacker> The hostname is 172.68.119.42, and the username is most likely 12padams. I'm not too sure what the password is, however.");
- await Task.Delay(3500);
- Console.WriteLine("TheHiddenHacker> You'll need to figure out where you can get the password. Try looking for any odd text on the website.");
- await Task.Delay(3500);
- Console.WriteLine("TheHiddenHacker> I don't have much time to talk - I'd quickly copy down those details into Notepad before this Terminal gets closed.");
+ Console.WriteLine("telnet> 104.27.135.159 Connecting...");
+ await Task.Delay(2500);
+ Console.WriteLine("telnet> 104.27.135.159 Connected.");
+ await Task.Delay(2500);
+ Console.WriteLine("telnet> 104.27.135.159 set hostname to 'TheHiddenHacker'.");
+ await Task.Delay(2500);
+ Console.WriteLine("TheHiddenHacker> I see you have access to 12padams.com.");
+ await Task.Delay(4500);
+ Console.WriteLine("TheHiddenHacker> Though it doesn't seem obvious, only a very limited amount of people can access the site.");
+ await Task.Delay(6000);
+ Console.WriteLine("TheHiddenHacker> 12padams has a secret, and I need you to help me find it.");
+ await Task.Delay(3500);
+ Console.WriteLine("TheHiddenHacker> I was snooping around his website, when he blacklisted my IP address.");
+ await Task.Delay(4000);
+ Console.WriteLine("TheHiddenHacker> While I was searching, I noticed a file that I didn't have permission to download. I need you to get it for me.");
+ await Task.Delay(6500);
+ Console.WriteLine("TheHiddenHacker> First, I'll need you to download an FTP client, available under the software section of 12padams' website.");
+ await Task.Delay(5000);
+ Console.WriteLine("TheHiddenHacker> Once that's downloaded, You'll need to type in a Hostname, Username, and Password.");
+ await Task.Delay(4500);
+ Console.WriteLine("TheHiddenHacker> The hostname is 172.68.119.42, and the username is most likely 12padams. I'm not too sure what the password is, however.");
+ await Task.Delay(3500);
+ Console.WriteLine("TheHiddenHacker> You'll need to figure out where you can get the password. Try looking for any odd text on the website.");
+ await Task.Delay(3500);
+ Console.WriteLine("TheHiddenHacker> I don't have much time to talk - I'd quickly copy down those details into Notepad before this Terminal gets closed.");
- await Task.Delay(36000);
- app.Close();
- ended = true;
+ await Task.Delay(36000);
+ app.Close();
+ ended = true;
+ } catch (Exception e)
+ {
+ return;
+ }
}
public static void CheckIfSoundFinished(Object sender, EventArgs e)
@@ -87,11 +93,11 @@ namespace Histacom2.OS.Win95.Win95Apps.Story
public static void dialup_sound_play()
{
- SoundPlayer dialup_sound;
+ /* SoundPlayer dialup_sound;
// Play Dial-up Sound
Stream audio = Properties.Resources.modem_dial;
dialup_sound = new SoundPlayer(audio);
- dialup_sound.PlaySync();
+ dialup_sound.PlaySync(); */
}
}
}