Become someone is an adult life simulator game (HTML – Text Based) developed by Volen, this game will give you the ability to choose a life path that will allow you to meet girls that will react to you in different ways depending on your stats. if you want to find out how to cheat in the game, you are coming to the right place.
Updated May 2022 | We checked for new version 0.95
How to Cheat
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 person’s 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.