removed unfinished tutorials

This commit is contained in:
SPT-dev 2023-03-02 21:11:03 -05:00
parent c8ebff91c8
commit 408e251d2c
3 changed files with 0 additions and 126 deletions

View File

@ -1,9 +0,0 @@
# 101 - Getting started
This tutorial is an introduction to SPT-AKI editing. It will cover basic file editing as well as a quick introduction to modding.
## Getting the right tools for the job
...
##

View File

@ -1,50 +0,0 @@
# Edit character level
> * As with every editing tutorial, it's recommanded to use VSCodium.
> * The game and the server need to be closed before doing any changes.
> * It's recommended to create a backup of the profile you're about to edit.
## Legend
Expression | What | Example
------------|-----------------------------|--------
`%server%` | Server folder. | `C:\Games\SPT-AKI\Server\`
`%profileID%` | File containing a profile. | `C:\Games\SPT-AKI\Server\user\profiles\9dbfcbf0d3be487b9ac20cd8.json`
## Steps
* Open the wanted character profile with VSCodium (`%server%\user\%profileId%`).
* Search for the line with the property `Experience`.
* Go to [this](https://escapefromtarkov.gamepedia.com/Character_skills) EFT Wiki page and copy the `Cumulative Total` value of desired level.
* Paste the value instead of the existing one.
* Save the file.
On the next server startup the character will be at the desired level.
## Example
* Before:
```json
// [...]
"Side": "Bear",
"Voice": "Bear_3",
"Level": 1,
"Experience": 27, // <== What needs to be edited.
// [...]
```
* After:
```json
// [...]
"Side": "Bear",
"Voice": "Bear_3",
"Level": 1,
"Experience": 781760,
// [...]
```
## Understanding why
A character's level, in Escape From Tarkov, is not tied to the `"Level"` property. Instead, it's derived from the amount of experience it has. As such, a character with `781760` experience points will be level 30.

View File

@ -1,67 +0,0 @@
# Edit skill level
> * As with every editing tutorial, it's recommanded to use VSCodium.
> * The game and the server need to be closed before doing any changes.
> * It's recommended to create a backup of the profile you're about to edit.
## Legend
Expression | What | Example
------------|-----------------------------|--------
`%server%` | Server folder. | `C:\Games\SPT-AKI\Server\`
`%profileID%` | File containing a profile. | `C:\Games\SPT-AKI\Server\user\profiles\9dbfcbf0d3be487b9ac20cd8.json`
## Steps
* Open the wanted character profile with VSCodium (`%server%\user\%profileId%`).
* Search for the line with the property `Skills`.
* Next to it, you should have a long list of all the character skills:
```json
// [...]
"Common": [
{
"Id": "BotReload",
"Progress": 0,
"PointsEarnedDuringSession": 0,
"LastAccess": -2147483648
},
{
"Id": "Endurance",
"Progress": 0,
"PointsEarnedDuringSession": 0,
"LastAccess": 0
},
// [...]
```
* Edit the `Progress` property value of any wanted skill except for `BotReload`.
* Save the file.
On the next server startup the character's skills will be at the desired level.
## Example
For `Endurance` to reach level 51, you need to write `5100` for the skill's `Progress` property.
```json
{
"Id": "Endurance",
"Progress": 5100,
"PointsEarnedDuringSession": 0,
"LastAccess": 0
},
```
## Properties
Property | Purpose
----------------------------|---------
`Id` | Name of the skill.
`Progress` | Number of points learned for this skill.
`PointsEarnedDuringSession` | How many points were acquired during the last session.
`LastAccess` | Last time a point was earned for this skill *(it's a timestamp)*.
## Understanding why
A character's skill level in Escape from Tarkov is reached for each hundred point increment. The level 1 requires 100 points, level 2 200 points, level 10 100 points and so on.