From 8edb21beba2d6e675b0841b39e47ed2d7b81f48c Mon Sep 17 00:00:00 2001 From: Atomos821 Date: Sun, 22 Nov 2020 23:26:08 +0100 Subject: [PATCH] Shorter filename + fix missing edit lvl example --- docs/index.html | 2 +- ...the_player_profile.md => edit_profiles.md} | 48 +++++++++++++++++-- 2 files changed, 46 insertions(+), 4 deletions(-) rename docs/md/tutorials/{edit_the_player_profile.md => edit_profiles.md} (90%) diff --git a/docs/index.html b/docs/index.html index 3b98ead..647e9a0 100644 --- a/docs/index.html +++ b/docs/index.html @@ -53,7 +53,7 @@ }, "Tutorials": { // Generalist tutorials (walkthrough projects) - "Edit the player profile": "tutorials/edit_the_player_profile.md", + "Edit profiles": "tutorials/edit_profiles.md", "Edit weapons texture": "tutorials/edit_weapons_texture.md", "Edit weapons texture(images)": "tutorials/photoshop_texture_editing.md", "WorkInProgress": "demo.md" diff --git a/docs/md/tutorials/edit_the_player_profile.md b/docs/md/tutorials/edit_profiles.md similarity index 90% rename from docs/md/tutorials/edit_the_player_profile.md rename to docs/md/tutorials/edit_profiles.md index 025fa8c..34b6cd2 100644 --- a/docs/md/tutorials/edit_the_player_profile.md +++ b/docs/md/tutorials/edit_profiles.md @@ -1,6 +1,4 @@ -# ![Tutorial profiles](./assets/img/headers/tutorials_profiles.png) - -*By Sorata-Senpai, 2020.* +# ![Editing profiles](./assets/img/headers/tutorials_profiles.png) **Summary :** @@ -36,6 +34,50 @@ Before doing any changes, the game and the server need to be closed. It's also r On the next server startup the character will be at the desired level. +**Example:** + +* Before: + + ```json + [...] + "characters": { + "pmc": { + "_id": "pmc9dbfcbf0d3be487b9ac20cd8", + "aid": "9dbfcbf0d3be487b9ac20cd8", + "savage": "scav9dbfcbf0d3be487b9ac20cd8", + "Info": { + "Nickname": "Atomos", + "LowerNickname": "atomos", + "Side": "Bear", + "Voice": "Bear_3", + "Level": 1, + "Experience": 27, // <== What needs to be edited. + "RegistrationDate": 1605806909, + "GameVersion": "standard", + [...] + ``` + +* After: + + ```json + [...] + "characters": { + "pmc": { + "_id": "pmc9dbfcbf0d3be487b9ac20cd8", + "aid": "9dbfcbf0d3be487b9ac20cd8", + "savage": "scav9dbfcbf0d3be487b9ac20cd8", + "Info": { + "Nickname": "Atomos", + "LowerNickname": "atomos", + "Side": "Bear", + "Voice": "Bear_3", + "Level": 1, + "Experience": 781760, // To reach level 30. + "RegistrationDate": 1605806909, + "GameVersion": "standard", + [...] + ``` + > **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. ## Edit skill level