View previous topic :: View next topic |
Author |
Message |
psyko12 Newbie cheater
Reputation: 0
Joined: 13 Nov 2005 Posts: 14 Location: Philippines
|
Posted: Wed Dec 28, 2011 11:59 am Post subject: finding the real address |
|
|
Heya. I'm playing cave story plus and found a cheat table here, one from Cielo, but have found the weapon exp no drop gets broken once you've found the "arms barrier" which halves the exp lost when you get hit.
How do you approach looking for the specific address of exp <general, not just one weapon as the game has 3/5 weapons on you>.
Thanks.
This is the script I tried <adresses slightly changed due to xmas update>.
Code: | [ENABLE]
alloc(newmem,128)
label(returnhere)
label(originalcode)
label(exit)
newmem:
cmp ecx,00
jg originalcode
mov ecx,00
originalcode:
add [esi+wglewIsSupported+76CC0],ecx
exit:
jmp returnhere
"CaveStory+.exe"+4861A:
jmp newmem
nop
returnhere:
[DISABLE]
dealloc(newmem)
"CaveStory+.exe"+4861A:
add [esi+wglewIsSupported+76CC0],ecx
//Alt: db 01 8E B0 AB E0 00
|
it works without the arms barrien item, when you get the arms barrier item it will decrease xp everytime you get hit. Thanks in adv.
|
|
Back to top |
|
 |
psyko12 Newbie cheater
Reputation: 0
Joined: 13 Nov 2005 Posts: 14 Location: Philippines
|
Posted: Wed Dec 28, 2011 9:42 pm Post subject: |
|
|
Anyone? Hehe
|
|
Back to top |
|
 |
ostacro Newbie cheater
Reputation: 0
Joined: 17 Aug 2011 Posts: 11 Location: Croatia
|
Posted: Thu Dec 29, 2011 4:25 pm Post subject: |
|
|
Hi I havent been playing this game nor I have any idea what it is xd
But as far as I figured out from your post and script you had posted only problem is that :
originalcode:
add [esi+wglewIsSupported+76CC0],ecx
after picking that item ecx goes to negative. You dont need to find new address just change ecx to positive value, either by ...,ecx+0a or manually ...,0a
If I understand you correctly...
|
|
Back to top |
|
 |
psyko12 Newbie cheater
Reputation: 0
Joined: 13 Nov 2005 Posts: 14 Location: Philippines
|
Posted: Fri Dec 30, 2011 10:12 am Post subject: |
|
|
newmem:
cmp ecx,00
jg originalcode
mov ecx,0a
like this? or wrong hehe.. Will do some more trials and errors. Thanks
|
|
Back to top |
|
 |
|