Skip to content

Instantly share code, notes, and snippets.

@jfmherokiller
Created September 28, 2024 08:27
Show Gist options
  • Save jfmherokiller/dbc8fd684fdef51c34c7d5d059b7dd3a to your computer and use it in GitHub Desktop.
Save jfmherokiller/dbc8fd684fdef51c34c7d5d059b7dd3a to your computer and use it in GitHub Desktop.
a set of cheats for Cyberpunk Life
//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