diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-01-02 21:12:29 +0100 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-01-02 21:12:29 +0100 |
commit | 7990ff1c9578e03bebaaef7eabb070c3829e93da (patch) | |
tree | 594d1a487501153a861d418d7d2fe41c92793850 /docs/modding/getting-started.md | |
parent | 700ae369d108f46a75f2227aa98d2b6fc0105511 (diff) | |
download | NorthstarWiki-7990ff1c9578e03bebaaef7eabb070c3829e93da.tar.gz NorthstarWiki-7990ff1c9578e03bebaaef7eabb070c3829e93da.zip |
Fix URLs messed up by GitBook web UI
Diffstat (limited to 'docs/modding/getting-started.md')
-rw-r--r-- | docs/modding/getting-started.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/modding/getting-started.md b/docs/modding/getting-started.md index 4eb6c11..7ea7ef2 100644 --- a/docs/modding/getting-started.md +++ b/docs/modding/getting-started.md @@ -6,8 +6,8 @@ This guide assumes you have basic understanding with programming and know how to If you'd like a more lengthy set of tutorials covering many topics. Look at: -{% content-ref url="squirrel/what-is-squirrel.md" %} -[what-is-squirrel.md](squirrel/what-is-squirrel.md) +{% content-ref url="modding/tutorials/modding-tutorials.md" %} +[modding-tutorials.md](modding/tutorials/modding-tutorials.md) {% endcontent-ref %} > TODO: Actually link tools @@ -24,7 +24,7 @@ In order to get started with making your mod, create a folder in `R2Northstar/mo After making this folder, inside it add a folder named `mod` and a file named `mod.json`. -Provided is a template `mod.json`, for a detailed list of values read [Cheatsheet](tutorials/modding-tutorials.md) +Provided is a template `mod.json`, for a detailed list of values read [Cheatsheet](modding/cheatsheet.md) ```json { @@ -63,4 +63,4 @@ Inside the `mod` folder, existing files found in the engine's virtual file syste > TODO: Create and link Squirrel VM documentation -`"Path"` indicates where the script is, `"RunOn"` is the Squirrel VM context (see [Squirrel VM](getting-started.md)) as an expression, and `"ClientCallback"` and `"ServerCallback"` specify a function call that can be `"Before"` and/or `"After"` map-spawn. +`"Path"` indicates where the script is, `"RunOn"` is the Squirrel VM context (see [Squirrel VM](modding/getting-started.md)) as an expression, and `"ClientCallback"` and `"ServerCallback"` specify a function call that can be `"Before"` and/or `"After"` map-spawn. |