Skip to content

Instantly share code, notes, and snippets.

@Laim
Last active August 14, 2023 22:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Laim/e6fcaba1399941224c7d157fbd8fd557 to your computer and use it in GitHub Desktop.
Save Laim/e6fcaba1399941224c7d157fbd8fd557 to your computer and use it in GitHub Desktop.
I Am Future - Player Modifiers
%USERPROFILE%\AppData\LocalLow\Mandragora\I Am Future\SaveData
-- Go for the NEWEST save, as there is an auto save system. Make sure you're in the main menu or not in-game at all, if you're on the Roof then the changes won't take affect.
Open the json file in a file editor (vscode, notepad++, notepad (not the best for it, massive file))
Ctrl+f, replace the value with the value you want.
=========
Health: Character Parameter - HP
Food/Hunger: Character Parameter - Satiety // Higher is better
Inventory: IAmFuture.Data.Character.CharacterInventory // Unsure of what you can and cannot change here
Currency: CurrentCurrency // Higher is better
For example, to change how much currency you currently have, CTRL+F for "CurrentCurrency" and change the int value to whatever you want.
"IAmFuture.Gameplay.Cryptocurrency.CryptocurrencyService": {
"CurrentCurrency": 70, // Change 70 to 9999 for instance
"$type": "IAmFuture.Data.SaveLoad.Containers.CryptocurrencySaveData"
},
To change your current food level to 100 (so your belly is full)
CTRL+F for "Character Parameter - Satiety" and replace the "Value" to 100.
{"Key":{"ItemObjectID":"Character Parameter - Satiety"},"Value":100}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment