diff options
author | B. Stack <bgstack15@gmail.com> | 2024-03-20 11:16:17 -0400 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2024-03-20 11:16:17 -0400 |
commit | a3d9784a0f57859c30c8d09209b7eb884ad4c861 (patch) | |
tree | 92edf5a0b6aba264d468e4d616c8f488f7128756 /README.md | |
parent | add readme (diff) | |
download | srb_lib-a3d9784a0f57859c30c8d09209b7eb884ad4c861.tar.gz srb_lib-a3d9784a0f57859c30c8d09209b7eb884ad4c861.tar.bz2 srb_lib-a3d9784a0f57859c30c8d09209b7eb884ad4c861.zip |
fix docs, use unsigned int in data operations
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -14,7 +14,7 @@ --> # README for Savegame Editor for Snoopy vs. the Red Baron -Modify an existing savegame file for the PC game [Snoopy vs. the Red Baron (2006)](https://en.wikipedia.org/wiki/Snoopy_vs._the_Red_Baron_(video_game). +Modify an existing savegame file for the PC game [Snoopy vs. the Red Baron (2006)](https://en.wikipedia.org/wiki/Snoopy_vs._the_Red_Baron_(video_game)). # tl;dr @@ -36,10 +36,11 @@ Some common examples. ./srb.py --profile 1 --set-name "newname" --file "Profile 1.sav" ./srb.py --profile 1 --set-money 10000 --file "Profile 1.sav" - ./srb.py --profile 1 --set-level 5,done --file "Profile 1.sav" + ./srb.py --profile 1 --set-level 5,all --file "Profile 1.sav" + ./srb.py --profile 1 --set-level 6,none --file "Profile 1.sav" ./srb.py --profile 1 --set-health 4 --file "Profile 1.sav" -Note that `--set-level 5,done` operates three separate parameters that could be done individually: +Note that `--set-level 5,all` operates three separate parameters that could be done individually: --set-level-status 5,general --set-level-balloons 5,all |