updated tutorials to match release folder structure

This commit is contained in:
Atomos821 2020-11-28 13:29:09 +01:00
parent 4670696c01
commit 6133884212
3 changed files with 7 additions and 7 deletions

View File

@ -15,7 +15,7 @@ The table below is a set of "expressions" that will be used to avoid writing inf
Expression | What | Example Expression | What | Example
--------------|-----------------------------|-------- --------------|-----------------------------|--------
`%game%` | SPT-AKI install location. | `C:\Games\SPT-AKI` `%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 ## 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: 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. 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. 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: 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. 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) ![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. 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**\ > **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) > ![profile file content](../assets/img/spt-aki/tutorials/tut_0/008.png)
## Making a backup ## 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. 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. 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.

View File

@ -4,7 +4,7 @@ Editing a character's level is a quick way to unlock the flea market and to fill
To do so: 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. * Search for the first line with the `Experience` property.
![Screenshot of the profile file](../assets/img/spt-aki/tutorials/tut_0/009.png) ![Screenshot of the profile file](../assets/img/spt-aki/tutorials/tut_0/009.png)

View File

@ -4,7 +4,7 @@ In Escape from Tarkov, skills are the representation of the proficiency of your
To do so: 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. * Search for the first line with the `Skills` property.
![Screenshot of the profile file](../assets/img/spt-aki/tutorials/tut_0/012.png) ![Screenshot of the profile file](../assets/img/spt-aki/tutorials/tut_0/012.png)