Compare commits
No commits in common. "367ad2f1d8c10b503ac797f0fadf59ead8e00a06" and "ddf609f9585017afc87fdf8f5af7a49e02c73d68" have entirely different histories.
367ad2f1d8
...
ddf609f958
37
README.md
37
README.md
@ -1,36 +1,5 @@
|
|||||||
# revolverloader
|
# revolverloader
|
||||||
|
|
||||||
A loadout generator for the Sparrows Revolver lockpick tool (https://www.sparrowslockpicks.com/products/the-revolver?srsltid=AfmBOoq4EO-_k1B_qlCRaW7302QfXc17ouuhDeBMjCxqdAZXCjjxBFWz)
|
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.
|
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,9 +32,6 @@ while (pins == []):
|
|||||||
|
|
||||||
print ("|\t1\t|\t2\t|\t3\t|\t4\t|\t5\t|\t6\t|")
|
print ("|\t1\t|\t2\t|\t3\t|\t4\t|\t5\t|\t6\t|")
|
||||||
for row in range (0, 4):
|
for row in range (0, 4):
|
||||||
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|")
|
||||||
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!")
|
print ("Good Luck!")
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user