From 0344f0f2ba9cc1dea9644c97b69f689e2e516c90 Mon Sep 17 00:00:00 2001 From: lempamo Date: Wed, 31 May 2017 17:38:32 -0400 Subject: fixed up bsod --- .vs/TimeHACK/v14/.suo | Bin 111104 -> 111104 bytes TimeHACK.Engine/BSODCreator.cs | 108 +-- TimeHACK.Engine/Template/Win9XBSOD.Designer.cs | 184 ++-- TimeHACK.Engine/Template/Win9XBSOD.cs | 1 + TimeHACK.Engine/Template/Win9XBSOD.resx | 238 +++--- TimeHACK.Engine/bin/Release/TimeHACK.Engine.dll | Bin 189440 -> 189440 bytes TimeHACK.Engine/bin/Release/TimeHACK.Engine.pdb | Bin 60928 -> 60928 bytes .../TimeHACK.Engine.csproj.GenerateResource.Cache | Bin 2531 -> 2532 bytes ...ACK.Engine.csprojResolveAssemblyReference.cache | Bin 10673 -> 17117 bytes TimeHACK.Engine/obj/Release/TimeHACK.Engine.dll | Bin 189440 -> 189440 bytes TimeHACK.Engine/obj/Release/TimeHACK.Engine.pdb | Bin 60928 -> 60928 bytes TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs | 391 ++++----- TimeHACK.Main/bin/Release/TimeHACK.Engine.dll | Bin 189440 -> 189440 bytes TimeHACK.Main/bin/Release/TimeHACK.Engine.pdb | Bin 60928 -> 60928 bytes TimeHACK.Main/bin/Release/TimeHACK.application | 40 +- TimeHACK.Main/bin/Release/TimeHACK.exe | Bin 4834816 -> 4834816 bytes TimeHACK.Main/bin/Release/TimeHACK.exe.manifest | 932 ++++++++++----------- TimeHACK.Main/bin/Release/TimeHACK.pdb | Bin 265728 -> 265728 bytes .../bin/Release/TimeHACK.vshost.application | 40 +- .../bin/Release/TimeHACK.vshost.exe.manifest | 932 ++++++++++----------- TimeHACK.Main/bin/Release/app.publish/TimeHACK.exe | Bin 4834816 -> 4834816 bytes .../bin/Release/windows_command_prompt.ttf | Bin 29616 -> 81192 bytes .../bin/Release/windows_command_promptold.ttf | Bin 0 -> 29616 bytes .../TimeHACK.Main.csproj.FileListAbsolute.txt | 158 ++-- .../TimeHACK.Main.csproj.GenerateResource.Cache | Bin 6660 -> 6661 bytes ...eHACK.Main.csprojResolveAssemblyReference.cache | Bin 15081 -> 26715 bytes ...HACK.OS.Win95.Win95Apps.WinClassicIE4.resources | Bin 2884 -> 2832 bytes ...K.WinClassicForms.WinClassicInstaller.resources | Bin 1383 -> 1369 bytes TimeHACK.Main/obj/Release/TimeHACK.application | 40 +- TimeHACK.Main/obj/Release/TimeHACK.exe | Bin 4834816 -> 4834816 bytes TimeHACK.Main/obj/Release/TimeHACK.exe.manifest | 932 ++++++++++----------- TimeHACK.Main/obj/Release/TimeHACK.pdb | Bin 265728 -> 265728 bytes 32 files changed, 2021 insertions(+), 1975 deletions(-) create mode 100644 TimeHACK.Main/bin/Release/windows_command_promptold.ttf diff --git a/.vs/TimeHACK/v14/.suo b/.vs/TimeHACK/v14/.suo index 0db053e..b61c268 100644 Binary files a/.vs/TimeHACK/v14/.suo and b/.vs/TimeHACK/v14/.suo differ diff --git a/TimeHACK.Engine/BSODCreator.cs b/TimeHACK.Engine/BSODCreator.cs index 59eeb16..5f5f480 100644 --- a/TimeHACK.Engine/BSODCreator.cs +++ b/TimeHACK.Engine/BSODCreator.cs @@ -1,54 +1,54 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; -using TimeHACK.Engine.Template; - -namespace TimeHACK.Engine -{ - public class BSODCreator - { - public static System.Drawing.Text.PrivateFontCollection pfc = new System.Drawing.Text.PrivateFontCollection(); - - public enum BSODCauses - { - Testing, - WimpEnding, - PiracyEnding, - } - - public Win9XBSOD throw9XBSOD(bool except, BSODCauses type) - { - pfc.AddFontFile(AppDomain.CurrentDomain.BaseDirectory + "\\windows_command_prompt.ttf"); - Win9XBSOD bsod = new Win9XBSOD(); - foreach (Control ctrl in bsod.Controls) { - ctrl.Font = new System.Drawing.Font(pfc.Families[0], 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((0))); - } - bsod.TopMost = true; - bsod.FormBorderStyle = FormBorderStyle.None; - bsod.WindowState = FormWindowState.Maximized; - switch (type) - { - case BSODCauses.Testing: - bsod.textBox1.Text = "This is the testing type of BSOD. Hurrah."; - break; - case BSODCauses.WimpEnding: - bsod.textBox1.Text = "An unknown but fatal exception has occured has occured in the program \"wchat98.exe\". The current processes will be terminated."; - break; - case BSODCauses.PiracyEnding: - bsod.textBox1.Text = "Vital elements of Windows were removed, but recovered. However, your data has been lost."; - bsod.BackColor = System.Drawing.Color.Black; - foreach (Control ctrl in bsod.Controls) ctrl.ForeColor = System.Drawing.Color.Silver; - bsod.label1.BackColor = System.Drawing.Color.Silver; - bsod.label1.ForeColor = System.Drawing.Color.Black; - break; - default: - break; - } - bsod.Show(); - return bsod; - } - } -} +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using TimeHACK.Engine.Template; + +namespace TimeHACK.Engine +{ + public class BSODCreator + { + public static System.Drawing.Text.PrivateFontCollection pfc = new System.Drawing.Text.PrivateFontCollection(); + + public enum BSODCauses + { + Testing, + WimpEnding, + PiracyEnding, + } + + public Win9XBSOD throw9XBSOD(bool except, BSODCauses type) + { + pfc.AddFontFile(AppDomain.CurrentDomain.BaseDirectory + "\\windows_command_prompt.ttf"); + Win9XBSOD bsod = new Win9XBSOD(); + foreach (Control ctrl in bsod.Controls) { + ctrl.Font = new System.Drawing.Font(pfc.Families[0], 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((0))); + } + bsod.TopMost = true; + bsod.FormBorderStyle = FormBorderStyle.None; + bsod.WindowState = FormWindowState.Maximized; + switch (type) + { + case BSODCauses.Testing: + bsod.textBox1.Text = "This is the testing type of BSOD. Hurrah."; + break; + case BSODCauses.WimpEnding: + bsod.textBox1.Text = "An unknown but fatal exception has occured in the program \"wchat98.exe\". The current processes will be terminated."; + break; + case BSODCauses.PiracyEnding: + bsod.textBox1.Text = "Vital elements of Windows were removed, but recovered. However, your data has been lost."; + bsod.BackColor = System.Drawing.Color.Black; + foreach (Control ctrl in bsod.Controls) ctrl.ForeColor = System.Drawing.Color.Silver; + bsod.label1.BackColor = System.Drawing.Color.Silver; + bsod.label1.ForeColor = System.Drawing.Color.Black; + break; + default: + break; + } + bsod.Show(); + return bsod; + } + } +} diff --git a/TimeHACK.Engine/Template/Win9XBSOD.Designer.cs b/TimeHACK.Engine/Template/Win9XBSOD.Designer.cs index bc066d4..d6795df 100644 --- a/TimeHACK.Engine/Template/Win9XBSOD.Designer.cs +++ b/TimeHACK.Engine/Template/Win9XBSOD.Designer.cs @@ -28,95 +28,100 @@ /// private void InitializeComponent() { - this.label1 = new System.Windows.Forms.Label(); - this.textBox1 = new System.Windows.Forms.TextBox(); - this.textBox2 = new System.Windows.Forms.TextBox(); - this.textBox3 = new System.Windows.Forms.TextBox(); - this.SuspendLayout(); - // - // label1 - // - this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.label1.AutoSize = true; - this.label1.BackColor = System.Drawing.Color.Silver; - this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label1.ForeColor = System.Drawing.Color.Blue; - this.label1.Location = new System.Drawing.Point(564, 240); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(138, 31); - this.label1.TabIndex = 0; - this.label1.Text = " Windows "; - // - // textBox1 - // - this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); - this.textBox1.BackColor = System.Drawing.Color.Blue; - this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None; - this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBox1.ForeColor = System.Drawing.Color.White; - this.textBox1.Location = new System.Drawing.Point(120, 294); - this.textBox1.MaximumSize = new System.Drawing.Size(950, 81); - this.textBox1.Multiline = true; - this.textBox1.Name = "textBox1"; - this.textBox1.ReadOnly = true; - this.textBox1.Size = new System.Drawing.Size(950, 81); - this.textBox1.TabIndex = 0; - this.textBox1.TabStop = false; - this.textBox1.Text = "A fatal exception 0E has occured at 0028:C0034B23. The current application will " + - "be terminated."; - // - // textBox2 - // - this.textBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); - this.textBox2.BackColor = System.Drawing.Color.Blue; - this.textBox2.BorderStyle = System.Windows.Forms.BorderStyle.None; - this.textBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBox2.ForeColor = System.Drawing.Color.White; - this.textBox2.Location = new System.Drawing.Point(120, 381); - this.textBox2.Multiline = true; - this.textBox2.Name = "textBox2"; - this.textBox2.ReadOnly = true; - this.textBox2.Size = new System.Drawing.Size(950, 101); - this.textBox2.TabIndex = 1; - this.textBox2.TabStop = false; - this.textBox2.Text = "* Press any key to rewind time to before the crash.\r\n* Press ESC to shutdown yo" + - "ur computer. You will lose any\r\n unsaved data in all applications."; - // - // textBox3 - // - this.textBox3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); - this.textBox3.BackColor = System.Drawing.Color.Blue; - this.textBox3.BorderStyle = System.Windows.Forms.BorderStyle.None; - this.textBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBox3.ForeColor = System.Drawing.Color.White; - this.textBox3.Location = new System.Drawing.Point(450, 488); - this.textBox3.Multiline = true; - this.textBox3.Name = "textBox3"; - this.textBox3.ReadOnly = true; - this.textBox3.Size = new System.Drawing.Size(382, 34); - this.textBox3.TabIndex = 2; - this.textBox3.TabStop = false; - this.textBox3.Text = "Press any key to rewind _"; - // - // Win9XBSOD - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.Blue; - this.ClientSize = new System.Drawing.Size(1280, 720); - this.Controls.Add(this.textBox3); - this.Controls.Add(this.textBox2); - this.Controls.Add(this.textBox1); - this.Controls.Add(this.label1); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; - this.Name = "Win9XBSOD"; - this.Tag = "gnoreFormOnTaskbar"; - this.Text = "Win9XBSOD"; - this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Win9XBSOD_KeyDown); - this.ResumeLayout(false); - this.PerformLayout(); - + this.label1 = new System.Windows.Forms.Label(); + this.textBox1 = new System.Windows.Forms.TextBox(); + this.textBox2 = new System.Windows.Forms.TextBox(); + this.textBox3 = new System.Windows.Forms.TextBox(); + this.panel1 = new System.Windows.Forms.Panel(); + this.panel1.SuspendLayout(); + this.SuspendLayout(); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.BackColor = System.Drawing.Color.Silver; + this.label1.Font = new System.Drawing.Font("Perfect DOS VGA 437", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label1.ForeColor = System.Drawing.Color.Blue; + this.label1.Location = new System.Drawing.Point(444, 0); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(147, 28); + this.label1.TabIndex = 0; + this.label1.Text = " Windows "; + // + // textBox1 + // + this.textBox1.BackColor = System.Drawing.Color.Blue; + this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.textBox1.Font = new System.Drawing.Font("Perfect DOS VGA 437", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.textBox1.ForeColor = System.Drawing.Color.White; + this.textBox1.Location = new System.Drawing.Point(0, 54); + this.textBox1.Multiline = true; + this.textBox1.Name = "textBox1"; + this.textBox1.ReadOnly = true; + this.textBox1.Size = new System.Drawing.Size(947, 81); + this.textBox1.TabIndex = 0; + this.textBox1.TabStop = false; + this.textBox1.Text = "A fatal exception 0E has occured at 0028:C0034B23. The current application will " + + "be terminated."; + // + // textBox2 + // + this.textBox2.BackColor = System.Drawing.Color.Blue; + this.textBox2.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.textBox2.Font = new System.Drawing.Font("Perfect DOS VGA 437", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.textBox2.ForeColor = System.Drawing.Color.White; + this.textBox2.Location = new System.Drawing.Point(0, 141); + this.textBox2.Multiline = true; + this.textBox2.Name = "textBox2"; + this.textBox2.ReadOnly = true; + this.textBox2.Size = new System.Drawing.Size(947, 101); + this.textBox2.TabIndex = 1; + this.textBox2.TabStop = false; + this.textBox2.Text = "* Press any key to rewind time to before the crash.\r\n* Press ESC to shutdown yo" + + "ur computer. You will lose any\r\n unsaved data in all applications."; + // + // textBox3 + // + this.textBox3.BackColor = System.Drawing.Color.Blue; + this.textBox3.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.textBox3.Font = new System.Drawing.Font("Perfect DOS VGA 437", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.textBox3.ForeColor = System.Drawing.Color.White; + this.textBox3.Location = new System.Drawing.Point(332, 248); + this.textBox3.Multiline = true; + this.textBox3.Name = "textBox3"; + this.textBox3.ReadOnly = true; + this.textBox3.Size = new System.Drawing.Size(382, 34); + this.textBox3.TabIndex = 2; + this.textBox3.TabStop = false; + this.textBox3.Text = "Press any key to rewind _"; + // + // panel1 + // + this.panel1.Controls.Add(this.label1); + this.panel1.Controls.Add(this.textBox3); + this.panel1.Controls.Add(this.textBox1); + this.panel1.Controls.Add(this.textBox2); + this.panel1.Location = new System.Drawing.Point(this.Width - 475, this.Height - 141); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(950, 282); + this.panel1.TabIndex = 3; + // + // Win9XBSOD + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.Blue; + this.ClientSize = new System.Drawing.Size(1280, 720); + this.Controls.Add(this.panel1); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; + this.Name = "Win9XBSOD"; + this.Tag = "gnoreFormOnTaskbar"; + this.Text = "Win9XBSOD"; + this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Win9XBSOD_KeyDown); + this.panel1.ResumeLayout(false); + this.panel1.PerformLayout(); + this.ResumeLayout(false); + } #endregion @@ -125,5 +130,6 @@ internal System.Windows.Forms.TextBox textBox1; internal System.Windows.Forms.TextBox textBox2; internal System.Windows.Forms.TextBox textBox3; + private System.Windows.Forms.Panel panel1; } } \ No newline at end of file diff --git a/TimeHACK.Engine/Template/Win9XBSOD.cs b/TimeHACK.Engine/Template/Win9XBSOD.cs index 662812b..519315e 100644 --- a/TimeHACK.Engine/Template/Win9XBSOD.cs +++ b/TimeHACK.Engine/Template/Win9XBSOD.cs @@ -17,6 +17,7 @@ namespace TimeHACK.Engine.Template public Win9XBSOD() { InitializeComponent(); + this.panel1.Location = new Point(this.ClientSize.Width / 2 - 475, this.ClientSize.Height / 2 - 141); } private void Win9XBSOD_KeyDown(object sender, KeyEventArgs e) diff --git a/TimeHACK.Engine/Template/Win9XBSOD.resx b/TimeHACK.Engine/Template/Win9XBSOD.resx index 1af7de1..29dcb1b 100644 --- a/TimeHACK.Engine/Template/Win9XBSOD.resx +++ b/TimeHACK.Engine/Template/Win9XBSOD.resx @@ -1,120 +1,120 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 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 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + \ No newline at end of file diff --git a/TimeHACK.Engine/bin/Release/TimeHACK.Engine.dll b/TimeHACK.Engine/bin/Release/TimeHACK.Engine.dll index 7bf2455..f873219 100644 Binary files a/TimeHACK.Engine/bin/Release/TimeHACK.Engine.dll and b/TimeHACK.Engine/bin/Release/TimeHACK.Engine.dll differ diff --git a/TimeHACK.Engine/bin/Release/TimeHACK.Engine.pdb b/TimeHACK.Engine/bin/Release/TimeHACK.Engine.pdb index 418f3b6..39d11b7 100644 Binary files a/TimeHACK.Engine/bin/Release/TimeHACK.Engine.pdb and b/TimeHACK.Engine/bin/Release/TimeHACK.Engine.pdb differ diff --git a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csproj.GenerateResource.Cache b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csproj.GenerateResource.Cache index 12afdd4..e6e04ba 100644 Binary files a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csproj.GenerateResource.Cache and b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csproj.GenerateResource.Cache differ diff --git a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csprojResolveAssemblyReference.cache b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csprojResolveAssemblyReference.cache index 138bee0..2e60c1a 100644 Binary files a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csprojResolveAssemblyReference.cache and b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csprojResolveAssemblyReference.cache differ diff --git a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.dll b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.dll index 7bf2455..f873219 100644 Binary files a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.dll and b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.dll differ diff --git a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.pdb b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.pdb index 418f3b6..39d11b7 100644 Binary files a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.pdb and b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.pdb differ diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs index 2e24af2..5c18285 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs @@ -1,192 +1,199 @@ -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; -using TimeHACK.Engine; -using System.Threading; -using System.Media; -using System.IO; -using TimeHACK.Engine.Template; - -namespace TimeHACK.OS.Win95.Win95Apps -{ - public partial class WebChat1998 : UserControl - { - int chat_index = 0; - WindowManager wm = new WindowManager(); - MessageParser wcmp = new MessageParser(); - bool correctname = false; - bool guessing = false; - - SoundPlayer join = new SoundPlayer(Properties.Resources.AIMbuddyjoin); - SoundPlayer leave = new SoundPlayer(Properties.Resources.AIMbuddyleave); - SoundPlayer send = new SoundPlayer(Properties.Resources.AIMmessagesent); - SoundPlayer receive = new SoundPlayer(Properties.Resources.AIMmessagereceived); - SoundPlayer file = new SoundPlayer(Properties.Resources.AIMfile); - - BSODCreator bc = new BSODCreator(); - Win9XBSOD bsod = null; - Win9XBSOD bsod2 = null; - - public WebChat1998() - { - InitializeComponent(); - bsod = bc.throw9XBSOD(false, BSODCreator.BSODCauses.WimpEnding); - bsod2 = bc.throw9XBSOD(false, BSODCreator.BSODCauses.PiracyEnding); - bsod.Hide(); - bsod2.Hide(); - } - private void WebChat1998_Load(object sender, EventArgs e) - { - button5.Hide(); - button4.Hide(); - button3.Hide(); - label5.Hide(); - } - private void Button1_Click(object sender, EventArgs e) - { - if (txtscreenname.Text == "") { wm.startInfobox95("Invalid Username", "Your username cannot be blank.", Properties.Resources.Win95Warning); return; } - if (txtscreenname.Text.Length > 12) { wm.startInfobox95("Invalid Username", "Your username needs to be less than 12 characters.", Properties.Resources.Win95Warning); return; } - if (txtscreenname.Text.Contains(" ")) { wm.startInfobox95("Invalid Username", "Your username cannot contain spaces.", Properties.Resources.Win95Warning); return; } - if (txtscreenname.Text == "SkyHigh" | txtscreenname.Text == "rain49" | txtscreenname.Text == "12padams") { wm.startInfobox95("Invalid Username", "That username is already taken.", Properties.Resources.Win95Warning); return; } - ParentForm.AcceptButton = button2; - TitleScreen.username = txtscreenname.Text; - login.Hide(); - listBox1.Items.Add(TitleScreen.username); - history.AppendText("System: " + TitleScreen.username + " has joined the chat." + Environment.NewLine); - join.Play(); - Chat.Start(); - } - - private void Chat_Tick(object sender, EventArgs e) - { - if (!guessing) - { - history.AppendText(wcmp.ParseMessage(resources.GetString("convo"), chat_index, TitleScreen.username) + Environment.NewLine); - switch (wcmp.GetSpecial(resources.GetString("convo"), chat_index)) - { - case "addsh": - listBox1.Items.Add("SkyHigh"); - join.Play(); - this.ParentForm.FormClosing += WebChatClosing; - break; - case "nameguess": - typechat.Hide(); - button2.Hide(); - button3.Show(); - button4.Show(); - Chat.Stop(); - guessing = true; - receive.Play(); - break; - case "addrain": - listBox1.Items.Add("rain49"); - join.Play(); - break; - case "addfile": - label5.Show(); - button5.Show(); - file.Play(); - break; - case "addpadams": - listBox1.Items.Add("12padams"); - join.Play(); - ((WinClassic)this.ParentForm).closeDisabled = true; - TitleScreen.frm95.startbutton.Enabled = false; - TitleScreen.frm95.startmenu.Hide(); - break; - case "nostart": - TitleScreen.frm95.startbutton.Hide(); - TitleScreen.frm95.startmenu.Hide(); - receive.Play(); - break; - case "removerain": - listBox1.Items.Remove("rain49"); - leave.Play(); - break; - case "iconsded": - TitleScreen.frm95.desktopicons.Enabled = false; - receive.Play(); - break; - case "taskbarded": - TitleScreen.frm95.taskbar.Hide(); - receive.Play(); - break; - case "iconsgone": - TitleScreen.frm95.desktopicons.Hide(); - receive.Play(); - break; - case "bigtext": - history.Font = new Font("Arial", 12F, FontStyle.Regular, GraphicsUnit.Point, ((0))); - ((WinClassic)this.ParentForm).maximizebutton.Enabled = false; - ((WinClassic)this.ParentForm).WindowState = FormWindowState.Maximized; - receive.Play(); - break; - case "notopbar": - ((WinClassic)this.ParentForm).programtopbar = null; - receive.Play(); - break; // TODO: Finish WebChat 1998 - default: - receive.Play(); - break; - } - if (TitleScreen.username == "devspeed") Chat.Interval = wcmp.GetMessageDelay(resources.GetString("convo"), chat_index) / 2; - else Chat.Interval = wcmp.GetMessageDelay(resources.GetString("convo"), chat_index); - } - else - { - if (correctname) - { - history.AppendText("SkyHigh: yay you got it right!" + Environment.NewLine); - } - else - { - history.AppendText("SkyHigh: sorry, my name is actually bill" + Environment.NewLine); - } - guessing = false; - receive.Play(); - Chat.Interval = wcmp.GetMessageDelay(resources.GetString("convo"), chat_index); - } - chat_index++; - } - - private void WebChatClosing(object sender, FormClosingEventArgs e) - { - bsod.FormClosing += new FormClosingEventHandler(Program.title.BSODRewind); - bsod.Show(); - bsod.BringToFront(); - } - - private void Button2_Click(object sender, EventArgs e) - { - if (typechat.Text != "") history.AppendText(TitleScreen.username + ": " + typechat.Text + Environment.NewLine); - typechat.Text = ""; - send.Play(); - } - - private void Button3_Click(object sender, EventArgs e) - { - correctname = false; - button2.Show(); - button3.Hide(); - button4.Hide(); - typechat.Show(); - Chat.Start(); - } - - private void Button4_Click(object sender, EventArgs e) - { - correctname = true; - button2.Show(); - button3.Hide(); - button4.Hide(); - typechat.Show(); - Chat.Start(); - } - } -} +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; +using TimeHACK.Engine; +using System.Threading; +using System.Media; +using System.IO; +using TimeHACK.Engine.Template; + +namespace TimeHACK.OS.Win95.Win95Apps +{ + public partial class WebChat1998 : UserControl + { + int chat_index = 0; + WindowManager wm = new WindowManager(); + MessageParser wcmp = new MessageParser(); + bool correctname = false; + bool guessing = false; + + bool wimponclose = false; + + SoundPlayer join = new SoundPlayer(Properties.Resources.AIMbuddyjoin); + SoundPlayer leave = new SoundPlayer(Properties.Resources.AIMbuddyleave); + SoundPlayer send = new SoundPlayer(Properties.Resources.AIMmessagesent); + SoundPlayer receive = new SoundPlayer(Properties.Resources.AIMmessagereceived); + SoundPlayer file = new SoundPlayer(Properties.Resources.AIMfile); + + BSODCreator bc = new BSODCreator(); + Win9XBSOD bsod = null; + Win9XBSOD bsod2 = null; + + public WebChat1998() + { + InitializeComponent(); + bsod = bc.throw9XBSOD(false, BSODCreator.BSODCauses.WimpEnding); + bsod2 = bc.throw9XBSOD(false, BSODCreator.BSODCauses.PiracyEnding); + bsod.Hide(); + bsod2.Hide(); + } + private void WebChat1998_Load(object sender, EventArgs e) + { + button5.Hide(); + button4.Hide(); + button3.Hide(); + label5.Hide(); + } + private void Button1_Click(object sender, EventArgs e) + { + if (txtscreenname.Text == "") { wm.startInfobox95("Invalid Username", "Your username cannot be blank.", Properties.Resources.Win95Warning); return; } + if (txtscreenname.Text.Length > 12) { wm.startInfobox95("Invalid Username", "Your username needs to be less than 12 characters.", Properties.Resources.Win95Warning); return; } + if (txtscreenname.Text.Contains(" ")) { wm.startInfobox95("Invalid Username", "Your username cannot contain spaces.", Properties.Resources.Win95Warning); return; } + if (txtscreenname.Text == "SkyHigh" | txtscreenname.Text == "rain49" | txtscreenname.Text == "12padams") { wm.startInfobox95("Invalid Username", "That username is already taken.", Properties.Resources.Win95Warning); return; } + ParentForm.AcceptButton = button2; + TitleScreen.username = txtscreenname.Text; + login.Hide(); + listBox1.Items.Add(TitleScreen.username); + history.AppendText("System: " + TitleScreen.username + " has joined the chat." + Environment.NewLine); + join.Play(); + Chat.Start(); + } + + private void Chat_Tick(object sender, EventArgs e) + { + if (!guessing) + { + history.AppendText(wcmp.ParseMessage(resources.GetString("convo"), chat_index, TitleScreen.username) + Environment.NewLine); + switch (wcmp.GetSpecial(resources.GetString("convo"), chat_index)) + { + case "addsh": + listBox1.Items.Add("SkyHigh"); + join.Play(); + this.ParentForm.FormClosing += WebChatClosing; + wimponclose = true; + break; + case "nameguess": + typechat.Hide(); + button2.Hide(); + button3.Show(); + button4.Show(); + Chat.Stop(); + guessing = true; + receive.Play(); + break; + case "addrain": + listBox1.Items.Add("rain49"); + join.Play(); + break; + case "addfile": + label5.Show(); + button5.Show(); + file.Play(); + break; + case "addpadams": + listBox1.Items.Add("12padams"); + join.Play(); + ((WinClassic)this.ParentForm).closeDisabled = true; + TitleScreen.frm95.startbutton.Enabled = false; + TitleScreen.frm95.startmenu.Hide(); + break; + case "nostart": + TitleScreen.frm95.startbutton.Hide(); + TitleScreen.frm95.startmenu.Hide(); + receive.Play(); + break; + case "removerain": + listBox1.Items.Remove("rain49"); + leave.Play(); + break; + case "iconsded": + TitleScreen.frm95.desktopicons.Enabled = false; + receive.Play(); + break; + case "taskbarded": + TitleScreen.frm95.taskbar.Hide(); + receive.Play(); + break; + case "iconsgone": + TitleScreen.frm95.desktopicons.Hide(); + receive.Play(); + break; + case "bigtext": + history.Font = new Font("Arial", 12F, FontStyle.Regular, GraphicsUnit.Point, ((0))); + ((WinClassic)this.ParentForm).maximizebutton.Enabled = false; + ((WinClassic)this.ParentForm).WindowState = FormWindowState.Maximized; + receive.Play(); + break; + case "notopbar": + ((WinClassic)this.ParentForm).programtopbar = null; + receive.Play(); + break; // TODO: Finish WebChat 1998 + default: + receive.Play(); + break; + } + if (TitleScreen.username == "devspeed") Chat.Interval = wcmp.GetMessageDelay(resources.GetString("convo"), chat_index) / 2; + else Chat.Interval = wcmp.GetMessageDelay(resources.GetString("convo"), chat_index); + } + else + { + if (correctname) + { + history.AppendText("SkyHigh: yay you got it right!" + Environment.NewLine); + } + else + { + history.AppendText("SkyHigh: sorry, my name is actually bill" + Environment.NewLine); + } + guessing = false; + receive.Play(); + Chat.Interval = wcmp.GetMessageDelay(resources.GetString("convo"), chat_index); + } + chat_index++; + } + + private void WebChatClosing(object sender, FormClosingEventArgs e) + { + if (wimponclose) + { + bsod.FormClosing += new FormClosingEventHandler(Program.title.BSODRewind); + bsod.Show(); + bsod.BringToFront(); + bsod2.Close(); + } + } + + private void Button2_Click(object sender, EventArgs e) + { + if (typechat.Text != "") history.AppendText(TitleScreen.username + ": " + typechat.Text + Environment.NewLine); + typechat.Text = ""; + send.Play(); + } + + private void Button3_Click(object sender, EventArgs e) + { + correctname = false; + button2.Show(); + button3.Hide(); + button4.Hide(); + typechat.Show(); + Chat.Start(); + } + + private void Button4_Click(object sender, EventArgs e) + { + correctname = true; + button2.Show(); + button3.Hide(); + button4.Hide(); + typechat.Show(); + Chat.Start(); + } + } +} diff --git a/TimeHACK.Main/bin/Release/TimeHACK.Engine.dll b/TimeHACK.Main/bin/Release/TimeHACK.Engine.dll index 7bf2455..f873219 100644 Binary files a/TimeHACK.Main/bin/Release/TimeHACK.Engine.dll and b/TimeHACK.Main/bin/Release/TimeHACK.Engine.dll differ diff --git a/TimeHACK.Main/bin/Release/TimeHACK.Engine.pdb b/TimeHACK.Main/bin/Release/TimeHACK.Engine.pdb index 418f3b6..39d11b7 100644 Binary files a/TimeHACK.Main/bin/Release/TimeHACK.Engine.pdb and b/TimeHACK.Main/bin/Release/TimeHACK.Engine.pdb differ diff --git a/TimeHACK.Main/bin/Release/TimeHACK.application b/TimeHACK.Main/bin/Release/TimeHACK.application index 0b8c0e2..27f7ad6 100644 --- a/TimeHACK.Main/bin/Release/TimeHACK.application +++ b/TimeHACK.Main/bin/Release/TimeHACK.application @@ -1,21 +1,21 @@ - - - - - - - - - - - - - - - - - 9Vn2cL4kFfzLPc3LsnSQXKEdILzgqp9vkDv9jGtyT6U= - - - + + + + + + + + + + + + + + + + + tqcU7kIBg+iSygTjllqLFFURbdNeO1xDOBjh+ang0bM= + + + \ No newline at end of file diff --git a/TimeHACK.Main/bin/Release/TimeHACK.exe b/TimeHACK.Main/bin/Release/TimeHACK.exe index b29450f..99f4f67 100644 Binary files a/TimeHACK.Main/bin/Release/TimeHACK.exe and b/TimeHACK.Main/bin/Release/TimeHACK.exe differ diff --git a/TimeHACK.Main/bin/Release/TimeHACK.exe.manifest b/TimeHACK.Main/bin/Release/TimeHACK.exe.manifest index 9702f97..be9fcac 100644 --- a/TimeHACK.Main/bin/Release/TimeHACK.exe.manifest +++ b/TimeHACK.Main/bin/Release/TimeHACK.exe.manifest @@ -1,20 +1,20 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - HCRfTIXCraEwvFmULJC3AcJMBu2+PrJYOO2N5PhSU1w= - - - - - - - - - - - - C0DypFsA0FRRcxPI4DHe6SOD8bTYwKPXx2xLn7V3hVk= - - - - - - - - - - - - pB3p+lelV4hHbP2WkXpOOKYi0vZ1y9Gy/izsdTAtcZ0= - - - - - - - - - - lqdCpqWSG703aUKUZuVLCGvz3fv9DSk/gweD2eGYZrQ= - - - - - - - - - nzG7pg3H+3uPdr/lzLxyroAH8XD1zvIYW4peV9fAD6M= - - - - - - - - - MsBfDGQbMHg7EHMcNY/8mrPtzIR7Si+xtJAcxLHz+wo= - - - - - - - - - M69a0Q8VAYpaeWem7o8i+9iv5cJdzgRLyWD48mOZQiM= - - - - - - - - - 5dxj6DQUI8H4fwy1EkXVnQnRwj/wJVEVSlzyjSYfUgI= - - - - - - - - - GI6mR05IfCFwEQvctIONdEaTnhHSnhbc3fLErCxmNJE= - - - - - - - - - k2m2tLIfVCyO67LZX2zSmbVyhl5XLttVgRG6E8/VuF0= - - - - - - - - - sBCYzVLt3A/I7Gku5XJ8ZLN2L/aR2YJ1WHrzbf+PySI= - - - - - - - - - ZzTzMYl3DLVEP1oagOyinEAULYpX610Iuk3sJnkA+yY= - - - - - - - - - LAoVjRnvN8/QnPLwFKlndMujFUfVmwuMdYg2vM+TWZI= - - - - - - - - - V0sbr2Q/ES6ckgBpW09YU5PFleJYeN3dWWNN5Bmte6o= - - - - - - - - - 2K2sK/Ba7mlOKw7sF8mza5p8tbxaAewzEqGSBUgZ1mY= - - - - - - - - - qmcKcG32LH7iikhI78zkcFVU8d2OB29WrHjaMNxQ31c= - - - - - - - - - Uj6S88dTZgAwhpS2lddEO1VF5yuGwj31xXwN2s4vPhY= - - - - - - - - - 9h0M8CsC6iXP7E+R3EmdfocnzxgjfrC53xwwS5GM3CQ= - - - - - - - - - w0UragVhbcpGR96DEyDG3918bEsoNR0lYqukJOOY6EM= - - - - - - - - - zrsVsDepWdceKYuysygzl34scDD+yFK0W6RY7elAjKc= - - - - - - - - - DwYeH+xQs13qziRfLclvR4xdlexQmcNybOPlAfAktNw= - - - - - - - - - a4iY6QVNpzMbNlIfIPmdmKdt6nRnAQGMDjOPWrM1oA8= - - - - - - - - - GyCFWEz6VhwTq8fb3O8SuIT0U2WVgelHbDp5L8lW7KA= - - - - - - - - - Z+wcS9Drzc+B2ytpUhd3VCyzHQlvomsyycp/Xiau5Vg= - - - - - - - - - AP1JKyEdfo5h1ffRNHo2ZLE9DVXPGViMIN5NeDTfJ5E= - - - - - - - - - wdycAfKPNJg2GO6pIc0JKDnDhE1zrtpamp5CVVKPOhw= - - - - - - - - - 7qdgZRiaGUdkQELrWMmy0X2MexD+1MiZHIJbd5Uml2E= - - - - - - - - - YQWpE0bdQOdQx4JECZ5oRvN5c6pb+uMgeovoDdT/sW8= - - - - - - - - - +zAe0vYsdCQdvT5DQ3XujGzfmMm5Mx5kvMQWGy32vq4= - - - - - - - - - VQvjXXCgsNEyzV6RvhuYZ5Reu41t0D7HH87dZYk7KcI= - - - - - - - - - rukmHuBnlGNy4RGEvN4wWt8Fz+EV9Z2izAvd+61FUR4= - - - - - - - - - pF6dDVQ6eNpFbiWSIN/nBMdJ/Oev6to/C/bBaGbEfoo= - - - - - - - - - slW3YsxMrkkV9T4PE0LgBfh9DIWGvIxcA1Tk4HQlPYw= - - - - - - - - - +Oqix05d9bmuGzXELIoh/sDI44JgBwy7xci7X79Q2KA= - - - - - - - - - qClKL3sLGduhUUkgph3TLlUcOJ9Rap+lqX32zp8f31A= - - - - - - - - - AzvxwpGvMrksiXkc3mKW5uuzp7TsxUxS7fhCKr9tmWE= - - - - - - - - - /J+u19nP9/3Umk2QZ4141A2KL/z1/EzabYWTsBAvdwQ= - - - - - - - - - v5spqrMy5B5E+JCBZbgg0zI5maO16zQPzVadt19KO5U= - - - - - - - - - hfdhKI5M05j5cHUOVxVwftsZVBbycC/w4+J5mknwmr0= - - - - - - - - - SR16+bLKwtB7indZu424Gg7EZatjjh3QQO1xMK78ItM= - - - - - - - - - e5Sz92eH3B1+fs6E/GQP+h4q2LmpTgNT43EkgevfryI= - - - - - - - - - bzXwypoYaLnjOMNStpcJjXIGFT2/HXJ8Awftsf+d6ZM= - - - - - - - - - xR7A8s/y3cRUwZTEB5N3A8KIF0mB8k5y4azjaVpgz3U= - - - - - - - - - zbhDuGL3PMWT/neUqIW70NotSiGrpCOiZlDRjp9jsfw= - - - - - - - - - +fshereDl8F60Ef1K3Q1uudUcIBJeWlPAmosAdKe/eY= - - - - - - - - - W0yCwc3lJJFqQfgeTtazQbdAjUboLWojci1PiqJjIBM= - - - - - - - - - x6TTsUiEHqlRiSdsR7WH5jiWTj1u/cJsO7BItxU4X9Q= - - + --> + + + + + + + + + + + + + + + + + + + + + + + + + HCRfTIXCraEwvFmULJC3AcJMBu2+PrJYOO2N5PhSU1w= + + + + + + + + + + + + kqatPPBK/G/VmlkO4NNuIOwfrJwVd6mbz/yROC011EA= + + + + + + + + + + + + UDnzq1bid2StNY4fmq7VKMqaq81ginmz76HAKIpmlnQ= + + + + + + + + + + lqdCpqWSG703aUKUZuVLCGvz3fv9DSk/gweD2eGYZrQ= + + + + + + + + + nzG7pg3H+3uPdr/lzLxyroAH8XD1zvIYW4peV9fAD6M= + + + + + + + + + MsBfDGQbMHg7EHMcNY/8mrPtzIR7Si+xtJAcxLHz+wo= + + + + + + + + + M69a0Q8VAYpaeWem7o8i+9iv5cJdzgRLyWD48mOZQiM= + + + + + + + + + 5dxj6DQUI8H4fwy1EkXVnQnRwj/wJVEVSlzyjSYfUgI= + + + + + + + + + GI6mR05IfCFwEQvctIONdEaTnhHSnhbc3fLErCxmNJE= + + + + + + + + + k2m2tLIfVCyO67LZX2zSmbVyhl5XLttVgRG6E8/VuF0= + + + + + + + + + sBCYzVLt3A/I7Gku5XJ8ZLN2L/aR2YJ1WHrzbf+PySI= + + + + + + + + + ZzTzMYl3DLVEP1oagOyinEAULYpX610Iuk3sJnkA+yY= + + + + + + + + + LAoVjRnvN8/QnPLwFKlndMujFUfVmwuMdYg2vM+TWZI= + + + + + + + + + V0sbr2Q/ES6ckgBpW09YU5PFleJYeN3dWWNN5Bmte6o= + + + + + + + + + 2K2sK/Ba7mlOKw7sF8mza5p8tbxaAewzEqGSBUgZ1mY= + + + + + + + + + qmcKcG32LH7iikhI78zkcFVU8d2OB29WrHjaMNxQ31c= + + + + + + + + + Uj6S88dTZgAwhpS2lddEO1VF5yuGwj31xXwN2s4vPhY= + + + + + + + + + 9h0M8CsC6iXP7E+R3EmdfocnzxgjfrC53xwwS5GM3CQ= + + + + + + + + + w0UragVhbcpGR96DEyDG3918bEsoNR0lYqukJOOY6EM= + + + + + + + + + zrsVsDepWdceKYuysygzl34scDD+yFK0W6RY7elAjKc= + + + + + + + + + DwYeH+xQs13qziRfLclvR4xdlexQmcNybOPlAfAktNw= + + + + + + + + + a4iY6QVNpzMbNlIfIPmdmKdt6nRnAQGMDjOPWrM1oA8= + + + + + + + + + GyCFWEz6VhwTq8fb3O8SuIT0U2WVgelHbDp5L8lW7KA= + + + + + + + + + Z+wcS9Drzc+B2ytpUhd3VCyzHQlvomsyycp/Xiau5Vg= + + + + + + + + + AP1JKyEdfo5h1ffRNHo2ZLE9DVXPGViMIN5NeDTfJ5E= + + + + + + + + + wdycAfKPNJg2GO6pIc0JKDnDhE1zrtpamp5CVVKPOhw= + + + + + + + + + 7qdgZRiaGUdkQELrWMmy0X2MexD+1MiZHIJbd5Uml2E= + + + + + + + + + YQWpE0bdQOdQx4JECZ5oRvN5c6pb+uMgeovoDdT/sW8= + + + + + + + + + +zAe0vYsdCQdvT5DQ3XujGzfmMm5Mx5kvMQWGy32vq4= + + + + + + + + + VQvjXXCgsNEyzV6RvhuYZ5Reu41t0D7HH87dZYk7KcI= + + + + + + + + + rukmHuBnlGNy4RGEvN4wWt8Fz+EV9Z2izAvd+61FUR4= + + + + + + + + + pF6dDVQ6eNpFbiWSIN/nBMdJ/Oev6to/C/bBaGbEfoo= + + + + + + + + + slW3YsxMrkkV9T4PE0LgBfh9DIWGvIxcA1Tk4HQlPYw= + + + + + + + + + +Oqix05d9bmuGzXELIoh/sDI44JgBwy7xci7X79Q2KA= + + + + + + + + + qClKL3sLGduhUUkgph3TLlUcOJ9Rap+lqX32zp8f31A= + + + + + + + + + AzvxwpGvMrksiXkc3mKW5uuzp7TsxUxS7fhCKr9tmWE= + + + + + + + + + /J+u19nP9/3Umk2QZ4141A2KL/z1/EzabYWTsBAvdwQ= + + + + + + + + + v5spqrMy5B5E+JCBZbgg0zI5maO16zQPzVadt19KO5U= + + + + + + + + + hfdhKI5M05j5cHUOVxVwftsZVBbycC/w4+J5mknwmr0= + + + + + + + + + SR16+bLKwtB7indZu424Gg7EZatjjh3QQO1xMK78ItM= + + + + + + + + + e5Sz92eH3B1+fs6E/GQP+h4q2LmpTgNT43EkgevfryI= + + + + + + + + + bzXwypoYaLnjOMNStpcJjXIGFT2/HXJ8Awftsf+d6ZM= + + + + + + + + + xR7A8s/y3cRUwZTEB5N3A8KIF0mB8k5y4azjaVpgz3U= + + + + + + + + + zbhDuGL3PMWT/neUqIW70NotSiGrpCOiZlDRjp9jsfw= + + + + + + + + + +fshereDl8F60Ef1K3Q1uudUcIBJeWlPAmosAdKe/eY= + + + + + + + + + W0yCwc3lJJFqQfgeTtazQbdAjUboLWojci1PiqJjIBM= + + + + + + + + + x6TTsUiEHqlRiSdsR7WH5jiWTj1u/cJsO7BItxU4X9Q= + + \ No newline at end of file diff --git a/TimeHACK.Main/bin/Release/TimeHACK.pdb b/TimeHACK.Main/bin/Release/TimeHACK.pdb index 27f2f5c..88e3e5c 100644 Binary files a/TimeHACK.Main/bin/Release/TimeHACK.pdb and b/TimeHACK.Main/bin/Release/TimeHACK.pdb differ diff --git a/TimeHACK.Main/bin/Release/TimeHACK.vshost.application b/TimeHACK.Main/bin/Release/TimeHACK.vshost.application index 797af7b..27f7ad6 100644 --- a/TimeHACK.Main/bin/Release/TimeHACK.vshost.application +++ b/TimeHACK.Main/bin/Release/TimeHACK.vshost.application @@ -1,21 +1,21 @@ - - - - - - - - - - - - - - - - - Uz3V5ZfPvL8kbLdPsTxWUf0G46Tk2FvGdS//5mccIVQ= - - - + + + + + + + + + + + + + + + + + tqcU7kIBg+iSygTjllqLFFURbdNeO1xDOBjh+ang0bM= + + + \ No newline at end of file diff --git a/TimeHACK.Main/bin/Release/TimeHACK.vshost.exe.manifest b/TimeHACK.Main/bin/Release/TimeHACK.vshost.exe.manifest index 375c506..be9fcac 100644 --- a/TimeHACK.Main/bin/Release/TimeHACK.vshost.exe.manifest +++ b/TimeHACK.Main/bin/Release/TimeHACK.vshost.exe.manifest @@ -1,20 +1,20 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - HCRfTIXCraEwvFmULJC3AcJMBu2+PrJYOO2N5PhSU1w= - - - - - - - - - - - - 6TXNhM+YgvjkCt77w0GQTcIrotJF2QVUhEdYf1z/jr4= - - - - - - - - - - - - IHN6zq12VyThKYP0thtt/7SHfFzso+22RuHWIy0c4dg= - - - - - - - - - - lqdCpqWSG703aUKUZuVLCGvz3fv9DSk/gweD2eGYZrQ= - - - - - - - - - nzG7pg3H+3uPdr/lzLxyroAH8XD1zvIYW4peV9fAD6M= - - - - - - - - - MsBfDGQbMHg7EHMcNY/8mrPtzIR7Si+xtJAcxLHz+wo= - - - - - - - - - M69a0Q8VAYpaeWem7o8i+9iv5cJdzgRLyWD48mOZQiM= - - - - - - - - - 5dxj6DQUI8H4fwy1EkXVnQnRwj/wJVEVSlzyjSYfUgI= - - - - - - - - - GI6mR05IfCFwEQvctIONdEaTnhHSnhbc3fLErCxmNJE= - - - - - - - - - k2m2tLIfVCyO67LZX2zSmbVyhl5XLttVgRG6E8/VuF0= - - - - - - - - - sBCYzVLt3A/I7Gku5XJ8ZLN2L/aR2YJ1WHrzbf+PySI= - - - - - - - - - ZzTzMYl3DLVEP1oagOyinEAULYpX610Iuk3sJnkA+yY= - - - - - - - - - LAoVjRnvN8/QnPLwFKlndMujFUfVmwuMdYg2vM+TWZI= - - - - - - - - - V0sbr2Q/ES6ckgBpW09YU5PFleJYeN3dWWNN5Bmte6o= - - - - - - - - - 2K2sK/Ba7mlOKw7sF8mza5p8tbxaAewzEqGSBUgZ1mY= - - - - - - - - - qmcKcG32LH7iikhI78zkcFVU8d2OB29WrHjaMNxQ31c= - - - - - - - - - Uj6S88dTZgAwhpS2lddEO1VF5yuGwj31xXwN2s4vPhY= - - - - - - - - - 9h0M8CsC6iXP7E+R3EmdfocnzxgjfrC53xwwS5GM3CQ= - - - - - - - - - w0UragVhbcpGR96DEyDG3918bEsoNR0lYqukJOOY6EM= - - - - - - - - - zrsVsDepWdceKYuysygzl34scDD+yFK0W6RY7elAjKc= - - - - - - - - - DwYeH+xQs13qziRfLclvR4xdlexQmcNybOPlAfAktNw= - - - - - - - - - a4iY6QVNpzMbNlIfIPmdmKdt6nRnAQGMDjOPWrM1oA8= - - - - - - - - - GyCFWEz6VhwTq8fb3O8SuIT0U2WVgelHbDp5L8lW7KA= - - - - - - - - - Z+wcS9Drzc+B2ytpUhd3VCyzHQlvomsyycp/Xiau5Vg= - - - - - - - - - AP1JKyEdfo5h1ffRNHo2ZLE9DVXPGViMIN5NeDTfJ5E= - - - - - - - - - wdycAfKPNJg2GO6pIc0JKDnDhE1zrtpamp5CVVKPOhw= - - - - - - - - - 7qdgZRiaGUdkQELrWMmy0X2MexD+1MiZHIJbd5Uml2E= - - - - - - - - - YQWpE0bdQOdQx4JECZ5oRvN5c6pb+uMgeovoDdT/sW8= - - - - - - - - - +zAe0vYsdCQdvT5DQ3XujGzfmMm5Mx5kvMQWGy32vq4= - - - - - - - - - VQvjXXCgsNEyzV6RvhuYZ5Reu41t0D7HH87dZYk7KcI= - - - - - - - - - rukmHuBnlGNy4RGEvN4wWt8Fz+EV9Z2izAvd+61FUR4= - - - - - - - - - pF6dDVQ6eNpFbiWSIN/nBMdJ/Oev6to/C/bBaGbEfoo= - - - - - - - - - slW3YsxMrkkV9T4PE0LgBfh9DIWGvIxcA1Tk4HQlPYw= - - - - - - - - - +Oqix05d9bmuGzXELIoh/sDI44JgBwy7xci7X79Q2KA= - - - - - - - - - qClKL3sLGduhUUkgph3TLlUcOJ9Rap+lqX32zp8f31A= - - - - - - - - - AzvxwpGvMrksiXkc3mKW5uuzp7TsxUxS7fhCKr9tmWE= - - - - - - - - - /J+u19nP9/3Umk2QZ4141A2KL/z1/EzabYWTsBAvdwQ= - - - - - - - - - v5spqrMy5B5E+JCBZbgg0zI5maO16zQPzVadt19KO5U= - - - - - - - - - hfdhKI5M05j5cHUOVxVwftsZVBbycC/w4+J5mknwmr0= - - - - - - - - - SR16+bLKwtB7indZu424Gg7EZatjjh3QQO1xMK78ItM= - - - - - - - - - e5Sz92eH3B1+fs6E/GQP+h4q2LmpTgNT43EkgevfryI= - - - - - - - - - bzXwypoYaLnjOMNStpcJjXIGFT2/HXJ8Awftsf+d6ZM= - - - - - - - - - xR7A8s/y3cRUwZTEB5N3A8KIF0mB8k5y4azjaVpgz3U= - - - - - - - - - zbhDuGL3PMWT/neUqIW70NotSiGrpCOiZlDRjp9jsfw= - - - - - - - - - +fshereDl8F60Ef1K3Q1uudUcIBJeWlPAmosAdKe/eY= - - - - - - - - - W0yCwc3lJJFqQfgeTtazQbdAjUboLWojci1PiqJjIBM= - - - - - - - - - x6TTsUiEHqlRiSdsR7WH5jiWTj1u/cJsO7BItxU4X9Q= - - + --> + + + + + + + + + + + + + + + + + + + + + + + + + HCRfTIXCraEwvFmULJC3AcJMBu2+PrJYOO2N5PhSU1w= + + + + + + + + + + + + kqatPPBK/G/VmlkO4NNuIOwfrJwVd6mbz/yROC011EA= + + + + + + + + + + + + UDnzq1bid2StNY4fmq7VKMqaq81ginmz76HAKIpmlnQ= + + + + + + + + + + lqdCpqWSG703aUKUZuVLCGvz3fv9DSk/gweD2eGYZrQ= + + + + + + + + + nzG7pg3H+3uPdr/lzLxyroAH8XD1zvIYW4peV9fAD6M= + + + + + + + + + MsBfDGQbMHg7EHMcNY/8mrPtzIR7Si+xtJAcxLHz+wo= + + + + + + + + + M69a0Q8VAYpaeWem7o8i+9iv5cJdzgRLyWD48mOZQiM= + + + + + + + + + 5dxj6DQUI8H4fwy1EkXVnQnRwj/wJVEVSlzyjSYfUgI= + + + + + + + + + GI6mR05IfCFwEQvctIONdEaTnhHSnhbc3fLErCxmNJE= + + + + + + + + + k2m2tLIfVCyO67LZX2zSmbVyhl5XLttVgRG6E8/VuF0= + + + + + + + + + sBCYzVLt3A/I7Gku5XJ8ZLN2L/aR2YJ1WHrzbf+PySI= + + + + + + + + + ZzTzMYl3DLVEP1oagOyinEAULYpX610Iuk3sJnkA+yY= + + + + + + + + + LAoVjRnvN8/QnPLwFKlndMujFUfVmwuMdYg2vM+TWZI= + + + + + + + + + V0sbr2Q/ES6ckgBpW09YU5PFleJYeN3dWWNN5Bmte6o= + + + + + + + + + 2K2sK/Ba7mlOKw7sF8mza5p8tbxaAewzEqGSBUgZ1mY= + + + + + + + + + qmcKcG32LH7iikhI78zkcFVU8d2OB29WrHjaMNxQ31c= + + + + + + + + + Uj6S88dTZgAwhpS2lddEO1VF5yuGwj31xXwN2s4vPhY= + + + + + + + + + 9h0M8CsC6iXP7E+R3EmdfocnzxgjfrC53xwwS5GM3CQ= + + + + + + + + + w0UragVhbcpGR96DEyDG3918bEsoNR0lYqukJOOY6EM= + + + + + + + + + zrsVsDepWdceKYuysygzl34scDD+yFK0W6RY7elAjKc= + + + + + + + + + DwYeH+xQs13qziRfLclvR4xdlexQmcNybOPlAfAktNw= + + + + + + + + + a4iY6QVNpzMbNlIfIPmdmKdt6nRnAQGMDjOPWrM1oA8= + + + + + + + + + GyCFWEz6VhwTq8fb3O8SuIT0U2WVgelHbDp5L8lW7KA= + + + + + + + + + Z+wcS9Drzc+B2ytpUhd3VCyzHQlvomsyycp/Xiau5Vg= + + + + + + + + + AP1JKyEdfo5h1ffRNHo2ZLE9DVXPGViMIN5NeDTfJ5E= + + + + + + + + + wdycAfKPNJg2GO6pIc0JKDnDhE1zrtpamp5CVVKPOhw= + + + + + + + + + 7qdgZRiaGUdkQELrWMmy0X2MexD+1MiZHIJbd5Uml2E= + + + + + + + + + YQWpE0bdQOdQx4JECZ5oRvN5c6pb+uMgeovoDdT/sW8= + + + + + + + + + +zAe0vYsdCQdvT5DQ3XujGzfmMm5Mx5kvMQWGy32vq4= + + + + + + + + + VQvjXXCgsNEyzV6RvhuYZ5Reu41t0D7HH87dZYk7KcI= + + + + + + + + + rukmHuBnlGNy4RGEvN4wWt8Fz+EV9Z2izAvd+61FUR4= + + + + + + + + + pF6dDVQ6eNpFbiWSIN/nBMdJ/Oev6to/C/bBaGbEfoo= + + + + + + + + + slW3YsxMrkkV9T4PE0LgBfh9DIWGvIxcA1Tk4HQlPYw= + + + + + + + + + +Oqix05d9bmuGzXELIoh/sDI44JgBwy7xci7X79Q2KA= + + + + + + + + + qClKL3sLGduhUUkgph3TLlUcOJ9Rap+lqX32zp8f31A= + + + + + + + + + AzvxwpGvMrksiXkc3mKW5uuzp7TsxUxS7fhCKr9tmWE= + + + + + + + + + /J+u19nP9/3Umk2QZ4141A2KL/z1/EzabYWTsBAvdwQ= + + + + + + + + + v5spqrMy5B5E+JCBZbgg0zI5maO16zQPzVadt19KO5U= + + + + + + + + + hfdhKI5M05j5cHUOVxVwftsZVBbycC/w4+J5mknwmr0= + + + + + + + + + SR16+bLKwtB7indZu424Gg7EZatjjh3QQO1xMK78ItM= + + + + + + + + + e5Sz92eH3B1+fs6E/GQP+h4q2LmpTgNT43EkgevfryI= + + + + + + + + + bzXwypoYaLnjOMNStpcJjXIGFT2/HXJ8Awftsf+d6ZM= + + + + + + + + + xR7A8s/y3cRUwZTEB5N3A8KIF0mB8k5y4azjaVpgz3U= + + + + + + + + + zbhDuGL3PMWT/neUqIW70NotSiGrpCOiZlDRjp9jsfw= + + + + + + + + + +fshereDl8F60Ef1K3Q1uudUcIBJeWlPAmosAdKe/eY= + + + + + + + + + W0yCwc3lJJFqQfgeTtazQbdAjUboLWojci1PiqJjIBM= + + + + + + + + + x6TTsUiEHqlRiSdsR7WH5jiWTj1u/cJsO7BItxU4X9Q= + + \ No newline at end of file diff --git a/TimeHACK.Main/bin/Release/app.publish/TimeHACK.exe b/TimeHACK.Main/bin/Release/app.publish/TimeHACK.exe index b29450f..99f4f67 100644 Binary files a/TimeHACK.Main/bin/Release/app.publish/TimeHACK.exe and b/TimeHACK.Main/bin/Release/app.publish/TimeHACK.exe differ diff --git a/TimeHACK.Main/bin/Release/windows_command_prompt.ttf b/TimeHACK.Main/bin/Release/windows_command_prompt.ttf index b771b3a..f5cbfc0 100644 Binary files a/TimeHACK.Main/bin/Release/windows_command_prompt.ttf and b/TimeHACK.Main/bin/Release/windows_command_prompt.ttf differ diff --git a/TimeHACK.Main/bin/Release/windows_command_promptold.ttf b/TimeHACK.Main/bin/Release/windows_command_promptold.ttf new file mode 100644 index 0000000..b771b3a Binary files /dev/null and b/TimeHACK.Main/bin/Release/windows_command_promptold.ttf differ diff --git a/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.FileListAbsolute.txt b/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.FileListAbsolute.txt index c112d50..b40c703 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.FileListAbsolute.txt +++ b/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.FileListAbsolute.txt @@ -1,63 +1,95 @@ -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Main.csprojResolveAssemblyReference.cache -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.NewGameDialog.resources -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Windows95.resources -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewContact.resources -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.TestApp.resources -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WebChat1998.resources -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewFolder.resources -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicAddressBook.resources -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicDownloader.resources -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicHWCV.resources -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.WinClassicInstaller.resources -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicNotepad.resources -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicWordPad.resources -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Engine.Template.Taskbars.Win95TaskBarItem.resources -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win98.Win98.resources -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.TitleScreen.resources -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Main.csproj.GenerateResource.Cache -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Properties.Resources.resources -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.exe.manifest -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.application -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.exe -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.pdb -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.Engine.dll -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.Engine.pdb -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.exe.manifest -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.application -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.exe -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.pdb -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.LoadGameDialog.resources -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.LoadGameProfileItem.resources -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Main.csprojResolveAssemblyReference.cache -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.LoadGameDialog.resources -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.LoadGameProfileItem.resources -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.NewGameDialog.resources -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Windows95.resources -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewContact.resources -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.TestApp.resources -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WebChat1998.resources -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewFolder.resources -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicAddressBook.resources -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicDownloader.resources -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicHWCV.resources -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.WinClassicInstaller.resources -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicNotepad.resources -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicWordPad.resources -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Engine.Template.Taskbars.Win95TaskBarItem.resources -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win98.Win98.resources -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Properties.Resources.resources -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.TitleScreen.resources -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Main.csproj.GenerateResource.Cache -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.exe -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.pdb -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.exe.manifest -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.application -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.exe -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.pdb -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.Engine.dll -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.Engine.pdb -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.exe.manifest -C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.application -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicWindowsExplorer.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Main.csprojResolveAssemblyReference.cache +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.NewGameDialog.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Windows95.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewContact.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.TestApp.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WebChat1998.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewFolder.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicAddressBook.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicDownloader.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicHWCV.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.WinClassicInstaller.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicNotepad.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicWordPad.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Engine.Template.Taskbars.Win95TaskBarItem.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win98.Win98.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.TitleScreen.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Main.csproj.GenerateResource.Cache +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Properties.Resources.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.exe.manifest +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.application +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.exe +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.pdb +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.Engine.dll +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.Engine.pdb +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.exe.manifest +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.application +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.exe +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.pdb +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.LoadGameDialog.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.LoadGameProfileItem.resources +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Main.csprojResolveAssemblyReference.cache +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.LoadGameDialog.resources +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.LoadGameProfileItem.resources +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.NewGameDialog.resources +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Windows95.resources +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewContact.resources +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.TestApp.resources +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WebChat1998.resources +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewFolder.resources +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicAddressBook.resources +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicDownloader.resources +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicHWCV.resources +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.WinClassicInstaller.resources +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicNotepad.resources +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicWordPad.resources +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Engine.Template.Taskbars.Win95TaskBarItem.resources +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win98.Win98.resources +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Properties.Resources.resources +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.TitleScreen.resources +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Main.csproj.GenerateResource.Cache +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.exe +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.pdb +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.exe.manifest +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.application +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.exe +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.pdb +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.Engine.dll +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.Engine.pdb +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.exe.manifest +C:\Users\Logan\Desktop\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.application +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicWindowsExplorer.resources +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\bin\Release\TimeHACK.exe.manifest +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\bin\Release\TimeHACK.application +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\bin\Release\TimeHACK.exe +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\bin\Release\TimeHACK.pdb +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\bin\Release\TimeHACK.Engine.dll +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\bin\Release\TimeHACK.Engine.pdb +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.Main.csprojResolveAssemblyReference.cache +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicWindowsExplorer.resources +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.LoadGameDialog.resources +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.LoadGameProfileItem.resources +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.NewGameDialog.resources +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Windows95.resources +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewContact.resources +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.TestApp.resources +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WebChat1998.resources +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewFolder.resources +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicAddressBook.resources +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicDownloader.resources +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicHWCV.resources +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.WinClassicInstaller.resources +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicNotepad.resources +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicWordPad.resources +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.Engine.Template.Taskbars.Win95TaskBarItem.resources +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win98.Win98.resources +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.Properties.Resources.resources +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.TitleScreen.resources +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.Main.csproj.GenerateResource.Cache +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.exe.manifest +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.application +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.exe +C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.pdb diff --git a/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.GenerateResource.Cache b/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.GenerateResource.Cache index fb345e2..44161f9 100644 Binary files a/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.GenerateResource.Cache and b/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.GenerateResource.Cache differ diff --git a/TimeHACK.Main/obj/Release/TimeHACK.Main.csprojResolveAssemblyReference.cache b/TimeHACK.Main/obj/Release/TimeHACK.Main.csprojResolveAssemblyReference.cache index 9d7a5c6..4175df5 100644 Binary files a/TimeHACK.Main/obj/Release/TimeHACK.Main.csprojResolveAssemblyReference.cache and b/TimeHACK.Main/obj/Release/TimeHACK.Main.csprojResolveAssemblyReference.cache differ diff --git a/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources b/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources index 15a3c57..ed371f5 100644 Binary files a/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources and b/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources differ diff --git a/TimeHACK.Main/obj/Release/TimeHACK.WinClassicForms.WinClassicInstaller.resources b/TimeHACK.Main/obj/Release/TimeHACK.WinClassicForms.WinClassicInstaller.resources index efaafcd..4f16f96 100644 Binary files a/TimeHACK.Main/obj/Release/TimeHACK.WinClassicForms.WinClassicInstaller.resources and b/TimeHACK.Main/obj/Release/TimeHACK.WinClassicForms.WinClassicInstaller.resources differ diff --git a/TimeHACK.Main/obj/Release/TimeHACK.application b/TimeHACK.Main/obj/Release/TimeHACK.application index 0b8c0e2..27f7ad6 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.application +++ b/TimeHACK.Main/obj/Release/TimeHACK.application @@ -1,21 +1,21 @@ - - - - - - - - - - - - - - - - - 9Vn2cL4kFfzLPc3LsnSQXKEdILzgqp9vkDv9jGtyT6U= - - - + + + + + + + + + + + + + + + + + tqcU7kIBg+iSygTjllqLFFURbdNeO1xDOBjh+ang0bM= + + + \ No newline at end of file diff --git a/TimeHACK.Main/obj/Release/TimeHACK.exe b/TimeHACK.Main/obj/Release/TimeHACK.exe index b29450f..99f4f67 100644 Binary files a/TimeHACK.Main/obj/Release/TimeHACK.exe and b/TimeHACK.Main/obj/Release/TimeHACK.exe differ diff --git a/TimeHACK.Main/obj/Release/TimeHACK.exe.manifest b/TimeHACK.Main/obj/Release/TimeHACK.exe.manifest index 9702f97..be9fcac 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.exe.manifest +++ b/TimeHACK.Main/obj/Release/TimeHACK.exe.manifest @@ -1,20 +1,20 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - HCRfTIXCraEwvFmULJC3AcJMBu2+PrJYOO2N5PhSU1w= - - - - - - - - - - - - C0DypFsA0FRRcxPI4DHe6SOD8bTYwKPXx2xLn7V3hVk= - - - - - - - - - - - - pB3p+lelV4hHbP2WkXpOOKYi0vZ1y9Gy/izsdTAtcZ0= - - - - - - - - - - lqdCpqWSG703aUKUZuVLCGvz3fv9DSk/gweD2eGYZrQ= - - - - - - - - - nzG7pg3H+3uPdr/lzLxyroAH8XD1zvIYW4peV9fAD6M= - - - - - - - - - MsBfDGQbMHg7EHMcNY/8mrPtzIR7Si+xtJAcxLHz+wo= - - - - - - - - - M69a0Q8VAYpaeWem7o8i+9iv5cJdzgRLyWD48mOZQiM= - - - - - - - - - 5dxj6DQUI8H4fwy1EkXVnQnRwj/wJVEVSlzyjSYfUgI= - - - - - - - - - GI6mR05IfCFwEQvctIONdEaTnhHSnhbc3fLErCxmNJE= - - - - - - - - - k2m2tLIfVCyO67LZX2zSmbVyhl5XLttVgRG6E8/VuF0= - - - - - - - - - sBCYzVLt3A/I7Gku5XJ8ZLN2L/aR2YJ1WHrzbf+PySI= - - - - - - - - - ZzTzMYl3DLVEP1oagOyinEAULYpX610Iuk3sJnkA+yY= - - - - - - - - - LAoVjRnvN8/QnPLwFKlndMujFUfVmwuMdYg2vM+TWZI= - - - - - - - - - V0sbr2Q/ES6ckgBpW09YU5PFleJYeN3dWWNN5Bmte6o= - - - - - - - - - 2K2sK/Ba7mlOKw7sF8mza5p8tbxaAewzEqGSBUgZ1mY= - - - - - - - - - qmcKcG32LH7iikhI78zkcFVU8d2OB29WrHjaMNxQ31c= - - - - - - - - - Uj6S88dTZgAwhpS2lddEO1VF5yuGwj31xXwN2s4vPhY= - - - - - - - - - 9h0M8CsC6iXP7E+R3EmdfocnzxgjfrC53xwwS5GM3CQ= - - - - - - - - - w0UragVhbcpGR96DEyDG3918bEsoNR0lYqukJOOY6EM= - - - - - - - - - zrsVsDepWdceKYuysygzl34scDD+yFK0W6RY7elAjKc= - - - - - - - - - DwYeH+xQs13qziRfLclvR4xdlexQmcNybOPlAfAktNw= - - - - - - - - - a4iY6QVNpzMbNlIfIPmdmKdt6nRnAQGMDjOPWrM1oA8= - - - - - - - - - GyCFWEz6VhwTq8fb3O8SuIT0U2WVgelHbDp5L8lW7KA= - - - - - - - - - Z+wcS9Drzc+B2ytpUhd3VCyzHQlvomsyycp/Xiau5Vg= - - - - - - - - - AP1JKyEdfo5h1ffRNHo2ZLE9DVXPGViMIN5NeDTfJ5E= - - - - - - - - - wdycAfKPNJg2GO6pIc0JKDnDhE1zrtpamp5CVVKPOhw= - - - - - - - - - 7qdgZRiaGUdkQELrWMmy0X2MexD+1MiZHIJbd5Uml2E= - - - - - - - - - YQWpE0bdQOdQx4JECZ5oRvN5c6pb+uMgeovoDdT/sW8= - - - - - - - - - +zAe0vYsdCQdvT5DQ3XujGzfmMm5Mx5kvMQWGy32vq4= - - - - - - - - - VQvjXXCgsNEyzV6RvhuYZ5Reu41t0D7HH87dZYk7KcI= - - - - - - - - - rukmHuBnlGNy4RGEvN4wWt8Fz+EV9Z2izAvd+61FUR4= - - - - - - - - - pF6dDVQ6eNpFbiWSIN/nBMdJ/Oev6to/C/bBaGbEfoo= - - - - - - - - - slW3YsxMrkkV9T4PE0LgBfh9DIWGvIxcA1Tk4HQlPYw= - - - - - - - - - +Oqix05d9bmuGzXELIoh/sDI44JgBwy7xci7X79Q2KA= - - - - - - - - - qClKL3sLGduhUUkgph3TLlUcOJ9Rap+lqX32zp8f31A= - - - - - - - - - AzvxwpGvMrksiXkc3mKW5uuzp7TsxUxS7fhCKr9tmWE= - - - - - - - - - /J+u19nP9/3Umk2QZ4141A2KL/z1/EzabYWTsBAvdwQ= - - - - - - - - - v5spqrMy5B5E+JCBZbgg0zI5maO16zQPzVadt19KO5U= - - - - - - - - - hfdhKI5M05j5cHUOVxVwftsZVBbycC/w4+J5mknwmr0= - - - - - - - - - SR16+bLKwtB7indZu424Gg7EZatjjh3QQO1xMK78ItM= - - - - - - - - - e5Sz92eH3B1+fs6E/GQP+h4q2LmpTgNT43EkgevfryI= - - - - - - - - - bzXwypoYaLnjOMNStpcJjXIGFT2/HXJ8Awftsf+d6ZM= - - - - - - - - - xR7A8s/y3cRUwZTEB5N3A8KIF0mB8k5y4azjaVpgz3U= - - - - - - - - - zbhDuGL3PMWT/neUqIW70NotSiGrpCOiZlDRjp9jsfw= - - - - - - - - - +fshereDl8F60Ef1K3Q1uudUcIBJeWlPAmosAdKe/eY= - - - - - - - - - W0yCwc3lJJFqQfgeTtazQbdAjUboLWojci1PiqJjIBM= - - - - - - - - - x6TTsUiEHqlRiSdsR7WH5jiWTj1u/cJsO7BItxU4X9Q= - - + --> + + + + + + + + + + + + + + + + + + + + + + + + + HCRfTIXCraEwvFmULJC3AcJMBu2+PrJYOO2N5PhSU1w= + + + + + + + + + + + + kqatPPBK/G/VmlkO4NNuIOwfrJwVd6mbz/yROC011EA= + + + + + + + + + + + + UDnzq1bid2StNY4fmq7VKMqaq81ginmz76HAKIpmlnQ= + + + + + + + + + + lqdCpqWSG703aUKUZuVLCGvz3fv9DSk/gweD2eGYZrQ= + + + + + + + + + nzG7pg3H+3uPdr/lzLxyroAH8XD1zvIYW4peV9fAD6M= + + + + + + + + + MsBfDGQbMHg7EHMcNY/8mrPtzIR7Si+xtJAcxLHz+wo= + + + + + + + + + M69a0Q8VAYpaeWem7o8i+9iv5cJdzgRLyWD48mOZQiM= + + + + + + + + + 5dxj6DQUI8H4fwy1EkXVnQnRwj/wJVEVSlzyjSYfUgI= + + + + + + + + + GI6mR05IfCFwEQvctIONdEaTnhHSnhbc3fLErCxmNJE= + + + + + + + + + k2m2tLIfVCyO67LZX2zSmbVyhl5XLttVgRG6E8/VuF0= + + + + + + + + + sBCYzVLt3A/I7Gku5XJ8ZLN2L/aR2YJ1WHrzbf+PySI= + + + + + + + + + ZzTzMYl3DLVEP1oagOyinEAULYpX610Iuk3sJnkA+yY= + + + + + + + + + LAoVjRnvN8/QnPLwFKlndMujFUfVmwuMdYg2vM+TWZI= + + + + + + + + + V0sbr2Q/ES6ckgBpW09YU5PFleJYeN3dWWNN5Bmte6o= + + + + + + + + + 2K2sK/Ba7mlOKw7sF8mza5p8tbxaAewzEqGSBUgZ1mY= + + + + + + + + + qmcKcG32LH7iikhI78zkcFVU8d2OB29WrHjaMNxQ31c= + + + + + + + + + Uj6S88dTZgAwhpS2lddEO1VF5yuGwj31xXwN2s4vPhY= + + + + + + + + + 9h0M8CsC6iXP7E+R3EmdfocnzxgjfrC53xwwS5GM3CQ= + + + + + + + + + w0UragVhbcpGR96DEyDG3918bEsoNR0lYqukJOOY6EM= + + + + + + + + + zrsVsDepWdceKYuysygzl34scDD+yFK0W6RY7elAjKc= + + + + + + + + + DwYeH+xQs13qziRfLclvR4xdlexQmcNybOPlAfAktNw= + + + + + + + + + a4iY6QVNpzMbNlIfIPmdmKdt6nRnAQGMDjOPWrM1oA8= + + + + + + + + + GyCFWEz6VhwTq8fb3O8SuIT0U2WVgelHbDp5L8lW7KA= + + + + + + + + + Z+wcS9Drzc+B2ytpUhd3VCyzHQlvomsyycp/Xiau5Vg= + + + + + + + + + AP1JKyEdfo5h1ffRNHo2ZLE9DVXPGViMIN5NeDTfJ5E= + + + + + + + + + wdycAfKPNJg2GO6pIc0JKDnDhE1zrtpamp5CVVKPOhw= + + + + + + + + + 7qdgZRiaGUdkQELrWMmy0X2MexD+1MiZHIJbd5Uml2E= + + + + + + + + + YQWpE0bdQOdQx4JECZ5oRvN5c6pb+uMgeovoDdT/sW8= + + + + + + + + + +zAe0vYsdCQdvT5DQ3XujGzfmMm5Mx5kvMQWGy32vq4= + + + + + + + + + VQvjXXCgsNEyzV6RvhuYZ5Reu41t0D7HH87dZYk7KcI= + + + + + + + + + rukmHuBnlGNy4RGEvN4wWt8Fz+EV9Z2izAvd+61FUR4= + + + + + + + + + pF6dDVQ6eNpFbiWSIN/nBMdJ/Oev6to/C/bBaGbEfoo= + + + + + + + + + slW3YsxMrkkV9T4PE0LgBfh9DIWGvIxcA1Tk4HQlPYw= + + + + + + + + + +Oqix05d9bmuGzXELIoh/sDI44JgBwy7xci7X79Q2KA= + + + + + + + + + qClKL3sLGduhUUkgph3TLlUcOJ9Rap+lqX32zp8f31A= + + + + + + + + + AzvxwpGvMrksiXkc3mKW5uuzp7TsxUxS7fhCKr9tmWE= + + + + + + + + + /J+u19nP9/3Umk2QZ4141A2KL/z1/EzabYWTsBAvdwQ= + + + + + + + + + v5spqrMy5B5E+JCBZbgg0zI5maO16zQPzVadt19KO5U= + + + + + + + + + hfdhKI5M05j5cHUOVxVwftsZVBbycC/w4+J5mknwmr0= + + + + + + + + + SR16+bLKwtB7indZu424Gg7EZatjjh3QQO1xMK78ItM= + + + + + + + + + e5Sz92eH3B1+fs6E/GQP+h4q2LmpTgNT43EkgevfryI= + + + + + + + + + bzXwypoYaLnjOMNStpcJjXIGFT2/HXJ8Awftsf+d6ZM= + + + + + + + + + xR7A8s/y3cRUwZTEB5N3A8KIF0mB8k5y4azjaVpgz3U= + + + + + + + + + zbhDuGL3PMWT/neUqIW70NotSiGrpCOiZlDRjp9jsfw= + + + + + + + + + +fshereDl8F60Ef1K3Q1uudUcIBJeWlPAmosAdKe/eY= + + + + + + + + + W0yCwc3lJJFqQfgeTtazQbdAjUboLWojci1PiqJjIBM= + + + + + + + + + x6TTsUiEHqlRiSdsR7WH5jiWTj1u/cJsO7BItxU4X9Q= + + \ No newline at end of file diff --git a/TimeHACK.Main/obj/Release/TimeHACK.pdb b/TimeHACK.Main/obj/Release/TimeHACK.pdb index 27f2f5c..88e3e5c 100644 Binary files a/TimeHACK.Main/obj/Release/TimeHACK.pdb and b/TimeHACK.Main/obj/Release/TimeHACK.pdb differ -- cgit v1.2.3 From b58ee3f47ecf886e8a177d6a1fde7685ba6505e1 Mon Sep 17 00:00:00 2001 From: Aren Date: Thu, 1 Jun 2017 10:34:10 +0200 Subject: Add Histacom.AU to README --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 299313b..4a781a8 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,8 @@ TimeHACK's documentation can be found on the TimeHACK Wiki: https://github.com/T ## Other Repositories * A completely discontinued project called "HistacomVB". The idea of it being that it was the old game except being built upon. In the end, however, we stopped it because having "HistacomVB" and "TimeHACK" was unnecessary. If you REALLY want to see the repo, click here: http://www.github.com/TimeHACKDevs/HistacomVB +* An unofficial project called "Histacom.AU". +This is a rewrite of Histacom in Python, and has a place [here](https://github.com/TimeHACKDevs/histacom-au) ## License TimeHACK is licensed under the [MIT license](https://github.com/TimeHACKDevs/TimeHACK/blob/master/LICENSE). All code committed to the TimeHACK repository becomes the property of the TimeHACK Development Team, and will **not** be removed upon request. -- cgit v1.2.3