https://github.com/fmonniot/pathfinder-wotr-editor
https://github.com/fmonniot/pathfinder-wotr-editor
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fmonniot/pathfinder-wotr-editor
- Owner: fmonniot
- Created: 2020-07-11T00:26:15.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-10-23T12:27:30.000Z (9 months ago)
- Last Synced: 2024-10-23T19:52:55.249Z (9 months ago)
- Language: Rust
- Size: 4.78 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pathfinder Wrath of the Righteous Editor
An editor for your save games, because sometime you don't want to play by the rules.
## Using the application
### Pre-compiled
Download the latest binary from the [release section](https://github.com/fmonniot/pathfinder-wotr-editor/releases). We currently build only the Windows version, as the game isn't released on other platform as of now.
### From source
If you prefer to compile the application yourself, you should have a working rust environment, clone this repository and then use `cargo build --release` (we do not recommend using the debug version, as it is much slower).
### Usage
Once you have the binary, you can simply execute it to open the application. You'll be asked to select a save game.
If you already know the path to the save game, you can bypass the save selection screen and directly open it by using `pathfinder-wotr-editor /path/to/save.zks`.
If you encounter a bug and want to report it here, please run the executable with the logs enabled.
With bash:
```
RUST_LOG=pathfinder_wotr_editor=debug pathfinder-wotr-editor
```Or with PowerShell:
```
$env:RUST_LOG="pathfinder_wotr_editor=debug"
pathfinder-wotr-editor
```