From b1721740f12245a5de2148b2cd813f862f05aafa Mon Sep 17 00:00:00 2001 From: Atomos821 Date: Sat, 28 Nov 2020 11:14:54 +0100 Subject: [PATCH] removed unfinished tutorials --- .../tutorials/101_getting_started.md | 9 --- .../tutorials/profile/edit_character_level.md | 50 -------------- .../tutorials/profile/edit_skill_level.md | 67 ------------------- 3 files changed, 126 deletions(-) delete mode 100644 docs/md/_DO_NOT_DELETE_(yet)/tutorials/101_getting_started.md delete mode 100644 docs/md/_DO_NOT_DELETE_(yet)/tutorials/profile/edit_character_level.md delete mode 100644 docs/md/_DO_NOT_DELETE_(yet)/tutorials/profile/edit_skill_level.md diff --git a/docs/md/_DO_NOT_DELETE_(yet)/tutorials/101_getting_started.md b/docs/md/_DO_NOT_DELETE_(yet)/tutorials/101_getting_started.md deleted file mode 100644 index 36d6f79..0000000 --- a/docs/md/_DO_NOT_DELETE_(yet)/tutorials/101_getting_started.md +++ /dev/null @@ -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 - -... - -## \ No newline at end of file diff --git a/docs/md/_DO_NOT_DELETE_(yet)/tutorials/profile/edit_character_level.md b/docs/md/_DO_NOT_DELETE_(yet)/tutorials/profile/edit_character_level.md deleted file mode 100644 index de66ad7..0000000 --- a/docs/md/_DO_NOT_DELETE_(yet)/tutorials/profile/edit_character_level.md +++ /dev/null @@ -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. diff --git a/docs/md/_DO_NOT_DELETE_(yet)/tutorials/profile/edit_skill_level.md b/docs/md/_DO_NOT_DELETE_(yet)/tutorials/profile/edit_skill_level.md deleted file mode 100644 index 8917d8e..0000000 --- a/docs/md/_DO_NOT_DELETE_(yet)/tutorials/profile/edit_skill_level.md +++ /dev/null @@ -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.