AI Porn is here, Create and Fap TRY FREE
x

dkao12

Newbie
Nov 16, 2018
63
332
268
I made these save files as a way for me to restart the game without having to replay the intro and then redo the money cheat every single time. This is a completely fresh save(Day 1) with NO progression made whatsoever. I edited the money value to give me $10,000,250.00 to stop the slow grind.

Notes:
  • After some testing, it seems like there isn't any major issues.
  • Important: With the newfound money cheat, keep in mind that buying everything can potentially soft-lock you from certain events. The narrative cohesion will have a seizure on what order of events has/have/had happened. Buy the upgrades at your own discretion.
  • Just make sure you make BACKUPS for your saves.
  • While they fixed some of the major bugs, there are still some weird dead-end paths.
  • If you have a bug where the UI doesn't appear. Rapidly press F1 for debug.
  • If you wanted to learn how to do save editing, check my post near the end of the page. https://f95zone.to/threads/starmaker-story-v1-1a-arvus-games.218071/post-14389838

Version: 1.8a (older saves aren't "compatible" with 1.8)

Instructions:

  1. Download the save files attached below.
  2. Open and extract contents within zip folder.
  3. Take the NANOSAVE_0001 into the save file location and overwrite, if asked.
  4. Open the game to check.
Side-Note: Please remember that if you want to change the name(John) to yours. Look for two instances of "John" in the save file and change it to your liking. Also make sure to change the metadata file too. The method is located above in a comment link.

Save File Location: AppData\LocalLow\Arvus Games\Starmaker Story\Saves

Family Save:
  • Anna (Mom/Son)
  • Josef (Dad/Son)
  • Adrian (Brother/Brother)

Enjoy! I had a lot of fun with this one. If you find any problems with the save itself, let me know.

Happy MILF Hunting!
 
Last edited:

Dimension

New Member
Feb 5, 2018
10
4
187
Anyone knows how to get adrian to join in the studio, ive literally got the foursome scenes and wedding birthday scene but cant seem to find how to have him join, same for ken
 

dkao12

Newbie
Nov 16, 2018
63
332
268
Ouuh, I did not knew the C version came out. I should test it with the saves.

Patch notes for those who don't want to search through Patreon or Itchio.

1.0c Patch Notes
Bug Fixes
  • Shower Photo Stuck: Resolved an issue where the shower photo remained stuck on the screen.
  • Studio Toy Shoot Art: Fixed the incorrect art displayed during the studio toy shoot.
  • Alice Club Dance Event: Completely rewired the Alice Club Dance Event to fix various bugs.
  • Club Dance Mini Game: Fixed missing spawns during the Club Dance mini game after the first time.
 

Dimension

New Member
Feb 5, 2018
10
4
187
Anyone knows if theres more visiting option for the studio then josef(dad) and ken?

also, i cant find if theres something i need to say to adrian, ive had 0 prompt for that option... 1722044653643.png
 

Dimension

New Member
Feb 5, 2018
10
4
187
Maybe a Full Save, unless theres some adrian stuff i missed, but got all the endings i think. If theres missing stuff let me know, im still looking for it o_O
 
  • Like
Reactions: refessir

dkao12

Newbie
Nov 16, 2018
63
332
268
So I figured out how to edit the flags within the save files, I did a lot of experimentation and it seems to work. I haven't figured out how to do everything or give myself items yet. But the many of the in-game choices can be changed without having to restart a new game.

Of course this has a very high potential for breaking the save, so you have been WARNED. Backup your saves.

Important Note: As of v1.8a, the save system has completely changed its method. It still has the exact same code blocks(albeit different rids), but it is properly separated into their appropriate files instead of multiple copies of code into one file.

Instructions:*
Save File Location:
AppData\LocalLow\Arvus Games\Starmaker Story\Saves
  1. For starters find the save folder you want to edit located above^.
  2. Make a copy(backups) into a workspace like Documents. Please do not edit things directly within your AppData folders.
  3. Save file is compressed into a .gz file(Gzip) which can be extracted with any extractor even from windows default.
  4. Extract the save file and open with a code editor program like VSC(Visual Studio Code).
  5. Search for specific terms like "anna", "cash", or "[insert player name]" (Make sure you have "Word Wrap" setting turned on(Alt + Z)).
  6. Find the corresponding "rid"
  7. Match with the second or third instance of that rid which is usually at the bottom half of the file(not always).
  8. Change the value based on if it is a boolean or float or string.
  9. Compress the save back to a .gz file.
  10. Then replace old save with new edited save.
  11. Test out the change.
Side Note:
  • NANOSAVE_#### is based on the number of saves present. If you are unsure, check the metadata within the folder with VSC.
  • "rid" stands for reference ID.
  • "d" usually stands for the dad.
  • "m-" sometimes stands for the mom(NOT always).
*Warning:
There is always a possibility that reference IDs are not the same for each new version of the game. Or same from one save to another. It is usually better to search for key terms such as "Cash" or "anna" when looking for the right corresponding IDs.

Examples:
  1. Search "cash" within the file
  2. There are three matches(Cash, Cash-Before, himari-enough-cash-alk). Just focus on the first one(Cash), ignore the other two.
  3. Find the rid that matches with the data(in my case, its 2454)
  4. Search "2454" for the secondary instance(or more depending on what you are searching, it's usually not the first one).
  5. find the corresponding "m_value" and change it(mine is 250.0 from a new save)
  6. Save the changes then re-compress into .gz folder.
  7. Replace old save with new edited save(ALWAYS keep a backup save.
Extra: The code below should give you a better visual idea on what I was talking about in the example above.
Code:
Original Code:

{\"rid\":1070,\"type\":{\"class\":\"NameVariable\",\"ns\":\"GameCreator.Runtime.Variables\",\"asm\":\"GameCreator.Runtime.Core\"},\"data\":{\"m_Breakpoint\":false,\"m_IsEnabled\":true,\"m_Value\":{\"rid\":2454},\"m_Name\":{\"m_String\":\"Cash\"}}},

Readable Form:

{
  "rid": 1070,
  "type": {
    "class": "NameVariable",
    "ns": "GameCreator.Runtime.Variables",
    "asm": "GameCreator.Runtime.Core"
  },
  "data": {
    "m_Breakpoint": false,
    "m_IsEnabled": true,
    "m_Value": {
      "rid": 2454
    },
    "m_Name": {
      "m_String": "Cash"
    }
  }
},
Code:
Original Code:

{\"rid\":2454,\"type\":{\"class\":\"ValueNumber\",\"ns\":\"GameCreator.Runtime.Variables\",\"asm\":\"GameCreator.Runtime.Core\"},\"data\":{\"m_Breakpoint\":false,\"m_IsEnabled\":true,\"m_Value\":250.0}},

Readable Form:
{
  "rid": 2454,
  "type": {
    "class": "ValueNumber",
    "ns": "GameCreator.Runtime.Variables",
    "asm": "GameCreator.Runtime.Core"
  },
  "data": {
    "m_Breakpoint": false,
    "m_IsEnabled": true,
    "m_Value": 250.0
  }
},
Screenshot 2025-12-31 174616.png

Hope this gives you all a general idea on how to do your own editing. If you have any questions, you can ask me. [Currently unavailable these days because of real life taking a lot of my free time away.]

Happy MILF Hunting everyone!
 
Last edited:

arone tajhiri

Member
Feb 11, 2018
210
125
269
talk to Anna in the kitchen and you will be told she's goona find a way herself.
you can find Anna and Adrian in the shower room later. after that, you can also find some other secens in the beach, Adrian's room etc
is it auto-triggered or do u have an option when talking in kitchen
 
4.50 star(s) 155 Votes