Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fmonniot/pathfinder-wotr-editor
https://github.com/fmonniot/pathfinder-wotr-editor
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/fmonniot/pathfinder-wotr-editor
- Owner: fmonniot
- Created: 2020-07-11T00:26:15.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-09-17T16:04:54.000Z (about 2 months ago)
- Last Synced: 2024-09-17T20:12:50.226Z (about 2 months ago)
- Language: Rust
- Size: 4.47 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 6
-
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
```