diff options
Diffstat (limited to 'srb.py')
-rwxr-xr-x | srb.py | 12 |
1 files changed, 3 insertions, 9 deletions
@@ -9,16 +9,10 @@ # delsum from github # bgconf.py -# WORKHERE: right now, this only just corrects any file. in the future, offer options like --profile 1 --set-money 3045 --give-plane all or --give-plane marcie -# or --take-plan marcie or --set-rank-level 1,general --set-rank-level 1,none --set-rank-level all,general -# or --give-weapon pumpkin --take-weapon bees +# WORKHERE: right now, this only just corrects any file. in the future, offer options like --take-plane all or --give-plane marcie +# or --give-plane marcie or --set-rank-level 1,general --set-rank-level 1,none --set-rank-level all,general # or --give-balloons-level 10 --take-balloons-level 11 -# make chart of level numbers, which ones have balloons # or --reset-level 5 (which zeros out all info about completion of that level) -# --set-plane-health 1 (through 4) -# --set-plane-weapon 1 (through 5) -# --set-plane-stunt 1 (through 4) -# --set-profile-name "asdbdf" import srb_lib, argparse, sys from srb_lib import ferror, debuglev @@ -47,7 +41,7 @@ parser.add_argument("--get-weapon",action="store_true",help="Print currently equ parser.add_argument("--set-weapon",help="Set currently equipped weapon for profile.") parser.add_argument("--get-purchased-weapons",action="store_true",help="Print currently purchased weapon for profile.") parser.add_argument("--add-purchased-weapons",action="append",help="For profile, add these purchased weapons. Can be used multiple times.") -parser.add_argument("--remove-purchased-weapons",action="append",help="For profile, add these purchased weapons. Can be used multiple times.") +parser.add_argument("--remove-purchased-weapons",action="append",help="For profile, remove (un-buy) these purchased weapons. Can be used multiple times.") parser.add_argument("--get-level",help="Print status for this level for profile.") parser.add_argument("--get-levelset",help="Print status for this levelset for profile.") parser.add_argument("--get-name",action="store_true",help="Print name for profile.") |