some script stuff in hack3

This commit is contained in:
lempamo 2017-10-15 13:04:06 -04:00
parent 7ce95f837d
commit 455d5bd436
4 changed files with 8 additions and 3 deletions

View file

@ -13,7 +13,11 @@ public class Hack3 : object
public static async void StartObjective()
{
await Task.Delay(4000); TitleScreen.frm98.webchat.history.AppendText("12padams: it looks like the time distorter has been activated"); TitleScreen.frm98.webchat.receive.Play(); // 176
await Task.Delay(3000); TitleScreen.frm98.webchat.history.AppendText("HiddenHacker: so, in 3 minutes we see the results?"); TitleScreen.frm98.webchat.receive.Play(); // 173
await Task.Delay(4000); TitleScreen.frm98.webchat.history.AppendText($"12padams: wrong. 3 minutes for {SaveSystem.ProfileName}, and a year for us"); TitleScreen.frm98.webchat.receive.Play(); // 169
await Task.Delay(3000); TitleScreen.frm98.webchat.history.AppendText("HiddenHacker: oh great, not another year"); TitleScreen.frm98.webchat.receive.Play(); // 166
await Task.Delay(4000); TitleScreen.frm98.webchat.history.AppendText("12padams: hey, tests like these take time, be patient"); TitleScreen.frm98.webchat.receive.Play(); // 162
}
}
}

View file

@ -292,7 +292,6 @@ private void InitializeComponent()
private System.Windows.Forms.Panel panel1;
private Engine.UI.ClassicLabel label5;
private Engine.UI.ClassicButton button5;
private System.Windows.Forms.TextBox history;
private Engine.UI.ClassicLabel label1;
private System.Windows.Forms.ListBox listBox1;
private System.Windows.Forms.Panel login;
@ -303,5 +302,6 @@ private void InitializeComponent()
private Engine.UI.ClassicLabel label4;
private System.Windows.Forms.TextBox textBox1;
private Engine.UI.ClassicLabel textBox2;
public System.Windows.Forms.TextBox history;
}
}

View file

@ -21,7 +21,7 @@ public partial class WebChat1999 : UserControl
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);
public SoundPlayer receive = new SoundPlayer(Properties.Resources.AIMmessagereceived);
SoundPlayer file = new SoundPlayer(Properties.Resources.AIMfile);
int chatStage = 0;

View file

@ -25,6 +25,7 @@ private void classicButton1_Click(object sender, EventArgs e)
classicLabel4.Show();
classicLabel4.Text = "Preparing to travel. ETA: 180 secs.";
timer1.Start();
Story.Hack3.StartObjective();
}
private void timer1_Tick(object sender, EventArgs e)