Skip to content

Commit

Permalink
Add manual method for mod engine 2 setup
Browse files Browse the repository at this point in the history
This was a request to not require downloading a file
  • Loading branch information
inuNorii committed Aug 29, 2024
1 parent 17c12c1 commit 4d4349f
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion pages/seamless-modding.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,27 @@ save_file_extension = `co2`
<details markdown="block">
<summary>3. Setting up Mod Engine 2</summary>

> 3.1 Download the [preconfigured Elden Ring ModEngine2 toml](https://ersc-docs.github.io/assets/txt/config_eldenring.toml).
> 3.1 Download the [preconfigured Elden Ring ModEngine2 toml](https://ersc-docs.github.io/assets/txt/config_eldenring.toml) or configure it manually like the following example:
> <details markdown="block">
> <summary>config_eldenring.toml</summary>
>
> ```toml
> [modengine]
> debug = false
> external_dlls = [ "SeamlessCoop/ersc.dll" ]
>
> [extension.mod_loader]
> enabled = true
> loose_params = false
>
> mods = [
> { enabled = true, name = "default", path = "mod" }
> ]
>
> [extension.scylla_hide]
> enabled = false
> ```
> </details>
> 3.2 Open your `ME2` folder.
Expand Down

0 comments on commit 4d4349f

Please sign in to comment.