Skip to content

Your first mod

Install a mod (desktop app)

  1. Open Ravenswatch Mod Manager.
  2. Go to the Registry tab — browse mods uploaded by the community.
  3. Click a mod to view its details, screenshots, and description.
  4. Click Install — the mod downloads into your local collection.
  5. Click Apply — RSMM copies the mod’s files into your Ravenswatch install.
  6. 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.

  1. Scaffold a new mod:

    Terminal window
    ./rsmm new MyMod

    This creates mods/MyMod/manifest.toml.

  2. Describe your mod — edit manifest.toml and drop overrides under mods/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"
  3. Apply your changes to the game:

    Terminal window
    ./rsmm apply
  4. 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