Notifications
General

Become Someone Cheat Codes and Console Commands

Become Someone Cheat Codes

Become Someone is an HTML-based life simulation game built on the SugarCube engine, where players shape their character's destiny through stats, relationships, and career choices. Progression relies on earning money, raising core attributes, building trust with characters, and unlocking gallery scenes. For players who want to skip the grind or instantly access every piece of content, the game allows direct manipulation through Become Someone cheat codes entered into the browser's developer console. This guide contains every confirmed command, explains how to open the console in Chrome, and breaks down exactly what each code modifies.

How to Use Cheat Codes in Become Someone

Because Become Someone runs as an HTML game in your browser, there is no built-in cheat menu. Instead, you use the browser's Developer Tools console to edit the game's state variables directly. This method works exclusively on the PC browser version.

Step-by-Step: Opening the Console and Entering Commands

  1. Open Become Someone in Google Chrome or any Chromium-based browser.
  2. Once the game has loaded, press F12 on your keyboard to open Developer Tools.
  3. Click the Console tab at the top of the Developer Tools panel.
  4. Click inside the console input area at the bottom of the panel.
  5. Copy and paste the exact cheat code from the tables below and press Enter.
  6. If entered correctly, the variable will update instantly. Switch locations or menus in the game to refresh the display and see the changes.
  7. You can enter as many commands as you want in a single session. There is no limit.

Important Notes

  • These cheats only work on the browser (PC) version. Mobile devices do not support developer tools natively.
  • Always use exact spelling and capitalization. JavaScript is case-sensitive.
  • If a command uses [GirlName] or [Stat], replace the brackets with the actual name or attribute.
  • Some commands may throw a harmless error in the console while still executing correctly. Ignore the error message.

All Become Someone Console Commands

The following Become Someone cheat codes are JavaScript commands that modify the SugarCube state variables. Copy each line exactly as shown.

Money and Economy

Command Effect
SugarCube.State.variables.mc.money = 999999 Sets your cash to 999,999 dollars instantly.
SugarCube.State.variables.mc.money += 10000 Adds 10,000 dollars to your current balance.

Character Stats

Command Effect
SugarCube.State.variables.mc.int = 999 Sets Intelligence to 999.
SugarCube.State.variables.mc.str = 999 Sets Strength to 999.
SugarCube.State.variables.mc.end = 999 Sets Endurance to 999.
SugarCube.State.variables.mc.dom = 999 Sets Dominance to 999.
SugarCube.State.variables.mc.porn = 999 Sets Porn stat to 999.
SugarCube.State.variables.mc.charisma = 999 Sets Charisma to 999.

Character Traits

Command Effect
SugarCube.State.variables.mc.traits = ['rich', 'charismatic', 'good in school', 'smart', 'strong', 'quick'] Grants all major traits simultaneously, unlocking dialogue and event options that require specific personality flags.

Character Trust and Relationships

Command Effect
SugarCube.State.variables.[GirlName].trust = 999 Maxes out the trust stat for the specified character. Replace [GirlName] with the character's internal name, for example abigail or mom.
SugarCube.State.variables.[GirlName].gf = 1 Sets the specified character as your girlfriend. Use the internal name in lowercase.
SugarCube.State.variables.[GirlName].slave = 1 Sets the specified character as a slave. Use the internal name in lowercase.

Gallery Unlock Commands

Command Effect
SugarCube.State.active.variables.[GirlName].gallery = [1, 1, 1, 1, 1, 1, 1, 1] Unlocks all gallery scenes for a single character. Replace [GirlName] with the target name. Match the number of 1 values to the original array length.
Object.keys(SugarCube.State.variables).forEach((key) => { if(SugarCube.State.variables[key].hasOwnProperty('gallery')){ SugarCube.State.variables[key].gallery.forEach((val, n) => { SugarCube.State.variables[key].gallery[n] = 1 }) } }) Unlocks the gallery for every character in the game at once. You may see a harmless console error; ignore it.

Time and Gifts

Command Effect
SugarCube.State.variables.day = 1 Sets the current in-game day to 1. Use any number to jump to a specific day.
SugarCube.State.variables.giftsRep.[GiftName] = 999 Maxes out gift reputation for a specific item category. Replace [GiftName] with the internal gift identifier.

Other Useful Variables

Command Structure How to Use
SugarCube.State.variables.mc.[Value] Type this into the console and press the Down Arrow key to browse all available values for your character. Press Tab to select one and edit it directly.

What Each Cheat Code Does

Understanding the variable structure helps you decide which Become Someone console commands to use for your goals.

Money and Stats

The mc.money and mc.[stat] commands edit your protagonist directly. Setting money to 999999 eliminates all financial barriers, while maxing int, str, end, dom, porn, and charisma unlocks every stat-gated event and dialogue option in the game.

Trust and Relationships

Each character has an internal object accessible through SugarCube.State.variables.[name]. The .trust property controls how much a character likes you, while .gf and .slave are binary flags that change relationship status. Setting trust to 999 typically maxes the meter, and setting .gf = 1 immediately unlocks girlfriend-specific scenes.

Gallery Arrays

Gallery data is stored as an array of zeros and ones. A value of 0 means the scene is locked, and 1 means it is unlocked. The single-character command requires you to count the original array length and match it with ones. The Object.keys loop automates this for every character with a gallery property, saving significant time.

Best Cheat Strategies for Fast Progression

Using Become Someone cheat codes in the right order can save hours of grinding and let you experience every route efficiently.

First-Time Story Run

  1. Open the console with F12.
  2. Enter SugarCube.State.variables.mc.money = 999999.
  3. Max all stats with the individual stat commands.
  4. Set mom.trust = 999 and sis.trust = 999 to unlock family routes immediately.

Completionist Gallery Run

  1. Copy and paste the Object.keys all-galleries command into the console.
  2. Press Enter and ignore any error messages.
  3. Open the in-game gallery to confirm every scene is unlocked.

Specific Character Focus

  1. Use SugarCube.State.variables.[GirlName].trust = 999 for your target.
  2. Set SugarCube.State.variables.[GirlName].gf = 1 to trigger relationship events.
  3. Unlock her gallery with the single-character array command.

FAQ: Become Someone Cheat Codes

Why are my cheat codes not working?

The most common cause is a typo or incorrect capitalization. JavaScript is case-sensitive, so SugarCube must be spelled exactly with that capitalization. Another issue is trying to use cheats on a mobile device; the console method only works in desktop browsers. If the command returns undefined, it likely executed correctly; switch game screens to refresh the UI.

Do cheat codes disable progress or achievements?

No. Because these commands edit the game's internal state variables directly, there is no penalty system. Your save file continues normally, and all content remains accessible.

Can I use multiple cheat codes in one session?

Yes. You can enter as many Become Someone console commands as you want without restarting the browser. Each command executes immediately and stacks with previous edits.

Do cheat codes work on downloaded versions?

Yes, as long as the downloaded version runs in a browser or browser-like environment where F12 opens developer tools. If you are playing through a standalone executable that does not expose a console, you may need to run the HTML file directly in Chrome.

What is the best code for beginners?

New players should start with SugarCube.State.variables.mc.money = 999999 to remove financial stress, followed by maxing int, str, and charisma to pass every stat check. This combination unlocks the majority of early-game content instantly.

How do I find a character's internal name?

Type SugarCube.State.variables into the console and press Enter. Expand the returned object and look for names beyond mc and settings. Common names include mom, sis, abigail, and others. You can also test names by typing SugarCube.State.variables.testname; if it returns undefined, the name is incorrect.

Can I undo a cheat after entering it?

Yes, by entering the opposite value. For example, if you set mc.money = 999999 and want to revert, simply enter mc.money = 0 or any desired number. Relationship flags like .gf = 1 can be reset to .gf = 0.

Is there a code to unlock everything at once?

There is no single master command, but combining max money, max all stats, all traits, and the all-galleries Object.keys loop effectively unlocks all major progression systems in under a minute.

Why does the all-galleries command show an error?

The Object.keys loop may trigger a harmless type error in the console if it encounters an object without a gallery array. Despite the error message, the command successfully unlocks every valid gallery it finds. Simply ignore the error and check your in-game gallery.

Can I edit my character's appearance with cheats?

Yes. Use SugarCube.State.variables.mc.[Value] and press the Down Arrow key in the console to browse available appearance variables such as height, hair color, and body type. Press Tab to autocomplete and edit the value.

Conclusion

From instant millionaire status with mc.money = 999999 to total gallery access via the Object.keys loop, Become Someone cheat codes give you complete control over your life simulation. Whether you are chasing a specific character route, trying to max every stat, or simply avoiding the early-game grind, these console commands remove all barriers. Remember to open the console with F12, use exact JavaScript syntax, and switch game screens to refresh the UI after each command. Now open that console, edit your variables, and become whoever you want to be.

Post a Comment