Can anyone help me!!
My Skype is Sacrifcies313
Error 1 'Timer1' is not declared. It may be inaccessible due to its protection
Code:
Public Class Form1
Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AutoPill.CheckedChanged
If AutoPill.Checked = True Then '// when you press on check box , you activate / deactivate
WriteInteger("TwelveSky2", &H12F53DC, 1) '// writeinterger = modify game address value
'// "TwelveSky2" is the game proccess , &H <- Must Be Infront Of Address, 1= value
Timer1.start()
Else '// if checkbox is deactivated
WriteInteger("TwelveSky2", &H12F53DC, 0)
'// if cb is deactivated then auto pill will be off
Timer1.stop()
End If
End Sub
End Class







