Your first mod
Install a mod (desktop app)
- Open Ravenswatch Mod Manager.
- Go to the Registry tab — browse mods uploaded by the community.
- Click a mod to view its details, screenshots, and description.
- Click Install — the mod downloads into your local collection.
- Click Apply — RSMM copies the mod’s files into your Ravenswatch install.
- Launch the game and enjoy.
Create your own mod (CLI)
Mods ship data, not code — a declarative manifest.toml plus assets the SDK emits. No bespoke scripts.
-
Scaffold a new mod:
Terminal window ./rsmm new MyModThis creates
mods/MyMod/manifest.toml. -
Describe your mod — edit
manifest.tomland drop overrides undermods/MyMod/assets/:[mod]id = "MyMod"name = "My First Mod"version = "0.1.0"[[content]]kind = "texture"target = "path/to/original.png"source = "assets/my-texture.png" -
Apply your changes to the game:
Terminal window ./rsmm apply -
Package for sharing:
Terminal window ./rsmm pack MyMod # produces dist/MyMod.zip
Upload dist/MyMod.zip via the Registry tab to share it with the community.
Next steps
Authoring mods The full mod-authoring guide.
SDK (v3) The Python SDK that emits mod assets.
CLI reference All available commands.