Compare commits
2 Commits
ddf609f958
...
367ad2f1d8
Author | SHA1 | Date | |
---|---|---|---|
367ad2f1d8 | |||
2fce0e5aee |
37
README.md
37
README.md
@ -1,5 +1,36 @@
|
||||
# revolverloader
|
||||
|
||||
A loadout generator for the Sparrows Revolver lockpick tool (https://www.sparrowslockpicks.com/products/the-revolver?srsltid=AfmBOoq4EO-_k1B_qlCRaW7302QfXc17ouuhDeBMjCxqdAZXCjjxBFWz)
|
||||
|
||||
Really, it generates 5 pin locks in sets of 4.
|
||||
A loadout generator for the Sparrows Revolver lockpick tool (https://www.sparrowslockpicks.com/products/the-revolver?srsltid=AfmBOoq4EO-_k1B_qlCRaW7302QfXc17ouuhDeBMjCxqdAZXCjjxBFWz)
|
||||
|
||||
Really, it generates 5 pin locks in sets of 4.
|
||||
|
||||
## Usage
|
||||
|
||||
There are 3 difficulty settings:
|
||||
|
||||
(E)asy is selected with an 'E' and contains standard and spool pins
|
||||
(M)edium is selected with an 'M' and contains Easy plus Serrated and Mushroom pins
|
||||
(H)ard assumes you have, and adds, the Sparrows Check and Ammunition pin sets.
|
||||
|
||||
If you do not select a diffculty, it will print out the default loadout for the revolver.
|
||||
|
||||
run from a terminal on most popular operating systems with python installed:
|
||||
|
||||
```
|
||||
python revolverloader.py
|
||||
```
|
||||
|
||||
|
||||
## Sample Output:
|
||||
|
||||
Sparrows⚿ Revolver Loadout Generator
|
||||
Generates lists of pins for filling the Sparrows⚿ Revolver
|
||||
Hard mode assumes you have the Check and Ammo pin sets from Sparrows⚿
|
||||
Choose Difficulty (Stock), (E)asy, (M)edium, (H)ard:
|
||||
| 1 | 2 | 3 | 4 | 5 | 6 |
|
||||
| Std | Std | Std | Std | Std | X |
|
||||
| Std | Spl | Std | Spl | Std | X |
|
||||
| Std | Serr | Std | Serr | Std | X |
|
||||
| Std | Mshrm | Std | Mshrm | Std | X |
|
||||
Good Luck!
|
||||
|
||||
|
@ -32,6 +32,9 @@ while (pins == []):
|
||||
|
||||
print ("|\t1\t|\t2\t|\t3\t|\t4\t|\t5\t|\t6\t|")
|
||||
for row in range (0, 4):
|
||||
print("|\t" + random.choice(pins) + "\t" + "|\t" + random.choice(pins) + "\t" + "|\t" + random.choice(pins) + "\t" + "|\t" + random.choice(pins) + "\t" + "|\t" + random.choice(pins) + "\t" "|\tX\t|")
|
||||
if choice.upper() == "E":
|
||||
print("|\t" + random.choice(pins) + "\t" + "|\t" + random.choice(pins) + "\t" + "|\t" + random.choice(pins) + "\t" + "|\t" + random.choice(pins) + "\t" + "|\t" + random.choice(pins) + "\t" "|\tX\t|")
|
||||
else:
|
||||
print("|\t" + random.choice(pins) + "\t" + "|\t" + random.choice(pins) + "\t" + "|\t" + random.choice(pins) + "\t" + "|\t" + random.choice(pins) + "\t" + "|\t" + random.choice(pins) + "\t" "|\t" + random.choice(pins) + "\t|")
|
||||
print ("Good Luck!")
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user