Merge pull request 'How to add money to stash tutorial' (#3) from Rev/Website:add-money-tutorial into master
Reviewed-on: SPT-AKI/Website#3
BIN
docs/assets/img/spt-aki/tutorials/tut_0/tut0_6/001.png
Normal file
After Width: | Height: | Size: 121 KiB |
BIN
docs/assets/img/spt-aki/tutorials/tut_0/tut0_6/002.png
Normal file
After Width: | Height: | Size: 86 KiB |
BIN
docs/assets/img/spt-aki/tutorials/tut_0/tut0_6/003.png
Normal file
After Width: | Height: | Size: 142 KiB |
BIN
docs/assets/img/spt-aki/tutorials/tut_0/tut0_6/004.png
Normal file
After Width: | Height: | Size: 162 KiB |
BIN
docs/assets/img/spt-aki/tutorials/tut_0/tut0_6/005.png
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
docs/assets/img/spt-aki/tutorials/tut_0/tut0_6/006.png
Normal file
After Width: | Height: | Size: 140 KiB |
BIN
docs/assets/img/spt-aki/tutorials/tut_0/tut0_6/007.png
Normal file
After Width: | Height: | Size: 1015 KiB |
@ -1,3 +1,58 @@
|
||||
# Adding money to a character's stash
|
||||
|
||||
This section of the tutorial is still being worked on.
|
||||
Adding money to your character level is an easy way to be stay rich and be able to buy anything you want from the flea market or traders or in some scenarios, finish a quest.
|
||||
|
||||
> **IMPORTANT**\
|
||||
> Please backup your profile before attempting to modify it.
|
||||
|
||||
> **Note**\
|
||||
> For an easier way to deal with adding new items, you should clear out some space at the top of the stash, Then close the game and the server.
|
||||
|
||||
> **Note**\
|
||||
> The same steps can do used to add money in other currencies as well
|
||||
|
||||
Steps to follow:
|
||||
|
||||
* Open your character profile (`%game%\user\%profileId%`) with your code editor.
|
||||
* Search for the first line with the `Inventory` property.
|
||||
|
||||
![Screenshot of the profile file](../assets/img/spt-aki/tutorials/tut_0/tut0_6/001.png)
|
||||
|
||||
|
||||
* Go to the [SPT Resource page](https://docs.sp-tarkov.com/#resources/other.md), and you will find the IDs of the currencies.
|
||||
|
||||
![Screenshot of the currency Ids](../assets/img/spt-aki/tutorials/tut_0/tut0_6/002.png)
|
||||
|
||||
> **Note**\
|
||||
> In the vanilla tarkov game, the money max stack is 500000, and unless you are using a mod that modify that value it is recommended to use that as a max value.
|
||||
|
||||
* Since your profile already comes with some money included we can use that to look for the money items in your profile and duplicate that to create more money stacks. So first, let's try to find the Roubles money stack using the Rouble currency ID.
|
||||
|
||||
![Screenshot of the money object](../assets/img/spt-aki/tutorials/tut_0/tut0_6/003.png)
|
||||
|
||||
* Now that you have an idea on how the money stack object looks like, you can copy/paste it couple of times to add more money to your profile.
|
||||
|
||||
![Screenshot of the money stack copies](../assets/img/spt-aki/tutorials/tut_0/tut0_6/004.png)
|
||||
|
||||
> **Note**\
|
||||
> When copying the money stack don't forget to add the comma after the } of each stack but never add the comma after the last object because that will make it not work.
|
||||
|
||||
* When copy/pasting new money stacks don't forget that these stacks have to be in a valid position in your stash.
|
||||
Look at the x and y in the location property of each money stack you created, they are all at the same position so we need to move them to an empty block in your stash.
|
||||
|
||||
* For this example I cleared out few top blocks in my stash. You don't have to do this as you can move the item to any empty block in your stash as long as you know the X and Y of that block.
|
||||
|
||||
![Screenshot of the stash](../assets/img/spt-aki/tutorials/tut_0/tut0_6/005.png)
|
||||
|
||||
* Now we can update the locations of the newly created money stasks.
|
||||
|
||||
![Screenshot of the new position of money](../assets/img/spt-aki/tutorials/tut_0/tut0_6/005.png)
|
||||
|
||||
* We still need to change the IDs of the new items because the game will not work if there many items with the same ID in the inventory.
|
||||
To fix this, You can use a script using a code extracted from SP-tarkov to generate IDs
|
||||
[Link to ID generator](https://replit.com/@Revingly/ID-generator)
|
||||
Just hit the run button to generate new IDs and you can replace the existing ones with the newly generated IDs.
|
||||
|
||||
* After updating the IDs of the new items, save your profile. Start the game and check the result.
|
||||
|
||||
![Screenshot of the new money items in stash](../assets/img/spt-aki/tutorials/tut_0/tut0_6/007.png)
|
||||
|