Skip to content

Add Primal Fear Resources To S Dedicated Storage On Ark Official

You need the exact blueprint path for each PF resource. Methods:

Method A (Easiest): Use the console command admincheat GiveItemNum <ItemIndex> 1 0 0 while looking at the PF dev kit item list (online or in mod files). Then use admincheat GetItemBlueprint on the spawned item.

Method B: Extract from Primal Fear’s .pak file using the ARK Dev Kit or a simple modding tool like AssetEditor.

Method C (Recommended for most players): Refer to community-maintained lists. Common Primal Fear resource paths:

| Resource | Blueprint Path Suffix | |----------|------------------------| | Primal Blood | PrimalFear/Items/Resources/PrimalItemResource_Blood.PrimalItemResource_Blood | | Primal Tears | PrimalFear/Items/Resources/PrimalItemResource_Tears.PrimalItemResource_Tears | | Origin Continent Fragment | PrimalFear/Items/Resources/PrimalItemResource_Origin.Continent.PrimalItemResource_Origin_Continent | | Celestial Essence | PrimalFear/Items/Resources/PrimalItemResource_CelestialEssence.PrimalItemResource_CelestialEssence | | Chaotic Blood | PrimalFear/Items/Resources/PrimalItemResource_ChaosBlood.PrimalItemResource_ChaosBlood | | Alpha Blood | PrimalFear/Items/Resources/PrimalItemResource_AlphaBlood.PrimalItemResource_AlphaBlood | | Apex Drop (various) | PrimalFear/Items/Resources/Apex/PrimalItemResource_Apex_[Type].PrimalItemResource_Apex_[Type] | Add Primal Fear Resources To S Dedicated Storage On Ark

Note: Prefix always with Blueprint'/Game/Mods/ and append ' at the end.

Example full path for Primal Blood: Blueprint'/Game/Mods/PrimalFear/Items/Resources/PrimalItemResource_Blood.PrimalItemResource_Blood'


ARK: Survival Evolved is a game of logistics. Between taming god-like dinosaurs, crafting elemental gear, and defending your base, inventory management often becomes the true final boss. For players running the brutal Primal Fear overhaul mod, this problem is magnified tenfold.

With over 100+ new resources, 30+ new creature tiers (from Wyvern to Demonic, Celestial, and Chaos), and thousands of unique item IDs, your standard wooden boxes or even vaults simply won't cut it. You need the exact blueprint path for each PF resource

Enter S+ Dedicated Storage (or its successor, Super Structures (SS) ). These digital marvels act like ender chests on steroids, allowing you to store unlimited amounts of a single resource in a 1x1 footprint. But here is the catch: Dedicated Storage does not automatically recognize Primal Fear items.

If you have tried to slot a "Primal Blood" or a "Chaos Essence" into your S+ storage and watched it reject the item, you need to manually add these resources to the storage's whitelist.

This article will walk you through every method to successfully add Primal Fear resources to S+ Dedicated Storage on ARK, from the simple drag-and-drop method to advanced INI configuration.


Before we fix the problem, you need to understand the architecture of these mods. ARK: Survival Evolved is a game of logistics

The Result: You place an S+ Dedicated Storage. You look inside. You cry. Your 10,000 stacks of "Alpha Blood" remain on your dinosaur, rotting.

You must add each resource individually under the AddItemWhiteList array.

Open your Game.ini and paste the following block. This is your golden ticket.

[/Script/ShooterGame.ShooterGameUserSettings]
[StructuresPlus]
IgnoreItemBlacklist=true
AddItemWhiteList=(ItemClassString="PrimalItemResource_PFDoDoFeather_C")
AddItemWhiteList=(ItemClassString="PrimalItemResource_PFHide_C")
AddItemWhiteList=(ItemClassString="PrimalItemResource_PFRawMeat_C")
AddItemWhiteList=(ItemClassString="PrimalItemResource_AlphaBlood_C")
AddItemWhiteList=(ItemClassString="PrimalItemResource_AlphaMeat_C")
AddItemWhiteList=(ItemClassString="PrimalItemResource_ApexBlood_C")
AddItemWhiteList=(ItemClassString="PrimalItemResource_ApexMeat_C")
AddItemWhiteList=(ItemClassString="PrimalItemResource_FearsomeBlood_C")
AddItemWhiteList=(ItemClassString="PrimalItemResource_DemonicBlood_C")
AddItemWhiteList=(ItemClassString="PrimalItemResource_DemonicClaw_C")
AddItemWhiteList=(ItemClassString="PrimalItemResource_CelestialBlood_C")
AddItemWhiteList=(ItemClassString="PrimalItemResource_CelestialEssence_C")
AddItemWhiteList=(ItemClassString="PrimalItemResource_DivineBlood_C")
AddItemWhiteList=(ItemClassString="PrimalItemResource_ChaosBlood_C")
AddItemWhiteList=(ItemClassString="PrimalItemResource_ChaosEssence_C")
AddItemWhiteList=(ItemClassString="PrimalItemResource_GodlyBlood_C")
AddItemWhiteList=(ItemClassString="PrimalItemResource_GodlyDust_C")
AddItemWhiteList=(ItemClassString="PrimalItemResource_PFPolymer_C")
AddItemWhiteList=(ItemClassString="PrimalItemResource_PFPaste_C")
AddItemWhiteList=(ItemClassString="PrimalItemResource_PFIngot_C")
AddItemWhiteList=(ItemClassString="PrimalItemResource_PrimeSoul_C")

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.

There are two places to do this:

This is the easiest method for adding 1-5 specific resources. It requires zero coding or INI editing.

Scroll To Top