[VB.NET] Simple unlock all code
You know that:
You're making a trainer and you want to add a button for unlock all but you're to lazy to write every fucking line?
Code:
Dim i As Integer
Dim address As Integer
Dim s As String
For i = &H688 To &H810 Step &H1
Address = &H1B2C89C + i
s = "&H" + Hex(Address)
Memory.Writememory(p(0), s, "9", "4")
Next i
For i = &H75F To &H80C Step &H1
address = &H1B2C89C + i
s = "&H" + Hex(address)
Memory.Writememory(p(0), s, "9", "4")
Next i
End If
Just use that. You'll have to replace
Code:
Memory.Writememory(p(0), s, "9", "4")
with your favorite write function and working offsets.