-
Notifications
You must be signed in to change notification settings - Fork 25
Modification File
Roland Firmont edited this page Sep 18, 2017
·
4 revisions
Modification files contain a JSON document describing actions that should be performed to manipulate ARK related files.
Example:
{
"addItems": [
{
"className": "PrimalItem_WeaponStonePick_C",
"blueprintGeneratedClass": "/Game/PrimalEarth/CoreBlueprints/Weapons/PrimalItem_WeaponStonePick.PrimalItem_WeaponStonePick_C",
"customName": "Ultimate Stone Pick",
"customDescription": "Be careful where you point this at...",
"durability": 100000.0,
"itemStatsValue_2": -1,
"itemStatsValue_3": -1,
"uploadOffset": 2592000
}
]
}
This file will add a Stone Pick with the name "Ultimate Stone Pick" to the Cluster Inventory of a player. The pick will have full durability and the highest possible stats, while still using the normal resource amount to repair. It will be available to download for 30 days + the Setting of TributeItemExpirationSeconds (default 1 day).
| Field | Datatype | Available for | Description |
|---|---|---|---|
| remapDinoClassNames | Object ("fromClass": "toClass") | Cluster, LocalProfile | Changes the class of uploaded dinos, can be used to "unmod" dinos |
| remapItemArchetypes | Object ("fromClass": "toClass") | Cluster, LocalProfile | Changes the class of uploaded items, can be used to "unmod" items |
| delete | Array of Classnames or DeleteOperation | Cluster, LocalProfile | Deletes all objects of the specified class |
| addItems | Array of ArkItem | Cluster, LocalProfile | Creates new items and adds them to the inventory |