예제 #1
0
        private void startFishing_Click(object sender, EventArgs e)//button to start fishing
        {
            string selected      = (string)comboBox3.SelectedItem;
            int    numberOfCasts = Convert.ToInt32(numericUpDown3.Value);
            int    numberOfSells = Convert.ToInt32(numericUpDown4.Value);

            BotFunctions.tellFishingLocation(selected);
            MessageBox.Show("Make sure you're in the fishing dock before pressing OK!");
            startFishingThread(selected, numberOfCasts, numberOfSells, false);
        }