Add Primal Fear Resources To S Dedicated Storage On Ark Link
Not all PF items are equal. Here is your priority list for setting up Dedicated Storage:
| Priority | Resource Name | Why you need SS/S+ storage for it | | :--- | :--- | :--- | | 1 | Primal Blood | Drops from every creature. Crafting 1 Celestial saddle requires 5,000+ blood. | | 2 | Chaos Essence | End-game currency. Weighs a ton. Storage reduces lag. | | 3 | Dino Souls | Used for taming Spirit/Nether dinos. Stacks to 1000 only, so infinite storage is vital. | | 4 | Elemental Shards (Fire/Ice/Lightning) | Your generators and armor burn through these. | | 5 | Figurines (Goddess, King, Lucifer) | Non-stackable normally. Dedicated storage compresses them into digital data. |
If you have dozens of PF resources, manually writing each path is tedious. Use a simple script to extract all item blueprint paths from the PF mod files. Example Python logic: Add Primal Fear Resources To S Dedicated Storage On Ark
import os
for root, dirs, files in os.walk("PrimalFear/Content/Items/Resources"):
for file in files:
if file.endswith(".uasset"):
classname = file.split(".")[0]
path = f"Blueprint'/Game/Mods/PrimalFear/Items/Resources/classname.classname'"
print(f"DediStorageItemWhitelist=path")
Run this against extracted PF mod content, then copy the output into your INI.
After saving the INI and restarting the server/game: Not all PF items are equal
If you have 30 different types of Figurines, Essences, or Feathers from Primal Fear, dragging one by one is tedious. Use the "Set Next" function.
Because Primal Fear adds new engines, saddles, and summoning items, you cannot rely on auto-discovery. You must manually add each resource using INI configuration. If you have dozens of PF resources, manually
There are two places to do this: