diff --git a/markdown/landing/index.md b/markdown/landing/index.md index 5b964d6..433c3de 100644 --- a/markdown/landing/index.md +++ b/markdown/landing/index.md @@ -30,6 +30,9 @@ All documentation and media hosted is licensed under [CC-BY-SA 4.0](https://crea At this current moment, no marked-stable builds of Nazi Zombies: Portable are made available. Instead, nightly builds on all platforms are released via GitHub releases, accessible [here](https://github.com/nzp-team/nzportable/releases/latest). This link will always take you to the latest release, identifiable via the build date in the release title. + +## [Downloading & Installing Maps in Nazi Zombies: Portable](../mapping/downloading-and-installing-maps.md) + ## Core Documentation Core documents contain information about Nazi Zombies: Portable's internal design. They may not be specifically relevant to custom content creators, though overlap will be present for map features that interact with NZ:P's QuakeC or for specialty features. diff --git a/markdown/mapping/downloading-and-installing-maps.md b/markdown/mapping/downloading-and-installing-maps.md new file mode 100644 index 0000000..b0ac9a5 --- /dev/null +++ b/markdown/mapping/downloading-and-installing-maps.md @@ -0,0 +1,83 @@ +% Downloading & Installing Maps on Web, PC & Consoles - Downloading & Installing Maps in Nazi Zombies: Portable + + +# Downloading Maps + +[Download a map from this page](https://github.com/nzp-team/nzportable/discussions/categories/map-releases){target="_blank"} + + + +# Installing Maps on PC & Consoles + +### Extracting +Extract the map to a folder. + + +- **Make sure its in this layout.** +``` +├── derriese (custom map extracted folder) +│   ├── gfx +│   │   ├── env +│   │   │   └── CloudyNightSky.png +│   │   ├── lscreen +│   │   │   └── derriese.png +│   └── maps +│   ├── derriese.bsp +│   ├── derriese.txt +│   └── derriese.way +``` + +#### Installing +Simply copy the contents of this extracted folder the game's `nzp` folder. + + +# Installing Maps on Web + + + - [Install 7-zip if you are using Windows](https://www.7-zip.org/){target="_blank"} **(REQUIRED)** + + + +### Extracting + +Extract the map to a folder. + + +- **Make sure its in this layout.** +``` +├── derriese (custom map extracted folder) +│   ├── gfx +│   │   ├── env +│   │   │   └── CloudyNightSky.png +│   │   ├── lscreen +│   │   │   └── derriese.png +│   └── maps +│   ├── derriese.bsp +│   ├── derriese.txt +│   └── derriese.way +``` + + +### Zipping + +Then select the map folder along with any other folders inside the extracted folder and compress it to `.zip` + + +for example: + +![](../res/images/how-to-compress.webp) + +Then we need to rename this new `.zip` to `.pk3` + +### Installation + +Drag and Drop the .pk3 file into the game. + +Then reload the page afterwards, and the map will show up in user maps + +### Video Demonstration + +![gif showing how to install the map](../res/images/how-to-install-mapgif.gif) + + + diff --git a/markdown/res/images/how-to-compress.webp b/markdown/res/images/how-to-compress.webp new file mode 100644 index 0000000..f97910b Binary files /dev/null and b/markdown/res/images/how-to-compress.webp differ diff --git a/markdown/res/images/how-to-install-mapgif.gif b/markdown/res/images/how-to-install-mapgif.gif new file mode 100644 index 0000000..e70761e Binary files /dev/null and b/markdown/res/images/how-to-install-mapgif.gif differ