This mod allows to build Save Points for 1 Ferrite Dust, which is the minimum cost allowed by the game.
Useful for any emergency situation that requires you to save the game (baby call, diner call, end of the world)!

Only works on planets.

Compatibility:
Compatible with NEXT 1.63

Installation:
- remove or rename DISABLEMODS.TXT file from PCBANKS folder (I rename it into ENABLEMODS.TXT).
- create a MODS folder into \Steam\steamapps\common\No Man's Sky\GAMEDATA\PCBANKS folder.
- copy/paste included .pak file into the MODS folder.

Warning:
This mod might not be compatible with other modifications to the base building elements, more precisely, any other mod that modifies:
\METADATA\REALITY\TABLES\NMS_REALITY_GCPRODUCTTABLE.MBIN

How to add Quick Save Points to your own NMS_REALITY_GCPRODUCTTABLE.MBIN file:

FIND
<Property name="Id" value="BUILDSAVE" />

GO TO
<Property name="Requirements">

REPLACE
		<Property value="GcTechnologyRequirement.xml">
          <Property name="ID" value="CASING" />
          <Property name="InventoryType" value="GcInventoryType.xml">
            <Property name="InventoryType" value="Product" />
          </Property>
          <Property name="Amount" value="2" />
        </Property>
        <Property value="GcTechnologyRequirement.xml">
          <Property name="ID" value="JELLY" />
          <Property name="InventoryType" value="GcInventoryType.xml">
            <Property name="InventoryType" value="Product" />
          </Property>
          <Property name="Amount" value="1" />
		</Property>
		  
WITH

		<Property value="GcTechnologyRequirement.xml">
          <Property name="ID" value="LAND1" />
          <Property name="InventoryType" value="GcInventoryType.xml">
            <Property name="InventoryType" value="Substance" />
          </Property>
          <Property name="Amount" value="1" />
        </Property>


Silver70