mirror of
https://github.com/HistacomUnity/Histacom2-old.git
synced 2025-01-22 09:02:01 -05:00
some script stuff in hack3
This commit is contained in:
parent
7ce95f837d
commit
455d5bd436
4 changed files with 8 additions and 3 deletions
|
@ -13,7 +13,11 @@ public class Hack3 : object
|
||||||
|
|
||||||
public static async void StartObjective()
|
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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -292,7 +292,6 @@ private void InitializeComponent()
|
||||||
private System.Windows.Forms.Panel panel1;
|
private System.Windows.Forms.Panel panel1;
|
||||||
private Engine.UI.ClassicLabel label5;
|
private Engine.UI.ClassicLabel label5;
|
||||||
private Engine.UI.ClassicButton button5;
|
private Engine.UI.ClassicButton button5;
|
||||||
private System.Windows.Forms.TextBox history;
|
|
||||||
private Engine.UI.ClassicLabel label1;
|
private Engine.UI.ClassicLabel label1;
|
||||||
private System.Windows.Forms.ListBox listBox1;
|
private System.Windows.Forms.ListBox listBox1;
|
||||||
private System.Windows.Forms.Panel login;
|
private System.Windows.Forms.Panel login;
|
||||||
|
@ -303,5 +302,6 @@ private void InitializeComponent()
|
||||||
private Engine.UI.ClassicLabel label4;
|
private Engine.UI.ClassicLabel label4;
|
||||||
private System.Windows.Forms.TextBox textBox1;
|
private System.Windows.Forms.TextBox textBox1;
|
||||||
private Engine.UI.ClassicLabel textBox2;
|
private Engine.UI.ClassicLabel textBox2;
|
||||||
|
public System.Windows.Forms.TextBox history;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,7 +21,7 @@ public partial class WebChat1999 : UserControl
|
||||||
SoundPlayer join = new SoundPlayer(Properties.Resources.AIMbuddyjoin);
|
SoundPlayer join = new SoundPlayer(Properties.Resources.AIMbuddyjoin);
|
||||||
SoundPlayer leave = new SoundPlayer(Properties.Resources.AIMbuddyleave);
|
SoundPlayer leave = new SoundPlayer(Properties.Resources.AIMbuddyleave);
|
||||||
SoundPlayer send = new SoundPlayer(Properties.Resources.AIMmessagesent);
|
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);
|
SoundPlayer file = new SoundPlayer(Properties.Resources.AIMfile);
|
||||||
|
|
||||||
int chatStage = 0;
|
int chatStage = 0;
|
||||||
|
|
|
@ -25,6 +25,7 @@ private void classicButton1_Click(object sender, EventArgs e)
|
||||||
classicLabel4.Show();
|
classicLabel4.Show();
|
||||||
classicLabel4.Text = "Preparing to travel. ETA: 180 secs.";
|
classicLabel4.Text = "Preparing to travel. ETA: 180 secs.";
|
||||||
timer1.Start();
|
timer1.Start();
|
||||||
|
Story.Hack3.StartObjective();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void timer1_Tick(object sender, EventArgs e)
|
private void timer1_Tick(object sender, EventArgs e)
|
||||||
|
|
Loading…
Reference in a new issue