ARK: Survival Evolved

ARK: Survival Evolved

ARK Customizer - Settings Evolved
This topic has been locked
Qowyn  [developer] 15 Oct, 2016 @ 4:59am
Archived: Manipulating items with GameUserSettings.ini
Last update added a new feature that is disabled by default: the ability to change item stats by editing GameUserSettings.ini

How to use

First you have to enable the extended, experimental functionality by going to the ini section [ArkCustomizer] and set bDisabled to false.

Next you might notice ItemEntryCount and InventoryEntryCount. Ignore InventoryEntryCount as thats not fully implemented yet.

ItemEntryCount sets the maximum number of entries you can create. ItemEntries are named
ItemEntry1
to
ItemEntry"ItemEntryCount"
or
ItemEntry100
for the default value.

Each entry uses the following syntax:
ItemEntry1=Field=Value,OtherField=AnotherValue

Lets have a look at a "real example"

[ArkCustomizer] Delay=5.000000 InventoryEntryCount=100 ItemEntry1=ClassName=PrimalItemStructure_WoodWall_C,Weight=0.01,StackSize=1000,SpoilTimer=3600 ItemEntry2=ClassName=PrimalItemConsumable_Berry_Narcoberry_C,StackSize=1000,SpoilTimer=0,Weight=0.01,CustomName=Awesome Berries ItemEntryCount=100 bDisabled=False

Here we have 2 entries, one to change Wooden Walls and one to change Narcoberries.
The Weight of Wooden Walls gets set to 0.01, Stacksize increased to 1000 and they will now spoil after 1 hour.
Narcoberries get renamed to "Awesome Berries", their spoil timer will be remoed and the get the same weight and stack size as the Wooden Walls.

Fields you can set:

ClassName (required)
The same as ItemClassString for ConfigOverrideItemCraftingCosts.

CraftQuantity
The amount of items you get for crafting.

CustomName
Changes the name of the item.

CustomDescription
Changes the description of the item.

Weight
Changes the base weight. This is functional but might behave in a weird way for certain items that use a weight multiplier.

SpoilTimer
Changes the time until this item will spoil, use 0 to remove spoiling.

StackSize
Changes the max size of item stacks.
Last edited by Qowyn; 30 Oct, 2016 @ 10:49am