mirror of
https://github.com/HistacomUnity/Histacom2-old.git
synced 2025-01-22 09:02:01 -05:00
travelling
This commit is contained in:
parent
a3dbe64889
commit
98f107f49d
4 changed files with 7 additions and 2 deletions
|
@ -765,7 +765,7 @@ private void mainView_SelectedIndexChanged(object sender, EventArgs e)
|
||||||
bool recognized = false;
|
bool recognized = false;
|
||||||
string description = "";
|
string description = "";
|
||||||
|
|
||||||
if (SaveSystem.CurrentSave.CurrentOS == "2000" || SaveSystem.CurrentSave.CurrentOS == "ME")
|
if (CurrentSave.CurrentOS == "2000" || CurrentSave.CurrentOS == "ME")
|
||||||
{
|
{
|
||||||
switch (File.ReadAllText(Path.Combine(CurrentDirectory, mainView.FocusedItem.Text)))
|
switch (File.ReadAllText(Path.Combine(CurrentDirectory, mainView.FocusedItem.Text)))
|
||||||
{
|
{
|
||||||
|
|
|
@ -40,6 +40,7 @@ public static async void StartObjective()
|
||||||
await Task.Delay(3500); Console.WriteLine("TheHiddenHacker> 2000 came and went, and when you never showed up");
|
await Task.Delay(3500); Console.WriteLine("TheHiddenHacker> 2000 came and went, and when you never showed up");
|
||||||
await Task.Delay(3500); Console.WriteLine("TheHiddenHacker> 12padams refused to believe that his program failed");
|
await Task.Delay(3500); Console.WriteLine("TheHiddenHacker> 12padams refused to believe that his program failed");
|
||||||
await Task.Delay(3500); Console.WriteLine("TheHiddenHacker> and so he thought that you did make it to 2000 and i was hiding you");
|
await Task.Delay(3500); Console.WriteLine("TheHiddenHacker> and so he thought that you did make it to 2000 and i was hiding you");
|
||||||
|
// TheHiddenHacker> we called out jason for being extremely stupid, then he went ballistic,
|
||||||
await Task.Delay(3000); Console.WriteLine("TheHiddenHacker> and he lost complete trust in me");
|
await Task.Delay(3000); Console.WriteLine("TheHiddenHacker> and he lost complete trust in me");
|
||||||
await Task.Delay(3500); Console.WriteLine("TheHiddenHacker> later, in march 2001, 12padams made viruses to try to infect my pc");
|
await Task.Delay(3500); Console.WriteLine("TheHiddenHacker> later, in march 2001, 12padams made viruses to try to infect my pc");
|
||||||
await Task.Delay(4500); Console.WriteLine("TheHiddenHacker> not only because he lost trust in me, but i also had the latest version of the time distorter");
|
await Task.Delay(4500); Console.WriteLine("TheHiddenHacker> not only because he lost trust in me, but i also had the latest version of the time distorter");
|
||||||
|
@ -132,7 +133,7 @@ public static async void Travel2K(WinClassicTimeDistorter3Bad td)
|
||||||
await Task.Delay(5000); Console.WriteLine("TheHiddenHacker> i wont remember because i wont be coming with you, youll be meeting with past me");
|
await Task.Delay(5000); Console.WriteLine("TheHiddenHacker> i wont remember because i wont be coming with you, youll be meeting with past me");
|
||||||
await Task.Delay(6000); Console.WriteLine("TheHiddenHacker> also also im really glad you chose 2000, im not sure we could tell 12padams the story and make him believe it");
|
await Task.Delay(6000); Console.WriteLine("TheHiddenHacker> also also im really glad you chose 2000, im not sure we could tell 12padams the story and make him believe it");
|
||||||
await Task.Delay(5000); Console.WriteLine("TheHiddenHacker> looks like its almost time");
|
await Task.Delay(5000); Console.WriteLine("TheHiddenHacker> looks like its almost time");
|
||||||
await Task.Delay(4000); Console.WriteLine("TheHiddenHacker> bye, and good luck to you");
|
await Task.Delay(4000); Console.WriteLine("TheHiddenHacker> goodbye, and best of luck to you");
|
||||||
await Task.Delay(3000); Console.WriteLine("telnet> 104.27.135.159 Disconnected.");
|
await Task.Delay(3000); Console.WriteLine("telnet> 104.27.135.159 Disconnected.");
|
||||||
|
|
||||||
await Task.Delay(td.secsLeft * 1000);
|
await Task.Delay(td.secsLeft * 1000);
|
||||||
|
|
|
@ -111,6 +111,7 @@ private void InitializeComponent()
|
||||||
//
|
//
|
||||||
// timer1
|
// timer1
|
||||||
//
|
//
|
||||||
|
this.timer1.Interval = 1000;
|
||||||
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
|
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
|
||||||
//
|
//
|
||||||
// WinClassicTimeDistorter3Bad
|
// WinClassicTimeDistorter3Bad
|
||||||
|
|
|
@ -24,12 +24,15 @@ private void buttonXP1_Click(object sender, EventArgs e)
|
||||||
buttonXP1.Hide();
|
buttonXP1.Hide();
|
||||||
buttonXP2.Hide();
|
buttonXP2.Hide();
|
||||||
timer1.Start();
|
timer1.Start();
|
||||||
|
Story.Hack4.Travel2K(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void buttonXP2_Click(object sender, EventArgs e)
|
private void buttonXP2_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
buttonXP1.Hide();
|
buttonXP1.Hide();
|
||||||
buttonXP2.Hide();
|
buttonXP2.Hide();
|
||||||
|
timer1.Start();
|
||||||
|
Story.Hack4.TravelME(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void timer1_Tick(object sender, EventArgs e)
|
private void timer1_Tick(object sender, EventArgs e)
|
||||||
|
|
Loading…
Reference in a new issue