Created
September 28, 2024 08:27
-
-
Save jfmherokiller/dbc8fd684fdef51c34c7d5d059b7dd3a to your computer and use it in GitHub Desktop.
a set of cheats for Cyberpunk Life
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Copy this stuff into the dev console | |
//I chose the localstorage reload method because save file is hashed and the code makes use of react. | |
var gamestateS = JSON.parse(localStorage.gameState); | |
gamestateS.money.MoneyTotal *= 10000000; | |
gamestateS.karma.thisLoop *= 100000; | |
gamestateS.netInfluence *= 1000000; | |
gamestateS.politicalInfluence.total *=10000000; | |
localStorage.gameState = JSON.stringify(gamestateS); | |
window.location.reload(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment