安裝 Steam
登入
|
語言
簡體中文
日本語(日文)
한국어(韓文)
ไทย(泰文)
Български(保加利亞文)
Čeština(捷克文)
Dansk(丹麥文)
Deutsch(德文)
English(英文)
Español - España(西班牙文 - 西班牙)
Español - Latinoamérica(西班牙文 - 拉丁美洲)
Ελληνικά(希臘文)
Français(法文)
Italiano(義大利文)
Bahasa Indonesia(印尼語)
Magyar(匈牙利文)
Nederlands(荷蘭文)
Norsk(挪威文)
Polski(波蘭文)
Português(葡萄牙文 - 葡萄牙)
Português - Brasil(葡萄牙文 - 巴西)
Română(羅馬尼亞文)
Русский(俄文)
Suomi(芬蘭文)
Svenska(瑞典文)
Türkçe(土耳其文)
tiếng Việt(越南文)
Українська(烏克蘭文)
回報翻譯問題
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.