Hey guys,
Today I've followed Fleep's C# Trainer In-depth tutorial and managed to make a tutorial. But I have a question.
In the tutorial, the hack will work if you press on the button, how can I make it in a checkbox?
Example: Button
I want to make it that Instead of clicking the button, check a Checkbox. how can I do that? PS: I want a timer too.
Thanks in advance!
Today I've followed Fleep's C# Trainer In-depth tutorial and managed to make a tutorial. But I have a question.
In the tutorial, the hack will work if you press on the button, how can I make it in a checkbox?
Example: Button
C++:
private void ThirdViewButton_Click(object sender, EventArgs e)
{
if (IsGameAvailable)
{
if (ThirdView)
{
ThirdView = false;
ThirdViewButton.Text = "OFF";
}
else
{
ThirdView = true;
ThirdViewButton.Text = "ON";
}
}
}
Thanks in advance!