Dec 16, 2007 at 3:01 AM
I don't know where my old topic went, but here you guys go.
My CaveStoryAutoHacker:
http://phytress.digital-haze.net/CSH.exe
It only works for the Cave Story Deluxe Version (it was like a 45mb download i think, on the following page: http://www.miraigamer.net/cavestory/csdeluxe.php )
It contains a ton of random stuff
( In specific-
Jetpack Full mode
HP Set mode
EXP/Spur Hack
Lock weapon levels
Lock on items
Weapon modder
Item modder )
The best part is that you can modify your items and weapons while the game is running.
Note: You need .NET Framework to run this application.
You can download that at: http://www.microsoft.com/downloads/...e3-f589-4842-8157-034d1e7cf3a3&displaylang=en
Some Hacks that I did not include were the following:
*Note: the addresses have 0x400000 added because they were obtained
during runtime. If you want to make the asm edits on the file itself,
make sure to subtract 0x400000*
My CaveStoryAutoHacker:
http://phytress.digital-haze.net/CSH.exe
It only works for the Cave Story Deluxe Version (it was like a 45mb download i think, on the following page: http://www.miraigamer.net/cavestory/csdeluxe.php )
It contains a ton of random stuff
( In specific-
Jetpack Full mode
HP Set mode
EXP/Spur Hack
Lock weapon levels
Lock on items
Weapon modder
Item modder )
The best part is that you can modify your items and weapons while the game is running.
Note: You need .NET Framework to run this application.
You can download that at: http://www.microsoft.com/downloads/...e3-f589-4842-8157-034d1e7cf3a3&displaylang=en
Some Hacks that I did not include were the following:
*Note: the addresses have 0x400000 added because they were obtained
during runtime. If you want to make the asm edits on the file itself,
make sure to subtract 0x400000*
Code:
All weapons do 600+ damage
0040400A: B9FFFFFF7F
0040400F: 90
00404010: 90
Code:
All weapons have infinite range (Really Long range)
00404042: BAFFFFFF7F
00404047: 90
But, if used with the "shots go through walls" code, i suggest
00404042: BA200000
00404047: 90
Code:
All weapons can shoot through walls
0040405A: BA040000
0040405F: 90
Code:
All weapons have amazing penetration power
00404023: B9FFFFFF7F
00404028: 90
00404029: 90
Code:
Complete Jetpack Hack (one in EXE is a constant write cycle, this is asm)--
00415c62: A1E8E64900 sub eax,0x1
->
00415c62: 90 nop
00415c63: 90 nop
00415c64: 90 nop
Code:
Left/Right jetpack, no capped speed--
004160D7: cmp dword ptr [0x49E66C],-0x5FF
->
cmp dword ptr [0x49E66C],-0x7FFFFFFF (unsigned: 80000000)
004160ED: cmp dword ptr [0x49E66C],0x5FF
->
cmp dword ptr [0x49E66C],0x7FFFFFFF
Code:
No Gravity cap--
00416103: cmp dword ptr [0x49E670],-0x5FF
->
cmp dword ptr [0x49E670],-0x7FFFFFFF (unsigned: 80000000)
00416119: cmp dword ptr [0x49E670],0x5FF
->
cmp dword ptr [0x49E670],0x7FFFFFFF
Code:
machine gun gravity--
0041E4CC: add ecx,0x100
Code:
Full spur always hack--
004198AE: mov dword ptr [ecx+0x499BD0],0x0
00419898: mov dword ptr [eax+0x499BCC],0x1
->
004198AE: mov dword ptr [ecx+0x499BD0],0xC8
00419898: mov dword ptr [eax+0x499BCC],0x3