/DumpIt

Ark Mod that will dump all craft items as json to a url you provide. Also includes a simple nodejs web service that can dump the post to file.

Primary LanguageJavaScriptCreative Commons Zero v1.0 UniversalCC0-1.0

Dump It!

Dump It!

Ark Mod that will dump all craft items as json to a url you provide.

Also includes a simple nodejs web service that can dump the post to file.

Web Svc

Located under /WebSvc.

It is a barebones nodejs web service that will run on http://localhost:5555.

You will need to have NodeJS installed of course!

Run the web svc like any node: adjust path to fit where you have it

C:\> cd Path\To\Repo\DumpIt\WebSvc
C:\Path\To\Repo\DumpIt\WebSvc> node .\dumper.js

Then run the mod in an Ark process on same machine and it will post the dump to the svc.

The web svc will write the dump.json into the WebSvc folder.

Ark Mod

Steam Workshop Link

Located under /ArkMod.

Copy the /ArkMod/DumpIt folder to your /Mods folder in Ark DevKit.

You should open /DumpIt/_1Macros/DumpIt_JsonStructArrayMacros first & save it.

Then you can open /DumpIt/DumpItActor BP. So your kit does not freak over the macro node...

Actor is assigned to PGD singletons array. Once running in game or PIE you can dump data using command below.

Console Command

admincheat scriptcommand dumpit

INI Settings

[DumpIt]
DumpOnStart=False
Minify=False
DumpUrl="http://localhost:5555"
DumpItTimeout=10.0

Example Usage

Using VS Code + DevKit

Using Cmd.exe + DevKit