Exemple #1
0
        public LootAlert()
        {
            InitializeComponent();
            this.Text += " " + version;
            checkBoxLegendary.Checked = Settings.PlayOnLegendary;
            checkBoxRare.Checked      = Settings.PlayOnRare;
            checkBoxCrafting.Checked  = Settings.PlayOnCrafting;
            checkBoxMagic.Checked     = Settings.PlayOnMagic;

            Sounds.InitSounds();
            finder = new LegendaryFinder();

            timer          = new Timer();
            timer.Enabled  = false;
            timer.Interval = 200;
            timer.Tick    += new EventHandler(timer_Tick);
        }
        public LootAlert()
        {
            InitializeComponent();
            this.Text += " " + version;
            checkBoxLegendary.Checked = Settings.PlayOnLegendary;
            checkBoxRare.Checked = Settings.PlayOnRare;
            checkBoxCrafting.Checked = Settings.PlayOnCrafting;
            checkBoxMagic.Checked = Settings.PlayOnMagic;

            Sounds.InitSounds();
            finder = new LegendaryFinder();

            timer = new Timer();
            timer.Enabled = false;
            timer.Interval = 200;
            timer.Tick += new EventHandler(timer_Tick);
        }