HPL2/Tutorials/Coin chests
Amnesia has an unused coins mechanic that is actually functional. The player can collect coins and then open special chests by spending these coins. These chests show a special GUI window for this mechanic.
The entities that add coins to the player's "purse" are 3 variants of pouches with thalers and can be either placed in a level through the editor (they can be found in the items folder under entities) or by specifying them as the item that appears when breaking vases, pots etc. The entity property for the latter is called "ContainedItem".
However, there is no coin chest entity in the game's files. To make use of this mechanic, you will need to create one:
- Start the Model Editor
File > Open
- Navigate to and open
/entities/gameplay/chest_small/chest_small.ent
, for example. You can change other chests (e.g. the treasure chest) and even doors to work as a coin chest. - Save as a new file in your mod folder, e.g.
/custom_stories/MyMod/entities/chest_small_coins.ent
- Open
Settings > User defined variables
- Change the Type to "Chest" at the top of the newly opened window
- You can also customise the speed at which the chest opens when the player spends money for it if you want
- Close the window and save the file
Now you can place the chest in your mod and set the number of coins needed to open the chest.