Name of the file: Become Someone Cheat Codes - Author: DAV |
Cheat Codes: ------------ Submitted by: David K. How to Cheat (Console Commands Examples): ----------------------------------------- Become Someone is an HTML Game so for example if you have opened it in Chrome just open the game, press F12 and go to the console where you can enter all those commands. -=Some Examples of Console Commands=- Once you know the code structure you can mod any stats here are a few examples: SugarCube.State.variables.mc.money+=10000 SugarCube.State.variables.mc.int+=10 SugarCube.State.variables.mc.str+=10 SugarCube.State.variables.mc.end+=10 SugarCube.State.variables.mc.dom+=10 SugarCube.State.variables.mc.porn+=10 SugarCube.State.variables.mom.trust+=1 SugarCube.State.variables.sis.trust+=1 -=How to Unlock the Gallery Using Console Commands=- Method 1 (by coolguy696969): The variables seem to be set up as an array under each persons gallery. For example, this is how it looks for Abigail: SugarCube.State.active.variables.abigail.gallery=[ 0, 0, 0, 0, 0, 0, 0, 0 ] If you change all of the 0 variables to 1 it will unlock the gallery scenes: SugarCube.State.active.variables.abigail.gallery=[ 1, 1, 1, 1, 1, 1, 1, 1] The time-consuming part is that you will have to edit all of the arrays for each character, but it can be accomplished! -=Method 2 (By notsocleanminded)=- You can use the following commands in the console: Object.keys(SugarCube.State.variables).forEach((key, i) => { const shortCut = SugarCube.State.variables if(shortCut[key].hasOwnProperty("gallery")){ shortCut[key].gallery.forEach((val, n) => { shortCut[key].gallery[n] = 1 }) } }) Note: Make sure you are playing the game online. |