ZOMG I got it working. Now to read the whole thread to find out the hunt code loot code and speed hack. Fun fun fun. I might need help :O srryz.
public bool dcplayers;
public GUI()
{
//Owner = C;
InitializeComponent();
}
private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
dcplayers = Owner.DcAllPlayers;
if (checkBox1.Checked == true)
{
dcplayers = Owner.DcAllPlayers && checkBox1.Checked;
}
}
namespace AlchemyProxy
{
public partial class GUI : Form
{
public Client Owner;
public bool dcplayers;
public GUI()
{
//Owner = C;
InitializeComponent();
}
private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
CheckBox staticCheckBox = new CheckBox();
staticCheckBox.Checked = true;
if (staticCheckBox.Checked)
{
Owner.DcAllPlayers = true; <<<----Just closes GUI when checkbox clicked what am I missing?
}
else
{
Owner.DcAllPlayers = false;
}
}