For an HTML game? It's the same as every other Twine game, with two choices:
1) Export a save to a save file on your disk drive. Use a third party site like:
You must be registered to see the links
, make changes, download the save file and then import the save file into the game.
2) Open the browser's developer console... there are lots and lots of YouTube videos to explain how a browser developer console works. From the console, type in
sugarcube.state.active.variables and you'll see the list of all variables that can be changed.
Some ones of particular interest would be:
.bank.mon.csh -- Cash onhand
.bank.mon.bk -- Cash in bank account. Need to open bank account to see this value.
.inv -- All items that are in the inventory
.sex -- All sex stats that are tracked
.stat -- All Becca's stats. Some dynamically change throughout the day, so even if you set them they'll move on their own up and down. Such as fitness, beauty, and inhibition.
There are a lot of others, but some are dependent on other variable changes. As an example, typing in
sugarcube.state.active.variables.bank.mon.csh would be used to see the on-hand cash. To change it to $5,000, you'd enter
sugarcube.state.active.variables.bank.mon.csh = 5000