Add Primal Fear Resources To S Dedicated Storage On Ark

Every Primal Fear resource has a specific ItemClassString. You can find these in the Primal Fear mod files or use the Cheat GiveItem command in-game. Common examples include:

If you don't have INI access but are on a server with friends, you can use a blueprint exploit. Add Primal Fear Resources To S Dedicated Storage On Ark

This clones the whitelist. You can now mass-produce Primal Fear-ready storages for your entire tribe. Every Primal Fear resource has a specific ItemClassString


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: This clones the whitelist

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.


DediStorageItemWhitelist=BlueprintPathString

Example block:

[StructuresPlus]
DediStorageItemWhitelist=Blueprint'/Game/Mods/PrimalFear/Items/Resources/PrimalItemResource_Blood.PrimalItemResource_Blood'
DediStorageItemWhitelist=Blueprint'/Game/Mods/PrimalFear/Items/Resources/PrimalItemResource_Tears.PrimalItemResource_Tears'
DediStorageItemWhitelist=Blueprint'/Game/Mods/PrimalFear/Items/Resources/PrimalItemResource_CelestialEssence.PrimalItemResource_CelestialEssence'

Note: Do not use quotes or extra spaces. Each entry must be on its own line.