From e75e11bcc81e61ccdef78279aa8d39d91c860f8c Mon Sep 17 00:00:00 2001 From: JayXKanz666 Date: Wed, 12 Jul 2017 23:01:19 +0200 Subject: Added some stuff -Added another story-script (Hack2.cs) -Fixed an issue where the MS-DOS prompt would freeze when displaying text -Added Action Delegate (method/function) as an argument for Time Distorter (optional) --- TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs | 102 ++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs') diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs b/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs new file mode 100644 index 0000000..470a240 --- /dev/null +++ b/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs @@ -0,0 +1,102 @@ +using System; +using System.Threading.Tasks; +using TimeHACK.Engine; +using TimeHACK.Engine.Template; + +namespace TimeHACK.OS.Win95.Win95Apps.Story +{ + public class Hack2 : Object + { + static WindowManager wm = new WindowManager(); + + public static async void StartObjective() + { + WinClassicTerminal Console = new WinClassicTerminal(true); + WinClassic app = wm.StartWin95(Console, "MS-DOS Prompt", null, true, true); + + Console.WriteLine("telnet> 185.152.46.51 Connecting..."); + await Task.Delay(2500); + Console.WriteLine("telnet> 185.152.46.51 Connected."); + await Task.Delay(2500); + Console.WriteLine("telnet> 185.152.46.51 set hostname to '12padams'."); + await Task.Delay(2000); + Console.WriteLine("12padams> WHAT DO YOU THINK YOU'RE DOING??"); + await Task.Delay(3000); + Console.WriteLine("12padams> First you hack my FTP server and download hwcv.exe.."); + await Task.Delay(4500); + Console.WriteLine("12padams> And use it to hack my website.."); + await Task.Delay(3500); + Console.WriteLine("12padams> Oh, and I know you pressed it."); + await Task.Delay(4000); + Console.WriteLine("12padams> I can see your screen right now.."); + await Task.Delay(3500); + Console.WriteLine("12padams> And to prove that I can see it, look at your timer. It says 130 seconds left."); + await Task.Delay(4000); + Console.WriteLine("12padams> Now, in 2 minutes you think you're going to be able to travel to 1999."); + await Task.Delay(3250); + Console.WriteLine("12padams> Well, I am sorry but I just can't let you do that."); + await Task.Delay(5000); + Console.WriteLine("12padams> You see, I have LOTS of power over your computer."); + await Task.Delay(3400); + Console.WriteLine("12padams> Okay, let me show you how easy this is."); + await Task.Delay(1500); + Console.WriteLine("Command> Hide Start Button"); + await Task.Delay(3500); + Console.WriteLine("12padams> See how easy that was?"); + await Task.Delay(3700); + Console.WriteLine("12padams> Now watch this.."); + await Task.Delay(3500); + Console.WriteLine("12padams> Hahaha, having a few errors are we?"); + await Task.Delay(2500); + 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(3000); + Console.WriteLine("The Hidden Hacker> Great, you found the software."); + await Task.Delay(3700); + Console.WriteLine("12padams> How dare you.."); + await Task.Delay(3500); + Console.WriteLine($"The Hidden Hacker> Don't worry {SaveSystem.ProfileName}."); + await Task.Delay(4500); + Console.WriteLine("The Hidden Hacker> I have to say, good job for getting the software."); + await Task.Delay(3900); + Console.WriteLine("12padams> The Hidden Hacker.. I thought my first punishment was enough to get you away."); + await Task.Delay(4500); + Console.WriteLine("The Hidden Hacker> Well, now that I have uncovered your secret, I'm not just gonna go away."); + await Task.Delay(3600); + Console.WriteLine("12padams> If you don't go, I'll make you go!"); + await Task.Delay(3700); + Console.WriteLine($"The Hidden Hacker> Hey {SaveSystem.ProfileName}, don't worry about 12padams. You're about to get away from all this."); + await Task.Delay(3500); + Console.WriteLine("The Hidden Hacker> Let me fix this.."); + await Task.Delay(2500); + Console.WriteLine("Command> Show Start Button"); + await Task.Delay(2900); + Console.WriteLine("12padams> OKAY, NOW YOU'VE DONE IT!"); + await Task.Delay(2500); + Console.WriteLine("Command> Stop Timer"); + await Task.Delay(3000); + Console.WriteLine("12padams> I bet you didn't see that one coming.."); + await Task.Delay(3700); + Console.WriteLine("The Hidden Hacker> Oh but I did.."); + await Task.Delay(5000); + Console.WriteLine("The Hidden Hacker> I converted the stop function to the hide function when I logged on.."); + await Task.Delay(4200); + Console.WriteLine("12padams> NO! That's impossible!"); + await Task.Delay(3000); + Console.WriteLine("The Hidden Hacker> Oh, is it? Well, watch this!"); + await Task.Delay(2500); + Console.WriteLine("Command> Show Timer"); + await Task.Delay(3000); + Console.WriteLine("The Hidden Hacker> And here's one more command for you to learn."); + await Task.Delay(1700); + Console.WriteLine("Command> Disconnect 12padams"); + await Task.Delay(2000); + Console.WriteLine("telnet> 12padams Disconnected."); + await Task.Delay(3000); + Console.WriteLine($"The Hidden Hacker> Good luck {SaveSystem.ProfileName}! I'll see you in the future!"); + } + } +} -- cgit v1.2.3 From 884a0a8c076804dee3fe4b0d9ff8c7690ec7a7c6 Mon Sep 17 00:00:00 2001 From: lempamo Date: Wed, 12 Jul 2017 19:18:43 -0500 Subject: fixed up hack2 a bit --- TimeHACK.Main/OS/Win95/Win95.cs | 4 +++- TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs | 17 ++++++++++++++--- .../Win95/Win95Apps/WinClassicTimeDistorter.Designer.cs | 2 +- TimeHACK.Main/SaveDialogs/NewGameDialog.Designer.cs | 2 +- 4 files changed, 19 insertions(+), 6 deletions(-) (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs') diff --git a/TimeHACK.Main/OS/Win95/Win95.cs b/TimeHACK.Main/OS/Win95/Win95.cs index 6cae472..442091e 100644 --- a/TimeHACK.Main/OS/Win95/Win95.cs +++ b/TimeHACK.Main/OS/Win95/Win95.cs @@ -20,6 +20,7 @@ namespace TimeHACK.OS.Win95 public List nonimportantapps = new List(); public WinClassic webchat; public WinClassic ie; + public WinClassicTimeDistorter distort; public TaskBarController tb = new TaskBarController(); public int currentappcount = 0; @@ -429,7 +430,8 @@ namespace TimeHACK.OS.Win95 private void TimeDistorterToolStripMenuItem_Click(object sender, EventArgs e) { - WinClassic app = wm.StartWin95(new WinClassicTimeDistorter("1998", "1999", 160, Hack2.StartObjective), "Time Distorter", null, false, true); + distort = new WinClassicTimeDistorter("1998", "1999", 160, Hack2.StartObjective); + WinClassic app = wm.StartWin95(distort, "Time Distorter", null, false, true); AddTaskBarItem(app, app.Tag.ToString(), "Time Distorter", null); app.BringToFront(); startmenu.Hide(); diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs b/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs index 470a240..c4492b2 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs @@ -5,7 +5,7 @@ using TimeHACK.Engine.Template; namespace TimeHACK.OS.Win95.Win95Apps.Story { - public class Hack2 : Object + public class Hack2 : object { static WindowManager wm = new WindowManager(); @@ -26,7 +26,9 @@ namespace TimeHACK.OS.Win95.Win95Apps.Story await Task.Delay(4500); Console.WriteLine("12padams> And use it to hack my website.."); await Task.Delay(3500); - Console.WriteLine("12padams> Oh, and I know you pressed it."); + Console.WriteLine("12padams> Then you download my secret Time Distorter program?"); + await Task.Delay(4000); + Console.WriteLine("12padams> Oh, and I know you activated it."); await Task.Delay(4000); Console.WriteLine("12padams> I can see your screen right now.."); await Task.Delay(3500); @@ -41,11 +43,15 @@ namespace TimeHACK.OS.Win95.Win95Apps.Story Console.WriteLine("12padams> Okay, let me show you how easy this is."); await Task.Delay(1500); Console.WriteLine("Command> Hide Start Button"); + TitleScreen.frm95.startbutton.Hide(); await Task.Delay(3500); Console.WriteLine("12padams> See how easy that was?"); await Task.Delay(3700); Console.WriteLine("12padams> Now watch this.."); - await Task.Delay(3500); + await Task.Delay(3000); + TitleScreen.frm95.desktopicons.BackgroundImage = Properties.Resources.Win95Error; + TitleScreen.frm95.BackgroundImage = null; + await Task.Delay(3000); Console.WriteLine("12padams> Hahaha, having a few errors are we?"); await Task.Delay(2500); Console.WriteLine("telnet> 104.27.135.159 Connecting..."); @@ -73,10 +79,12 @@ namespace TimeHACK.OS.Win95.Win95Apps.Story Console.WriteLine("The Hidden Hacker> Let me fix this.."); await Task.Delay(2500); Console.WriteLine("Command> Show Start Button"); + TitleScreen.frm95.startbutton.Show(); await Task.Delay(2900); Console.WriteLine("12padams> OKAY, NOW YOU'VE DONE IT!"); await Task.Delay(2500); Console.WriteLine("Command> Stop Timer"); + TitleScreen.frm95.distort.lblCountDown.Hide(); await Task.Delay(3000); Console.WriteLine("12padams> I bet you didn't see that one coming.."); await Task.Delay(3700); @@ -89,6 +97,7 @@ namespace TimeHACK.OS.Win95.Win95Apps.Story Console.WriteLine("The Hidden Hacker> Oh, is it? Well, watch this!"); await Task.Delay(2500); Console.WriteLine("Command> Show Timer"); + TitleScreen.frm95.distort.lblCountDown.Show(); await Task.Delay(3000); Console.WriteLine("The Hidden Hacker> And here's one more command for you to learn."); await Task.Delay(1700); @@ -97,6 +106,8 @@ namespace TimeHACK.OS.Win95.Win95Apps.Story Console.WriteLine("telnet> 12padams Disconnected."); await Task.Delay(3000); Console.WriteLine($"The Hidden Hacker> Good luck {SaveSystem.ProfileName}! I'll see you in the future!"); + await Task.Delay(3500); + app.Close(); } } } diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTimeDistorter.Designer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTimeDistorter.Designer.cs index e8397b6..8ea1805 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTimeDistorter.Designer.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTimeDistorter.Designer.cs @@ -153,7 +153,7 @@ private System.Windows.Forms.Label lblYear; private System.Windows.Forms.Label lblTo; private System.Windows.Forms.Button btnGo; - private System.Windows.Forms.Label lblCountDown; + internal System.Windows.Forms.Label lblCountDown; private System.Windows.Forms.Timer countDownTimer; } } diff --git a/TimeHACK.Main/SaveDialogs/NewGameDialog.Designer.cs b/TimeHACK.Main/SaveDialogs/NewGameDialog.Designer.cs index e58e0a7..e8163af 100644 --- a/TimeHACK.Main/SaveDialogs/NewGameDialog.Designer.cs +++ b/TimeHACK.Main/SaveDialogs/NewGameDialog.Designer.cs @@ -51,7 +51,7 @@ this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(70, 13); this.label1.TabIndex = 1; - this.label1.Text = "Profile Name:"; + this.label1.Text = "Profile Name (username):"; // // btnOk // -- cgit v1.2.3 From dcd0151ae78d80ea1d65a767203c88b48b98fff4 Mon Sep 17 00:00:00 2001 From: lempamo Date: Wed, 12 Jul 2017 20:13:16 -0500 Subject: hack2 done for now --- TimeHACK.Main/OS/Win95/Win95.cs | 2 +- TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs | 26 +++++++++++++++++-------- 2 files changed, 19 insertions(+), 9 deletions(-) (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs') diff --git a/TimeHACK.Main/OS/Win95/Win95.cs b/TimeHACK.Main/OS/Win95/Win95.cs index 442091e..a170f7f 100644 --- a/TimeHACK.Main/OS/Win95/Win95.cs +++ b/TimeHACK.Main/OS/Win95/Win95.cs @@ -430,7 +430,7 @@ namespace TimeHACK.OS.Win95 private void TimeDistorterToolStripMenuItem_Click(object sender, EventArgs e) { - distort = new WinClassicTimeDistorter("1998", "1999", 160, Hack2.StartObjective); + distort = new WinClassicTimeDistorter("1998", "1999", 170, Hack2.StartObjective); WinClassic app = wm.StartWin95(distort, "Time Distorter", null, false, true); AddTaskBarItem(app, app.Tag.ToString(), "Time Distorter", null); app.BringToFront(); diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs b/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs index c4492b2..26cd4d1 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs @@ -13,7 +13,7 @@ namespace TimeHACK.OS.Win95.Win95Apps.Story { WinClassicTerminal Console = new WinClassicTerminal(true); WinClassic app = wm.StartWin95(Console, "MS-DOS Prompt", null, true, true); - + Console.WriteLine("telnet> 185.152.46.51 Connecting..."); await Task.Delay(2500); Console.WriteLine("telnet> 185.152.46.51 Connected."); @@ -31,11 +31,21 @@ namespace TimeHACK.OS.Win95.Win95Apps.Story Console.WriteLine("12padams> Oh, and I know you activated it."); await Task.Delay(4000); Console.WriteLine("12padams> I can see your screen right now.."); - await Task.Delay(3500); - Console.WriteLine("12padams> And to prove that I can see it, look at your timer. It says 130 seconds left."); await Task.Delay(4000); - Console.WriteLine("12padams> Now, in 2 minutes you think you're going to be able to travel to 1999."); - await Task.Delay(3250); + Console.WriteLine("12padams> And I will prove it to you."); + await Task.Delay(4000); + Console.WriteLine("12padams> That countdown will be at 130 seconds.."); + await Task.Delay(4000); + Console.WriteLine("12padams> Right."); + await Task.Delay(1000); + Console.WriteLine("12padams> About."); + await Task.Delay(1000); + Console.WriteLine("12padams> Now."); + await Task.Delay(1000); + Console.WriteLine("12padams> See?"); + await Task.Delay(5000); + Console.WriteLine("12padams> Now, in about 2 minutes you think you're going to be able to travel to 1999."); + await Task.Delay(3500); Console.WriteLine("12padams> Well, I am sorry but I just can't let you do that."); await Task.Delay(5000); Console.WriteLine("12padams> You see, I have LOTS of power over your computer."); @@ -66,9 +76,9 @@ namespace TimeHACK.OS.Win95.Win95Apps.Story await Task.Delay(3500); Console.WriteLine($"The Hidden Hacker> Don't worry {SaveSystem.ProfileName}."); await Task.Delay(4500); - Console.WriteLine("The Hidden Hacker> I have to say, good job for getting the software."); - await Task.Delay(3900); - Console.WriteLine("12padams> The Hidden Hacker.. I thought my first punishment was enough to get you away."); + Console.WriteLine("The Hidden Hacker> I have to say, good job for getting the Time Distorter."); + await Task.Delay(4000); + Console.WriteLine("12padams> The Hidden Hacker.. I thought my first punishment was enough to keep you away."); await Task.Delay(4500); Console.WriteLine("The Hidden Hacker> Well, now that I have uncovered your secret, I'm not just gonna go away."); await Task.Delay(3600); -- cgit v1.2.3 From c579cf249977c9aa6abef79ef39c6d28960fea6c Mon Sep 17 00:00:00 2001 From: lempamo Date: Fri, 14 Jul 2017 09:43:33 -0500 Subject: Removed hwcv --- TimeHACK.Main/OS/Win95/Win95.cs | 2 +- TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs | 16 +- .../OS/Win95/Win95Apps/WinClassicHWCV.Designer.cs | 195 --------------------- TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs | 36 ---- .../OS/Win95/Win95Apps/WinClassicHWCV.resx | 128 -------------- TimeHACK.Main/TimeHACK.Main.csproj | 9 - 6 files changed, 2 insertions(+), 384 deletions(-) delete mode 100644 TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.Designer.cs delete mode 100644 TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs delete mode 100644 TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.resx (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs') diff --git a/TimeHACK.Main/OS/Win95/Win95.cs b/TimeHACK.Main/OS/Win95/Win95.cs index d681c58..3c44b54 100644 --- a/TimeHACK.Main/OS/Win95/Win95.cs +++ b/TimeHACK.Main/OS/Win95/Win95.cs @@ -430,7 +430,7 @@ namespace TimeHACK.OS.Win95 private void TimeDistorterToolStripMenuItem_Click(object sender, EventArgs e) { - distort = new WinClassicTimeDistorter("1998", "1999", 170, Hack2.StartObjective); + distort = new WinClassicTimeDistorter("1998", "1999", 150, Hack2.StartObjective); WinClassic app = wm.StartWin95(distort, "Time Distorter", null, false, true); AddTaskBarItem(app, app.Tag.ToString(), "Time Distorter", null); app.BringToFront(); diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs b/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs index 26cd4d1..7d05dba 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs @@ -22,27 +22,13 @@ namespace TimeHACK.OS.Win95.Win95Apps.Story await Task.Delay(2000); Console.WriteLine("12padams> WHAT DO YOU THINK YOU'RE DOING??"); await Task.Delay(3000); - Console.WriteLine("12padams> First you hack my FTP server and download hwcv.exe.."); + Console.WriteLine("12padams> First you hack my FTP server.."); await Task.Delay(4500); - Console.WriteLine("12padams> And use it to hack my website.."); - await Task.Delay(3500); Console.WriteLine("12padams> Then you download my secret Time Distorter program?"); await Task.Delay(4000); Console.WriteLine("12padams> Oh, and I know you activated it."); await Task.Delay(4000); Console.WriteLine("12padams> I can see your screen right now.."); - await Task.Delay(4000); - Console.WriteLine("12padams> And I will prove it to you."); - await Task.Delay(4000); - Console.WriteLine("12padams> That countdown will be at 130 seconds.."); - await Task.Delay(4000); - Console.WriteLine("12padams> Right."); - await Task.Delay(1000); - Console.WriteLine("12padams> About."); - await Task.Delay(1000); - Console.WriteLine("12padams> Now."); - await Task.Delay(1000); - Console.WriteLine("12padams> See?"); await Task.Delay(5000); Console.WriteLine("12padams> Now, in about 2 minutes you think you're going to be able to travel to 1999."); await Task.Delay(3500); diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.Designer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.Designer.cs deleted file mode 100644 index 5475040..0000000 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.Designer.cs +++ /dev/null @@ -1,195 +0,0 @@ -namespace TimeHACK.OS.Win95.Win95Apps -{ - partial class WinClassicHWCV - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Component Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WinClassicHWCV)); - this.program = new System.Windows.Forms.Panel(); - this.Panel2 = new System.Windows.Forms.Panel(); - this.Label3 = new System.Windows.Forms.Label(); - this.Button1 = new System.Windows.Forms.Button(); - this.TextBox2 = new System.Windows.Forms.TextBox(); - this.TextBox1 = new System.Windows.Forms.TextBox(); - this.toprightcorner = new System.Windows.Forms.Panel(); - this.bottomrightcorner = new System.Windows.Forms.Panel(); - this.bottomleftcorner = new System.Windows.Forms.Panel(); - this.topleftcorner = new System.Windows.Forms.Panel(); - this.PictureBox1 = new System.Windows.Forms.PictureBox(); - this.program.SuspendLayout(); - this.Panel2.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.PictureBox1)).BeginInit(); - this.SuspendLayout(); - // - // program - // - this.program.BackColor = System.Drawing.Color.Silver; - this.program.Controls.Add(this.PictureBox1); - this.program.Controls.Add(this.Panel2); - this.program.Controls.Add(this.toprightcorner); - this.program.Controls.Add(this.bottomrightcorner); - this.program.Controls.Add(this.bottomleftcorner); - this.program.Controls.Add(this.topleftcorner); - this.program.Dock = System.Windows.Forms.DockStyle.Fill; - this.program.Location = new System.Drawing.Point(0, 0); - this.program.Name = "program"; - this.program.Size = new System.Drawing.Size(361, 324); - this.program.TabIndex = 11; - // - // Panel2 - // - this.Panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.Panel2.Controls.Add(this.Label3); - this.Panel2.Controls.Add(this.Button1); - this.Panel2.Controls.Add(this.TextBox2); - this.Panel2.Controls.Add(this.TextBox1); - this.Panel2.Dock = System.Windows.Forms.DockStyle.Bottom; - this.Panel2.Location = new System.Drawing.Point(0, 135); - this.Panel2.Name = "Panel2"; - this.Panel2.Size = new System.Drawing.Size(361, 189); - this.Panel2.TabIndex = 9; - // - // Label3 - // - this.Label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.Label3.AutoSize = true; - this.Label3.Location = new System.Drawing.Point(7, 168); - this.Label3.Name = "Label3"; - this.Label3.Size = new System.Drawing.Size(148, 13); - this.Label3.TabIndex = 3; - this.Label3.Text = "Label3"; - this.Label3.Visible = false; - // - // Button1 - // - this.Button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.Button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.Button1.Location = new System.Drawing.Point(278, 145); - this.Button1.Name = "Button1"; - this.Button1.Size = new System.Drawing.Size(75, 20); - this.Button1.TabIndex = 2; - this.Button1.Text = "Display"; - this.Button1.UseVisualStyleBackColor = true; - this.Button1.Click += new System.EventHandler(this.Button1_Click); - // - // TextBox2 - // - this.TextBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.TextBox2.Location = new System.Drawing.Point(12, 144); - this.TextBox2.Name = "TextBox2"; - this.TextBox2.Size = new System.Drawing.Size(226, 20); - this.TextBox2.TabIndex = 1; - // - // TextBox1 - // - this.TextBox1.Anchor = System.Windows.Forms.AnchorStyles.None; - this.TextBox1.BackColor = System.Drawing.Color.Silver; - this.TextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None; - this.TextBox1.Location = new System.Drawing.Point(22, 4); - this.TextBox1.Multiline = true; - this.TextBox1.Name = "TextBox1"; - this.TextBox1.ReadOnly = true; - this.TextBox1.Size = new System.Drawing.Size(321, 137); - this.TextBox1.TabIndex = 0; - this.TextBox1.Text = resources.GetString("TextBox1.Text"); - this.TextBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; - // - // toprightcorner - // - this.toprightcorner.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.toprightcorner.Location = new System.Drawing.Point(357, 0); - this.toprightcorner.Name = "toprightcorner"; - this.toprightcorner.Size = new System.Drawing.Size(4, 4); - this.toprightcorner.TabIndex = 6; - // - // bottomrightcorner - // - this.bottomrightcorner.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.bottomrightcorner.Cursor = System.Windows.Forms.Cursors.SizeNWSE; - this.bottomrightcorner.Location = new System.Drawing.Point(357, 320); - this.bottomrightcorner.Name = "bottomrightcorner"; - this.bottomrightcorner.Size = new System.Drawing.Size(4, 4); - this.bottomrightcorner.TabIndex = 4; - // - // bottomleftcorner - // - this.bottomleftcorner.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.bottomleftcorner.Location = new System.Drawing.Point(0, 320); - this.bottomleftcorner.Name = "bottomleftcorner"; - this.bottomleftcorner.Size = new System.Drawing.Size(4, 4); - this.bottomleftcorner.TabIndex = 2; - // - // topleftcorner - // - this.topleftcorner.Location = new System.Drawing.Point(0, 0); - this.topleftcorner.Name = "topleftcorner"; - this.topleftcorner.Size = new System.Drawing.Size(4, 4); - this.topleftcorner.TabIndex = 1; - // - // PictureBox1 - // - this.PictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.PictureBox1.Image = global::TimeHACK.Properties.Resources.WinClassicHWCV; - this.PictureBox1.Location = new System.Drawing.Point(5, 24); - this.PictureBox1.Name = "PictureBox1"; - this.PictureBox1.Size = new System.Drawing.Size(351, 107); - this.PictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.PictureBox1.TabIndex = 0; - this.PictureBox1.TabStop = false; - // - // WinClassicHWCV - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.Controls.Add(this.program); - this.Name = "WinClassicHWCV"; - this.Size = new System.Drawing.Size(361, 324); - this.program.ResumeLayout(false); - this.Panel2.ResumeLayout(false); - this.Panel2.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.PictureBox1)).EndInit(); - this.ResumeLayout(false); - - } - - #endregion - - internal System.Windows.Forms.Panel program; - internal System.Windows.Forms.PictureBox PictureBox1; - internal System.Windows.Forms.Panel Panel2; - internal System.Windows.Forms.Label Label3; - internal System.Windows.Forms.Button Button1; - internal System.Windows.Forms.TextBox TextBox2; - internal System.Windows.Forms.TextBox TextBox1; - internal System.Windows.Forms.Panel toprightcorner; - internal System.Windows.Forms.Panel bottomrightcorner; - internal System.Windows.Forms.Panel bottomleftcorner; - internal System.Windows.Forms.Panel topleftcorner; - } -} diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs deleted file mode 100644 index c1a203a..0000000 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Drawing; -using System.Data; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace TimeHACK.OS.Win95.Win95Apps -{ - public partial class WinClassicHWCV : UserControl - { - public WinClassicHWCV() - { - InitializeComponent(); - Button1.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); - } - - private void Button1_Click(object sender, EventArgs e) - { - if (TextBox1.Text == "www.12padams.com" || TextBox1.Text == "http://www.12padams.com/") - { - Label3.Show(); - Label3.Text = "Hidden Content Found: Time Distorter"; - TitleScreen.frm95.hiddenpadamsFound = true; - } - else - { - Label3.Show(); - Label3.Text = "No Content Found"; - } - } - } -} diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.resx b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.resx deleted file mode 100644 index 1d196e9..0000000 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.resx +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - This program is a hacking tool which is able to view hidden content on websites. - -To view hidden content just type the URL of the website in the box below and this will enable you to see all the hidden features on a website. - -WARNING: This only displays hidden content which can not be accessed in anyway without this software. - - - \ No newline at end of file diff --git a/TimeHACK.Main/TimeHACK.Main.csproj b/TimeHACK.Main/TimeHACK.Main.csproj index b0ac5d0..d1e8db5 100644 --- a/TimeHACK.Main/TimeHACK.Main.csproj +++ b/TimeHACK.Main/TimeHACK.Main.csproj @@ -279,12 +279,6 @@ WinClassicDownloader.cs - - UserControl - - - WinClassicHWCV.cs - UserControl @@ -413,9 +407,6 @@ WinClassicDownloader.cs - - WinClassicHWCV.cs - WinClassicIE4.cs -- cgit v1.2.3