quote:
Originally posted by toddy
does this means that theys a patch template ? or dou have to make it from scratch ?
from scratch, there is nothing to "template". If you know some programming language, you'll see that this is only a few lines of code. In pseudo-basic code:
code:
Offset1 = 0x1BD4
Offset2 = 0x1BDC
ByteSequence1 = 0x99
ByteSequence2 = 0xAF
Open "programtobepatched.exe" for binary input as #1
Put #1, Offset1, ByteSequence1
Put #1, Offset2, ByteSequence2
Close #1