bool @checked = this.gunaCheckBox4.Checked;
if (@checked)
{
DialogResult dialogResult = MessageBox.Show("Grif clicker, RiseClient ve SonOyuncuda çalışır. Başlatmak istiyormusunuz?", "", MessageBoxButtons.YesNo);
bool flag = dialogResult == DialogResult.Yes;
if (flag)
{
try
{
File.WriteAllBytes("grif.exe", Resources.grif);
Process.Start("grif.exe",@"");
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString(), "HATA");
}
}
else
{
this.gunaCheckBox4.Checked = false;
}
}