Created
June 11, 2015 18:10
-
-
Save jndok/8dedb2d3006714ec3025 to your computer and use it in GitHub Desktop.
DS:PTDE Steam Version - Free Ninja Flip
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;/* DS:PTDE (New Steam Version) - Free Ninja Flip */ | |
;/* | |
;* This version is working fine, but may need some tweaking | |
;* for specific cases. Maybe I'll release a more complete | |
;* hack. | |
;* | |
;* Please use respectfully. | |
;* This is ready to be inject with CE. (Remove the semi-colons first!) | |
;*/ | |
alloc(newmem,2048) | |
label(returnhere) | |
label(exit) | |
newmem: | |
test edx,edx ;// zero out edx => contains roll value, 0 for ninja flip | |
mov [esi+000001C8],edx | |
exit: | |
jmp returnhere | |
"DARKSOULS.exe"+BDFDBE: | |
jmp newmem | |
nop | |
nop | |
nop | |
returnhere: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment