예제 #1
0
 public WebChat1998()
 {
     InitializeComponent();
     bsod  = bc.throw9XBSOD(false, BSODCreator.BSODCauses.WimpEnding);
     bsod2 = bc.throw9XBSOD(false, BSODCreator.BSODCauses.PiracyEnding);
     bsod.Hide();
     bsod2.Hide();
 }
예제 #2
0
        public WebChat1998()
        {
            InitializeComponent();
            bsod  = bc.throw9XBSOD(false, BSODCreator.BSODCauses.WimpEnding);
            bsod2 = bc.throw9XBSOD(false, BSODCreator.BSODCauses.PiracyEnding);
            bsod.Hide();
            bsod2.Hide();

            this.button1.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2);
            this.button2.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2);
            this.button3.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2);
            this.button4.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2);

            textBox1.Text = "If you do not agree to the following rules below DO NOT log into the chat:\n\nNo Bullying\nNo Swearing\nNo Hacking\nNo Illegal Files / Piracy\n\nFailure to follow these rules will result in serious irreversible consequences.";
        }
예제 #3
0
        private void MessageGen_Tick(object sender, EventArgs e)
        {
            int messageRandomizer = messageChooser.Next(1, 3);

            switch (messageRandomizer)
            {
            case 1:
                wm.StartInfobox95("Alert!", "A virus has been detected on your computer! Press OK to disinfect!", Engine.Template.InfoboxType.Error, Engine.Template.InfoboxButtons.OK);
                messageGen.Interval -= 300;
                break;

            case 2:
                wm.StartInfobox95("Microsoft Security Alert", "Microsoft says to install UltraSurpremeAntiVirus1998 to get rid of any viruses!", Engine.Template.InfoboxType.Info, Engine.Template.InfoboxButtons.OK);
                messageGen.Interval -= 300;
                break;

            case 3:
                wm.StartInfobox95("Error", "A BSOD.exe virus has been found on your computer!", Engine.Template.InfoboxType.Warning, Engine.Template.InfoboxButtons.OK);
                messageGen.Interval -= 300;
                break;
            }
            if (messageGen.Interval == 300)
            {
                messageGen.Stop();

                BSODCreator bs = new BSODCreator();

                bs.throw9XBSOD(true, BSODCreator.BSODCauses.Generic);
            }
        }
예제 #4
0
        public WebChat1998()
        {
            InitializeComponent();
            bsod = bc.throw9XBSOD(false, BSODCreator.BSODCauses.WimpEnding);
            bsod.Hide();

            textBox1.Text = "If you do not agree to the following rules below DO NOT log into the chat:\n\nNo Bullying\nNo Swearing\nNo Hacking\nNo Illegal Files / Piracy\n\nFailure to follow these rules will result in serious irreversible consequences.";
        }