Shorter filename + fix missing edit lvl example
This commit is contained in:
parent
2583e7b15c
commit
525e0e85b0
@ -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"
|
||||
|
@ -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
|
Loading…
x
Reference in New Issue
Block a user