Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Pinned discussion "Everything you need to know". Followed by "Spawn codes".
This document contains all engram, and item ID's. These are what you will use for engram, or crafting overrides.
As an FYI though, you dont need some precompiled list of ID's to do this.
They are literally based on the file/folder names in your game/mod files.
Assuming the mod author followed best practice...
Engrams start with EngramEntry.
Items start with PrimalItem/PrimalStructure/etc.
You need to drop the *.uasset from the file names. And typically add an _C if working with "classes". But you should be fine as long as you keep the examples on one screen whilst you're working on your config.
ConfigOverrideItemCraftingCosts=(ItemClassString="PrimalItemStructure_WHATDOIPUTHERE_C",BaseCraftingResourceRequirements=((ResourceItemTypeString="PrimalItemResource_BlackPearl_C",BaseResourceRequirement=4.0,bCraftingRequireExactResourceType=false),(ResourceItemTypeString="PrimalItemResource_Crystal_C",BaseResourceRequirement=75.0,bCraftingRequireExactResourceType=false),(ResourceItemTypeString="PrimalItemResource_Element_C",BaseResourceRequirement=3.0,bCraftingRequireExactResourceType=false),(ResourceItemTypeString="PrimalItemResource_MetalIngot_C",BaseResourceRequirement=125.0,bCraftingRequireExactResourceType=false),(ResourceItemTypeString="PrimalItemResource_Polymer_C",BaseResourceRequirement=55.0,bCraftingRequireExactResourceType=false)))
ItemClassString seems to be what identifies it, but I can't find that string for the SS Tek Dedicated Storage. The best I can find is the blueprint path: /Game/Mods/StructuresPlusMod/Misc/DedicatedStorage/PrimalItemStructure_DedicatedStorageSP.PrimalItemStructure_DedicatedStorageSP
I got that path from this page: https://usebeacon.app/spawn/?mod_id=397741a2-b35c-46a0-8cb0-1b61ff7d3d29
Is there an ItemClassString listed somewhere that I'm missing?
This page has a link to EngramOverrides, which has some limited info on how to find the correct ItemClassString by searching through the mod folder:
https://steamhost.cn/steamcommunity_com/workshop/filedetails/discussion/1999447172/3896114028903653079/
This page has the Game.ini setting you want to use:
https://ark.fandom.com/wiki/Server_configuration#ConfigOverrideItemCraftingCosts
This page has a nice generator to create (most) of the entry for you:
http://www.nipiro.de/ark_generator.php?sk=6
So (I think) the complete line is:
ConfigOverrideItemCraftingCosts=(ItemClassString="EngramEntry_DedicatedStorageSP",BaseCraftingResourceRequirements=((ResourceItemTypeString="PrimalItemResource_BlackPearl_C",BaseResourceRequirement=4.0,bCraftingRequireExactResourceType=false),(ResourceItemTypeString="PrimalItemResource_Crystal_C",BaseResourceRequirement=75.0,bCraftingRequireExactResourceType=false),(ResourceItemTypeString="PrimalItemResource_Element_C",BaseResourceRequirement=3.0,bCraftingRequireExactResourceType=false),(ResourceItemTypeString="PrimalItemResource_MetalIngot_C",BaseResourceRequirement=125.0,bCraftingRequireExactResourceType=false),(ResourceItemTypeString="PrimalItemResource_Polymer_C",BaseResourceRequirement=55.0,bCraftingRequireExactResourceType=false)))
@Zerassar, thanks for the pointers.