Anyways, this is not the right way to be a coder,
your tutorial it's working but it is incorrect at all
your script make the program change the address every time it see the checkbox checked
this need more memory usage and cpu consume
and i hope it don't brick the hardware (isn't impossible but of course is not a trainer lol)
the best way is make a variable state to check the actual state of the checkbox
then...
Code:
dim state as int = 0
if checkBox.Checked then
if state=0 then
memWrite..... hack on
state=1
end if
else
if state then
memWrite (hack off...
state=0
end if
end if
i don't know the visual basic correct syntax, my favourite is C or C++
i hate the .net framework... it's windows closed
and it don't have End If statement xD
if www {
} <--- like that
i know surely other way 100 more time best of this
but i don't know the VB syntax
what i want to say is
don't find if the checkbox is checked...
only do the writeMemory function when it is pressed!
let me explain
Code:
if GuiMessage=checkbox then
if state=0 then
write hack on
state=1
else
write hack off
state = 0
end if
end if
or maybe
if checkBox.Clicked or .input i don't know realy