ROM Hack Cheat Codes AMS and Sx Os, Add and Request

wiitendo84

Well-Known Member
Member
Joined
Jan 3, 2014
Messages
1,392
Trophies
2
Age
39
Location
New Albany, Indiana
XP
3,785
Country
United States
have you found the Health value from using unknown search?
It froze up on me while doing it. I had to work early today so I couldnt try it again. Doing a known value search for both lives and health. I was able to find several addresses but when poked they didnt do anything. Reminds me of YookaLaylee. I'd find what seemed to be the addresses and they change when health or lives are lost or gained but cant poke them.
The time for me is 1027 am and I get off at 2pm. Pick the kids up from school at 230pm. Be right back at trying this at 3pm today.
 
Last edited by wiitendo84,
  • Like
Reactions: dsrules

Lupe

Well-Known Member
Member
Joined
Sep 3, 2016
Messages
118
Trophies
0
Age
33
XP
417
Country
Thailand
Hey folks. I'm new here, and I thought I'd offer a little something. It's not exactly codes, but rather save editing stuff I found for Astral Chain

Some random stuff mostly, and some of it moves a bit save-to-save, but hopefully it helps someone.

From what I can tell, everything in the game is stored in int32 values, meaning it will use 4 bytes to store data. AKA 00 00 00 00, and the values are stored inversely. You'll see below how 999 is represented as E7 03, but the hex value is actually 3E7 for 999. It's the same for all the values, it seems, though some bytes appear to contain float values, such as the orders, the structure doesn't differ much.

First, some that seem static.
Hex address | value stored
8EDD0 | Money
8EDC8 | Gene Codes

Next are two I found the rough area of. I'll try to break them down as best I understand them.
The first is Orders. You can mark them all a certain way, to complete all the orders and collect the rewards. :)
They seem to start somewhere around AF000.
View attachment 178419
01 seems to mark that it's unlocked. 60, 70, or 80 seems to mark it's "State" 80 is not complete, 60 is complete, and 70 is complete with rewards already collected.
Quick edit: I forgot to mention. The second 01 at offset 04 and 0C seem to mark that the part of the order that requires a certain number of something is also complete. Without all of it set correctly, you won't be able to claim rewards. So ideally, it would look like 01 00 00 60 01 00 00 00 per 8 bytes. Also, Be careful not to change values that don't contain data. So if you see a space that has 8 bytes of all zeroes, don't add in the 01 00 00 60 01 That could prevent you from being able to take pictures. I learned this the hard way.

And last is inventory.
It seems to start somewhere around 75660, but like Orders, it can move up or down a little.
View attachment 178421
From what I've been able to tell, values of the item itself are stored at XXXXX04 and XXXXX0C and changing them doesn't change the item that's in the inventory.
There are also FF FF FF FF values below there that are space for new items, but changing them does not add items to inventory.
The red parts are the values of the number of the items in inventory, so in this, I've changed the 3 different material codes to 999, so I'm maxed out on all of them. 031B is premium, 021B is rare, and 011B is common. I didn't find those, someone else did earlier. I just used that to help myself find these addresses.

Anyway, that's all I got. Hopefully it will help someone out with something.
Thank you very much for this! My Orders' addresses are also located from AEFB0-AF577, so I edited every lines from AEFB0-AF577 into 60 01 (except for any that has 70 in them, I just left it like that) and all my Orders are now completed! (I'm using HxD to edit my savefile. Finding the most recent save is indeed a pain lol)

My camera works properly despite me editing lines that has 8 bytes of all zeroes, though. But I don't go beyond AEFB0-AF577 and don't touch any bytes that has 70 in them.
 
  • Like
Reactions: HylianLZ

Ultimos54

Well-Known Member
Member
Joined
Aug 27, 2018
Messages
1,270
Trophies
0
XP
3,480
Country
Australia
@Lupe can you show me what that full section looks like in HxD cos im confused on how to do it,or if possible do it for my save i posted above cos im lost as hell
 

HylianLZ

Active Member
Newcomer
Joined
Aug 31, 2019
Messages
41
Trophies
0
XP
366
Country
United States
this is my current save @HylianLZ is it possible for you to try get the orders to all be complete but not handed in please.I'm struggling with hex editing and I've tried following what you've said.

I can, but I need to know how much money and Gene codes you have to find the correct file. I'm also at work, so it'll be a while before I can get to it.
 

Kyrara

Well-Known Member
Member
Joined
Apr 4, 2007
Messages
142
Trophies
1
Age
37
XP
1,715
Country
Germany
Hey folks. I'm new here, and I thought I'd offer a little something. It's not exactly codes, but rather save editing stuff I found for Astral Chain

Some random stuff mostly, and some of it moves a bit save-to-save, but hopefully it helps someone.

From what I can tell, everything in the game is stored in int32 values, meaning it will use 4 bytes to store data. AKA 00 00 00 00, and the values are stored inversely. You'll see below how 999 is represented as E7 03, but the hex value is actually 3E7 for 999. It's the same for all the values, it seems, though some bytes appear to contain float values, such as the orders, the structure doesn't differ much.

First, some that seem static.
Hex address | value stored
8EDD0 | Money
8EDC8 | Gene Codes

Next are two I found the rough area of. I'll try to break them down as best I understand them.
The first is Orders. You can mark them all a certain way, to complete all the orders and collect the rewards. :)
They seem to start somewhere around AF000.
View attachment 178419
01 seems to mark that it's unlocked. 60, 70, or 80 seems to mark it's "State" 80 is not complete, 60 is complete, and 70 is complete with rewards already collected.
Quick edit: I forgot to mention. The second 01 at offset 04 and 0C seem to mark that the part of the order that requires a certain number of something is also complete. Without all of it set correctly, you won't be able to claim rewards. So ideally, it would look like 01 00 00 60 01 00 00 00 per 8 bytes. Also, Be careful not to change values that don't contain data. So if you see a space that has 8 bytes of all zeroes, don't add in the 01 00 00 60 01 That could prevent you from being able to take pictures. I learned this the hard way.

And last is inventory.
It seems to start somewhere around 75660, but like Orders, it can move up or down a little.
View attachment 178421
From what I've been able to tell, values of the item itself are stored at XXXXX04 and XXXXX0C and changing them doesn't change the item that's in the inventory.
There are also FF FF FF FF values below there that are space for new items, but changing them does not add items to inventory.
The red parts are the values of the number of the items in inventory, so in this, I've changed the 3 different material codes to 999, so I'm maxed out on all of them. 031B is premium, 021B is rare, and 011B is common. I didn't find those, someone else did earlier. I just used that to help myself find these addresses.

Anyway, that's all I got. Hopefully it will help someone out with something.

Thx for that now i have all 185 Bonus missions done ^^
 
  • Like
Reactions: HylianLZ

alxrite

Well-Known Member
Newcomer
Joined
Nov 11, 2018
Messages
86
Trophies
0
Age
42
XP
320
Country
United States
Yes its different, but its similar and identical from both save file, u can edit on HEX editor.. Falo give some trick to convert from switch to pc.

Thanks to Falo for giving the guide :)
Its seem all final fantasy game on switch and pc are indentical and similar.

Very nice. Didn't see the other thread! Thanks!
 
  • Like
Reactions: IMnoob

HylianLZ

Active Member
Newcomer
Joined
Aug 31, 2019
Messages
41
Trophies
0
XP
366
Country
United States
@ChaosSoulReaper I'm starting to think values that high are invalid in the save. Anything over 7 digits seems to show incorrectly. However, I did see two saves with very large money amounts, so I edited both. Hopefully this works. If it doesn't, try to set your money lower than 7 digits and reupload and I can try again. It's also possible that the backup process didn't complete properly, so before you restore this, make a separate backup, just in case.
 

Attachments

  • CSR.zip
    572.6 KB · Views: 155

ChaosSoulReaper

Well-Known Member
Newcomer
Joined
Nov 14, 2016
Messages
67
Trophies
0
Age
36
XP
617
Country
United States
@ChaosSoulReaper I'm starting to think values that high are invalid in the save. Anything over 7 digits seems to show incorrectly. However, I did see two saves with very large money amounts, so I edited both. Hopefully this works. If it doesn't, try to set your money lower than 7 digits and reupload and I can try again. It's also possible that the backup process didn't complete properly, so before you restore this, make a separate backup, just in case.

Awesome @HylianLZ I worked thank you a ton
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users