aboutsummaryrefslogtreecommitdiff
path: root/srb.py
diff options
context:
space:
mode:
Diffstat (limited to 'srb.py')
-rwxr-xr-xsrb.py14
1 files changed, 10 insertions, 4 deletions
diff --git a/srb.py b/srb.py
index 8fe12bf..4b72330 100755
--- a/srb.py
+++ b/srb.py
@@ -1,15 +1,21 @@
#!/usr/bin/env python3
+# File: srb.py
+# Location: https://bgstack15.ddns.net/cgit/srb_lib
+# Author: bgstack15
+# SPDX-License-Identifier: GPL-3.0-only
# Startdate: 2024-03-08-6 15:28
-# File: srb_lib.py
+# Title: Frontend for savegame editor for Snoopy vs. the Red Baron
+# Project: srb_lib
# Purpose: frontend for srb_lib
# History:
# Usage:
# tl;dr: ./srb.py --profile 1 --unlock-everything --buy-everything "Profile 1.sav"
# Reference:
-# blog posts 2024-03
-# delsum from github
# bgconf.py
-# WORKHERE: still some confusion around the --unlock-everything --lock-everything and the levelset available levels.
+# Improve:
+# still some confusion around the --unlock-everything --lock-everything and the levelset available levels.
+# Documentation: README.md
+# Dependencies:
import srb_lib, argparse, sys
from srb_lib import ferror, debuglev
bgstack15