From 61338842125316d452e9de453c0152268c76a02b Mon Sep 17 00:00:00 2001 From: Atomos821 Date: Sat, 28 Nov 2020 13:29:09 +0100 Subject: [PATCH] updated tutorials to match release folder structure --- docs/md/tutorials/tut_0/tut0_1.md | 10 +++++----- docs/md/tutorials/tut_0/tut0_2.md | 2 +- docs/md/tutorials/tut_0/tut0_3.md | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/md/tutorials/tut_0/tut0_1.md b/docs/md/tutorials/tut_0/tut0_1.md index a369900..86d05e6 100644 --- a/docs/md/tutorials/tut_0/tut0_1.md +++ b/docs/md/tutorials/tut_0/tut0_1.md @@ -15,7 +15,7 @@ The table below is a set of "expressions" that will be used to avoid writing inf Expression | What | Example --------------|-----------------------------|-------- `%game%` | SPT-AKI install location. | `C:\Games\SPT-AKI` -`%profileID%` | File containing a profile. | `C:\Games\SPT-AKI\Server\user\profiles\9dbfcbf0d3be487b9ac20cd8.json` +`%profileID%` | File containing a profile. | `C:\Games\SPT-AKI\user\profiles\9dbfcbf0d3be487b9ac20cd8.json` ## Creating a new profile @@ -23,7 +23,7 @@ You want a way to fool around in SPT-AKI, but without also ruining the fun of ha To create a new profile: -1. Start SPT-AKI's server by going into `%game%server` and double-clicking on the server executable. +1. Start SPT-AKI's server by going into `%game%` and double-clicking on the server executable. 2. Start SPT-AKI's launcher by going into `%game%` and double-clicking on the launcher executable. 3. Create a new profile through the launcher. @@ -52,7 +52,7 @@ Now that you have created a new profile, you will need to identify it in the ser To find a specific profile: -1. Go into `%game%Serveruserprofiles`. +1. Go into `%game%\user\profiles`. 2. One by one, open a profile file in a code editor and look for the `email` and/or `Nickname` properties. ![profile file content](../assets/img/spt-aki/tutorials/tut_0/007.png) @@ -60,7 +60,7 @@ To find a specific profile: After a bit of research you should have now identified which profile you want to use and can proceed with the next step. > **Alternative "quick" way**\ -> You can quickly identify a profile ID by checking for which profile are the request sent to the server. The ID will be listed at the start of each server's request in the server window. Once you've identified the profile ID, you can directly go look for the profile file with the same name in `%game%\Server\user\profiles\`. +> You can quickly identify a profile ID by checking for which profile are the request sent to the server. The ID will be listed at the start of each server's request in the server window. Once you've identified the profile ID, you can directly go look for the profile file with the same name in `%game%\user\profiles\`. > ![profile file content](../assets/img/spt-aki/tutorials/tut_0/008.png) ## Making a backup @@ -70,7 +70,7 @@ After a bit of research you should have now identified which profile you want to Making a profile backup will allow you to not lose your work if you make a mistake while editing your profile. It's also very useful in case of profile corruption due to a server error and/or improper profile save. -To backup a profile, it's recommended to create a new folder out of any of the folders used by the server to write data (like `%game%\Server\user\profiles\`) and to create a 'backups' folder at the root of the server directory. +To backup a profile, it's recommended to create a new folder out of any of the folders used by the server to write data (like `%game%\user\profiles\`) and to create a 'backups' folder at the root of the server directory. This way, if you ever wanted to roll back and/or restore a corrupted profile, you would just need to go get a previous version of it and copy/paste it over the faulty file. diff --git a/docs/md/tutorials/tut_0/tut0_2.md b/docs/md/tutorials/tut_0/tut0_2.md index 03ae42b..7c6ec19 100644 --- a/docs/md/tutorials/tut_0/tut0_2.md +++ b/docs/md/tutorials/tut_0/tut0_2.md @@ -4,7 +4,7 @@ Editing a character's level is a quick way to unlock the flea market and to fill To do so: -* Open your character profile (`%game%\server\user\%profileId%`) with your code editor. +* Open your character profile (`%game%\user\%profileId%`) with your code editor. * Search for the first line with the `Experience` property. ![Screenshot of the profile file](../assets/img/spt-aki/tutorials/tut_0/009.png) diff --git a/docs/md/tutorials/tut_0/tut0_3.md b/docs/md/tutorials/tut_0/tut0_3.md index 5f4b23a..464eee2 100644 --- a/docs/md/tutorials/tut_0/tut0_3.md +++ b/docs/md/tutorials/tut_0/tut0_3.md @@ -4,7 +4,7 @@ In Escape from Tarkov, skills are the representation of the proficiency of your To do so: -* Open your character profile (`%game%\server\user\%profileId%`) with your code editor. +* Open your character profile (`%game%\user\%profileId%`) with your code editor. * Search for the first line with the `Skills` property. ![Screenshot of the profile file](../assets/img/spt-aki/tutorials/tut_0/012.png)