An RPG game maker where the systems get written for you

An RPG is mostly systems: stats, inventory, dialogue, quests, save files. Stage Engine is a desktop app where you build the world by hand and Director 1 writes those systems as real GDScript inside your project.

The world is the small half of an RPG

People starting an RPG usually picture the map first. A village, a forest road, a ruin on a hill. That part is genuinely the fun part, and it is the part a builder should let you do directly rather than describe in a sentence.

The rest of the genre is bookkeeping. Health and damage that scale sensibly. An inventory that can hold a thing, drop a thing, and still be right after you reload. Dialogue that remembers what you already said. A quest that knows it is halfway done. None of that is creative work in the sense that placing a forest is, and all of it has to exist before the game feels like an RPG rather than a walk.

Stage Engine splits along that line. You build the map. Director 1 writes the bookkeeping, as GDScript, in your project, where it is a real file you could open if you wanted to.

How the work actually goes

You start in the builder, which behaves like a level editor rather than a chat box. Terrain gets shaped, water gets placed, weather gets set, buildings and characters go where you put them. This is hand work and it is meant to be.

Then you say what should happen. A chest that gives an item. A guard who blocks the bridge until you have the pass. A boss with three phases. Director 1 writes it and you play it. If the boss dies too fast, you say so, and it changes. You are judging the result, not reading the diff.

That loop is the whole method. It is slower than a template and faster than learning GDScript, and it produces a game that is specifically yours rather than a reskin of an example project.

Numbers are a taste problem, not a code problem

Every RPG lives or dies on its numbers. How much a sword hurts, how long a fight lasts, how fast you level, how scarce potions are. There is no correct answer to any of those, which is why no tool can hand them to you.

What a tool can do is make them cheap to change. When the combat code is written for you, adjusting a curve is a sentence rather than an afternoon, and you can afford to try the version you were not sure about. Most balance in a role-playing game comes from playing it many times and noticing when a fight stopped being interesting.

You are the one who notices. Not writing the code does not mean not having an opinion about whether the second dungeon drags.

It is a desktop app, and the game runs on your machine

Stage Engine installs on Mac and Windows and ships with Godot inside it. Press play and the game runs locally, at your machine's framerate. There is no streaming and no browser tab in the middle.

For an RPG this matters because RPGs get big. A world with real terrain, a day-night cycle and a couple of hundred characters going about their business is not something a browser tool will run smoothly, which is why browser tools quietly point you at small flat scenes.

Building does need an internet connection. Director 1, asset generation and world data all come over the network. Playing what you built does not.

Where the art comes from

Art arrives one of three ways: generation, the web, or you. All three are normal and mixing them is normal too. A village built from generated pieces with two models you made yourself is not a compromise, it is how most small projects actually look.

Simple geometry can also be built directly when that is the honest fastest way to get playing. A grey box that is the right size tells you whether the room works, and it tells you tonight rather than after a week of modelling.

The useful discipline is to postpone art. A dungeon made of grey blocks is playable, and playable is the only thing that tells you whether the design is good. Dressing a bad dungeon does not improve it, it just makes the disappointment more expensive.

What it costs and what you keep

The download is free and there is a free plan. Indie is $10 a month, Pro is $50. The paid plans buy more usage. They do not unlock a better engine, and there is no team or enterprise tier — it is a desktop app.

What you keep is a Godot project. Godot is open source and widely used, so the thing on your disk at the end is not a file that only one company can open. If you ever want to hand it to someone who does write code, you can.

Questions

Can I make a turn-based RPG, or only real-time?
Either. Turn order, action points and initiative are code, and code is the part Director 1 writes. Say which one you want and play the result.
Do I have to write any GDScript?
No. Director 1 writes it inside your project. You can read it, because it is a normal Godot project, but nothing in the workflow asks you to.
Is this 2D or 3D?
It is built for 3D worlds. Terrain, water and weather are the default shape rather than an advanced feature, which suits an exploration-heavy RPG.
Does it run in a browser?
No. It is a desktop app for Mac and Windows and your game runs locally on the bundled Godot. Building needs an internet connection; playing what you built does not.
How much does it cost?
Free to download, with a free plan. Indie is $10 a month and Pro is $50 a month, and what they buy is more usage rather than more engine.