
Originally Posted by
cgallagher21
Ok so im wanting to make this trainer. In Vb.Net and am using Blubbs DLL v1.1 And its a checkbox so can someone give me the code that would go weith it,
well i would stat a new project, add blubbs module, then maybe add a button or check box
for a button u would double click your button and in the middle of the code code below put
call memoryh4x(&Haddress, value, Byte)
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
End Sub
so it looks like
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
call memoryh4x(&Haddress, value, Byte)
End Sub
now call memoryhax is calling the function from blubbs module,
&Haddress must aways start with &H this is any addy u want to modify
value is the value of your address
byte type will be a 2,4,8 most comonly
for a checkbox its the same double click your checckbox from designer view
in the code below
Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
End Sub
you would do the same as above
call memoryh4x(&Haddress u want to modify, value u want, bytes)
now to freeze the adresses u need to use timers witch is gonna make this a long post, search around its here on mpgh forums somewhere
and dont forget to credit blubb