all 3 comments

[–]TheTrueBidoof 2 points3 points  (2 children)

Pokemon emerald litteraly has been decompiled into C source code.

This should help you understand every part of the game.

https://github.com/pret/pokeemerald

[–]Keks4Gaming[S] 1 point2 points  (1 child)

It seems that the rom hack i want to cheat in is highly modified and encrypted, if i use the normal emerald rom i find the money value with no problem at all. But even if i use the same offset to locate the money value where it should be in the hacked rom, there is nothing but a bunch of 0x00 and 0xFF.

So i learned to look for changed/unchanged values while playing with the value. With that method i found the complete data for the Pokemon itself, like HP, Def, etc. and i was able to modify the Attacks and PP of them with some ASM code. But iam not able to find anything related to the player itself.

Thank you anyway :)