Crates.io | war-cli |
lib.rs | war-cli |
version | 0.2.0 |
source | src |
created_at | 2019-09-26 20:47:55.148721 |
updated_at | 2019-10-29 01:48:16.614262 |
description | A viewer/editor for Darksiders saves, worlds, and scripts |
homepage | |
repository | https://github.com/whatisaphone/war |
max_upload_size | |
id | 167954 |
size | 52,234 |
A tool that lets you view/edit Darksiders save files and game assets.
Darksiders Warfinitive Edition - All your save game are belong to us!
You can download the latest version from the releases page.
You have a couple options:
View the worlds/scripts online. Nothing to download, nothing to install.
Run war --help
for the full list of options.
Continue reading below for the guided tour.
Which edition of the game do you have?
Your saves should be in a path that looks something like this:
C:\Users\<username>\Documents\My Games\Darksiders\<steam-user-id>\dsauto.dsav
war dsav decode <path-to-dsav>
to decode a save from .dsav
to .json
..json
will have an unpacked version of your save. You can edit this file.war dsav encode <path-to-json>
to encode back to .dsav
.Your saves should be in a path that looks something like this:
C:\Program Files (x86)\Steam\userdata\<steam-user-id>\462780\remote\autocloud\save\keen_savegame_0_0.sav
The file contains all 10 save slots (including the autosave slot), but this tool only reads/writes the autosave slot.
war sav decode <path-to-sav>
to decode the autosave to .json
..json
will have an unpacked version of your save. You can edit this file.war sav encode <path-to-sav> <path-to-json>
to write back to the .sav
. The autosave slot will be overwritten, and the other save slots will be left alone.⚠ NOTE (both editions): Darksiders will refuse to load a save if the SaveGameInfo
's UserId
does not match the logged-in Steam user's ID. If you want to use a save on a different account than created it, the UserId
property must be changed to match.
This app can extract the game's various assets to a readable format. It cannot re-pack them into the original format. These command work just as well on files from both OG and Warmastered.
Most of the game's assets (meshes, textures, audio, etc.) are stored in resource packages (*.oppc
) which are referenced by the manifest (media/pc.mnfst
).
To extract these, point the tool at your game directory (either Darksiders
or Darksiders Warmastered Edition
).
war manifest packages unpack <path-to-Darksiders> <output-dir>
The unpacked files will take up about 17GB (for the Warmastered Edition).
The game's worlds are stored in /path/to/Darksiders/media/worlds.mnfst
. To extract them, run:
war worlds decode <path-to-worlds.mnfst> <output-dir>
See the browse readme for more info on what exactly these files are.
The game's scripts are stored in /path/to/Darksiders/media/scripts.obsp
. To extract them, run:
war obsp decode <path-to-scripts.obsp> <output-dir>
Congratulations, you did it! Now you have several thousand more files on your hard drive. 🎉
pre-commit install
This installs a Git hook that runs a quick sanity check before every commit.
cargo run
cargo test