Unlock the Code: How to Enable Developer Console in RenPy & RPG Maker
← Back to Blog

Unlock the Code: How to Enable Developer Console in RenPy & RPG Maker

February 24, 2026
guidescheatsrenpyrpgmakerdebug

Unlock the Code: How to Enable Developer Console

Sometimes a game just breaks. You get soft-locked in a cutscene, an event doesn't trigger, or maybe the grind is just too much and you want to give yourself a little boost.

While tools like SaveEditOnline are great for modifying static data, sometimes you need to change things live while the game is running. That is where the Developer Console comes in.

Here is how to unlock the "God Mode" for the two most popular engines on Lewd.ninja.


🐍 Ren'Py Games

The engine for most Visual Novels.

Ren'Py has a built-in console that lets you warp to labels, change variables, and unlock galleries instantly.

Method 1: The "Shift+O" Test

First, try the easy way. Launch the game and press Shift + O (the letter O).

  • If a console opens: You are lucky! The dev left it enabled.
  • If nothing happens: Follow the steps below.

Method 2: Enabling Developer Mode

To force the console on, you need to tell the game you are a developer.

  1. Go to the game folder and look for the renpy folder (usually inside game/renpy/ or just renpy/).
  2. Find a file named 00console.rpy (or sometimes 00definitions.rpy or options.rpy).
  3. Open it with a text editor (Notepad is fine, Notepad++ is better).
  4. Search for config.developer.
  5. Change the line to:
    config.developer = True
    
  6. Save the file and restart the game.

Cheatsheet:

  • Shift + O: Opens the Command Console.
  • Shift + D: Opens the Developer Menu (Image Location picker, Variable Viewer).

⚔️ RPG Maker MV / MZ

The modern RPG engine (HTML5/JavaScript based).

These games often run inside a browser wrapper (NW.js), which means you can access the powerful Chrome Developer Tools.

Method 1: The F8 Key

Try pressing F8 or F12 while the game is running.

  • If a window pops up that looks like "Inspect Element," you are in.
  • Go to the Console tab to type JavaScript commands (e.g., $gameParty.gainGold(9999)).

Method 2: The "Package.json" Hack

If F8 does nothing, the developer has disabled the toolbar. Here is how to bring it back:

  1. Go to the game's root folder (where Game.exe is).
  2. Find the package.json file.
  3. Open it with a text editor.
  4. Look for the line "toolbar": false.
  5. Change it to:
    "toolbar": true
    
  6. Save and run the game. You should now be able to press F8 or see a toolbar to open the DevTools.

🛡️ RPG Maker VX / VX Ace / XP

The classic RPG engines (Ruby based).

These older engines don't have a "Console" in the modern sense, but they have a powerful Debug Menu that lets you toggle Switches and Variables.

The "Test Mode" Shortcut Trick

You cannot easily edit a file to enable this; you have to launch the game in "Test Mode."

  1. Right-click Game.exe and select Create Shortcut.
  2. Right-click the newly created shortcut and select Properties.
  3. In the Target field, go to the very end of the text line.
  4. Add a space followed by the word test.
    • Example: "C:\Games\MyRPG\Game.exe" test
  5. Click Apply and run the game using that shortcut.

What this enables:

  • F9: Opens the Debug Menu (Edit Switches/Variables).
  • CTRL (Hold): Walk through walls and avoid random encounters.

Conclusion

With great power comes great responsibility. Unlocking the console can easily break your save file if you toggle the wrong story switch (e.g., event_chapter5_complete) before you are supposed to. Always keep a backup save before you start tinkering!