Corruption Of Champions 2 Console Commands [updated] Instant

Press or Ctrl + Shift + I to open the browser’s developer tools panel. Click on the Console tab.

Right-click on Corruption of Champions 2 and select .

| Action | Command | Notes | | :--- | :--- | :--- | | | CoC2Main.gameSaveManager.saveGameToDisk() | This command forces an immediate manual save. | | List all loaded flags | console.log(CoC2Main.game.flags) | Prints every flag name and its current value to the console for easy reference. | | Heal your party | CoC2Main.game.party.healAll() | Fully restores HP for your entire party. | | Restore resources | CoC2Main.game.party.refreshAll() | Replenishes any spendable resources (like mana or stamina). | | Log object information | console.log(CoC2Main.game.player) | This command will print the entire player object to the console, revealing every variable attached to your character (stats, body parts, flags, etc.). |

Typing this command into the console was provided in a patch note as a way to jump directly to specific content. It serves as a perfect example of how you can use functions to modify your game experience. corruption of champions 2 console commands

To use these commands, you must be playing the or an environment where you can access developer tools.

The primary object holding your game data is usually pc (Player Character) or nested within a global engine state like model or game .

Setting stats like Strength or Level to absurdly high numbers (e.g., 999999 ) can break the game's scaling math, causing combat to freeze or crash the browser tab. Press or Ctrl + Shift + I to

Press F12 or Ctrl + Shift + J to open the browser’s developer console.

If a command requires a target, omitting it usually defaults to the player character ( pc ). Core Character Stat Commands

These commands are JavaScript-based. Ensure you type them exactly as shown, including capitalization. pc.credits += 5000 Adds 5,000 Credits to your character. Items pc.safeAddItem(ITEMS.ItemName) Adds a specific item to your inventory. Powers pc.addPower(POWERS.PowerName) Teaches your character a specific power. Perks pc.createPerk(PERKS.PerkName) Grants your character a specific perk. Unlocks See Script Below Unlocks all CGs or Busts in the gallery. Advanced Unlock Scripts | Action | Command | Notes | |

Press F12 or Ctrl + Shift + I (Windows) / Cmd + Option + I (Mac) while the game window is active.

setEarType("[ear_type]") – Modifies your ear shape to match specific animal lineages. Quest and Progression Flags

camp.moveTo("wayfort")

Because CoC2 runs as a web-based application under the hood, the console commands are actually JavaScript snippets that interface directly with the game's global variables.