From cb0ebed2918341ce02978bc32ab6e284ae5f000a Mon Sep 17 00:00:00 2001 From: lempamo Date: Sun, 6 Aug 2017 19:10:09 -0400 Subject: you can actually see the achievement box --- TimeHACK.Main/AchievementBox.cs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'TimeHACK.Main/AchievementBox.cs') diff --git a/TimeHACK.Main/AchievementBox.cs b/TimeHACK.Main/AchievementBox.cs index 0d033c6..7c85b79 100644 --- a/TimeHACK.Main/AchievementBox.cs +++ b/TimeHACK.Main/AchievementBox.cs @@ -19,6 +19,8 @@ namespace TimeHACK public AchievementBox(int type) { InitializeComponent(); + this.BringToFront(); + this.Show(); switch (type) { case 0: //Piracy Ending @@ -27,20 +29,21 @@ namespace TimeHACK break; case 20: BackgroundImage = Properties.Resources.AchievementMines; + button1.Hide(); break; } Location = new Point(Screen.PrimaryScreen.WorkingArea.Width - 202, -102); while (this.Location.Y != 0) { - Thread.Sleep(25); + Thread.Sleep(5); Location = new Point(Location.X, Location.Y + 1); } if (!stayOnScreen) { - Thread.Sleep(5000); + Thread.Sleep(3000); while (this.Location.Y != -102) { - Thread.Sleep(25); + Thread.Sleep(5); Location = new Point(Location.X, Location.Y - 1); } this.Close(); -- cgit v1.2.3