aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2024-03-20 11:16:17 -0400
committerB. Stack <bgstack15@gmail.com>2024-03-20 11:16:17 -0400
commita3d9784a0f57859c30c8d09209b7eb884ad4c861 (patch)
tree92edf5a0b6aba264d468e4d616c8f488f7128756 /README.md
parentadd readme (diff)
downloadsrb_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.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/README.md b/README.md
index 44c2d90..f5fbf5a 100644
--- a/README.md
+++ b/README.md
@@ -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
bgstack15