Page 1 of 1
Request for Lisa or Rock5
Posted: Tue Jan 17, 2012 10:27 am
by alkirah
Tutorial for finding those addresses would be appreciated, got all the other one using what posted on forum but can't figure out a way to find those
charClassInfoBase
eggPetBaseAddress
itemSetSkillsBase
partyMemberList_address
rentBagBase
staticEquipBase -- found how
staticInventory
staticbase_char -- found how
Re: Request for Lisa or Rock5
Posted: Tue Jan 17, 2012 11:36 am
by rock5
Address updated in rev 691. Hopefully they are correct.
http://www.solarstrike.net/phpBB3/viewt ... =21&t=3415
Funnily enough, I guessed alot of them. If you look at the topic above you will see that I put them in order, did some of the easier ones, and then just made the differences the same for the ones between.
Re: Request for Lisa or Rock5
Posted: Tue Jan 17, 2012 9:07 pm
by lisa
alkirah wrote:staticInventory
This is actually very easy, you should be able to get moneyptr and staticInventory is just an offset from moneyPtr.
update.lua has this
Code: Select all
assumptionUpdate("moneyPtr", addresses.staticInventory + 0x2FD4);
which is this
moneyPtr = staticInventory + 0x2FD4
So we can basically work backwards,
moneyPtr - 0x2FD4 = staticInventory
The rest arn't as easy though lol