Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit) (+1)

Used ChatGPT to analyze `Gacha Ior` and `GL2.app_0.92_2` SOL files and this's the overview:-
 

Here’s the clear difference between the two uploaded .sol save files:

High-Level Summary

1. File Size

  • Ior.sol: 446,648 bytes

  • App.sol: 446,629 bytes → App.sol is slightly smaller (19 bytes difference).

2. Content Structure

Both are Flash Local Shared Objects (TCSO signature), but the internal data keys differ.

Key Differences in Content

A. Beginning (Header Data)

  • Ior.sol starts with:
    ... datastring5 ... F4FCBC|E2F487

  • App.sol starts with:
    ... dataslot34 ... NewCharacter|

This means:

  • Ior.sol contains a field called datastring5

  • App.sol contains a field called dataslot34 and the value “NewCharacter”

→ These appear to be different save-state keys or different variable sets, likely from different versions or different parts of the game.

B. End (Tail Data)

  • Ior.sol ends with a list of values like:
    |8D8730|6C6A2C|676317|ADA95D|...

  • App.sol ends with structured entries like:
    datamovie5 datamovie4 dataslot36 ...

→ The App file contains many structured entries like "datamovieX", "dataslotX", suggesting active slot and scene data.

→ The Ior file ends with a simpler block of encoded values (likely color codes, stats, or settings).

Interpretation

Ior.sol

  • Contains data fields labeled like datastring5

  • Ends with clean color-like hex-code blocks → Likely older save format or imported save with less structured slot data.

App.sol

  • Contains many entries like dataslot34, datamovie5, “NewCharacter”

  • Suggests in-game save slots, scenes, or character entries → Likely a newer or in-app generated save file with more active/complex data.

Conclusion

The differences are primarily:

✔ Different variable names (datastring5 vs dataslot34, datamovieX)

✔ Different stored data values (simple codes vs structured save-slot info)

✔ App.sol contains more scene/character slot data

✔ Ior.sol appears more minimal or differently formatted