Prerequisites
- A HELIX project (Unreal Engine) with UnLua enabled.
- The FORGE framework, clone or fork FORGE-FRAMEWORK.
Install
Drop FORGE into your Scripts folder
The repository root is your
Scripts/ directory. Place the packages so HELIX loads them from
Scripts/forge-core, Scripts/forge-items, and so on.Confirm the package list
config.json registers every package and its load order. forge-core must load first; the
example content (forge-examples/forge-example-content) loads last.A healthy boot logs
... ready for each package, [FORGE-SMOKE] DONE 153 passed, 0 failed, and
[FORGE-TEST] DONE ... pass=625 fail=0.Walk the neutral baseline
With no themed content, a fresh character can already exercise the core loop. (The example content ships dev keybinds,G to grant starter items, I to open the inventory, to make this quick.)
Create a character
The character-select screen lets you create a character with a structured name and identity
fields, then spawn in.
Get starter items
The shipped neutral items include a bandage, bread, water, cloth, a simple dagger, and a coin.
A new character also starts with 100 coin (
forge-economy starting balance).Craft a bandage
recipe:bandage is common knowledge, turn 2× cloth into a bandage with no station required.Next steps
Understand the architecture
How packages talk to each other.
Learn the content model
Keep, edit, or switch off the neutral defaults.
Make it your own
The fork workflow for building your server.
Add your first item
Register content through the public API.