Skip to content
Permalink
Browse files
a test
  • Loading branch information
rajaa20 committed Oct 8, 2020
2 parents 07efe85 + 5a710c1 commit 9182c6b893301e2d527f9f7c36a1dcabd7f14014
Show file tree
Hide file tree
Showing 4 changed files with 258 additions and 44 deletions.

Some generated files are not rendered by default. Learn more.

Binary file not shown.
@@ -2,30 +2,24 @@ from story import * # parts of the story stored in variables


def starter():
print("As the biggest heist of his life appeared over the horizon,\n"
print("\tAs the biggest heist of his life appeared over the horizon,\n"
"Mark was yet to gather his crew of computer geniuses. As they\n"
"were planning to rob a bank, he would need someone to remotely\n"
"disable the camera, someone to also remotely disable the alarm\n"
"and someone to open the safety vaults. Mark was not willing to\n"
"settle for anything less than the best, so he decided to contact\n"
"an old friend with several contacts in this area. He was given 3\n"
"names, Chris, Ray and LP. These were the best IT geniuses around;\n"
"however, they would take a hefty 10% of the cut each\n"
"\n"
"and someone to open the safety vaults.\n"
"\tMark was not willing to settle for anything less than the best,\n"
"so he decided to contact an old friend with several contacts in\n"
"this area. He was given 3 names, Chris, Ray and LP. These were the\n"
"best IT geniuses around; however, they would take a hefty 10% of the\n""
"cut each\n"

"\n"
"<Chris>\n"
"<Ray> \n"
"<LP> \n"
"<c> <Continue> ")
"<c> to Continue ")

<<<<<<< HEAD
=======
print("This is working ")
print("this is working via pycharm")
print("working for adam ")
print("Working for Eliska")

>>>>>>> bd014a6537ab0efac3a4e37cc2ffb760ba2244ca

while True:
enter = input("").lower()
@@ -40,14 +34,14 @@ def starter():
else:
print("I don't understand, Please enter again:")

print("The crew was assembled, just one piece of the puzzle left to\n"
print("\tThe crew was assembled, just one piece of the puzzle left to\n"
"solve, and that was the getaway car, they wanted something small,\n"
"quick, but covert and un-suspicious. Each gave their own suggestions,\n"
"and in the end, they decided on:\n"
"\n"
"<a>an old Ford Transit van\n"
"<b>an old army style Range-Rover\n"
"<c> Continue")
"<c> to Continue")

while True:
enter = input("").lower()
@@ -61,9 +55,9 @@ def starter():
print("I don't understand, Please enter again:")

print(paragraph7)
print('<a>small banks\n'
'<b>bigger plan\n'
'<c> Continue>')
print('<a> small banks\n'
'<b> bigger plan\n'
'<c> to Continue')

while True:
enter = input("").lower()
@@ -104,7 +98,7 @@ def starter():
print("I don't understand, Please enter again:")

print(paragraph14)
print("<n>Next")
print("<n> Next")

while True:
enter = input("").lower()
@@ -115,16 +109,16 @@ def starter():
print("I don't understand, Please enter again:")

print(paragraph15)
print("<a>To start attack\n"
"<b>what is spear-phishing")
print("<a> To start attack\n"
"<b> what is spear-phishing")

while True:
enter = input("").lower()
if enter == "a":
break
elif enter == "b":
print(paragraph16)
print("<c>Continue")
print("<c> to Continue")
while True:
enter = input("").lower()
if enter == "c":
@@ -135,7 +129,7 @@ def starter():
print("I don't understand, Please enter again:")

print(paragraph17)
print("<n>Next")
print("<n> Next")

while True:
enter = input("").lower()
@@ -145,7 +139,7 @@ def starter():
print("I don't understand, Please enter again:")

print(paragraph18)
print("<n>Next")
print("<n> Next")

while True:
enter = input("").lower()
@@ -161,7 +155,7 @@ def starter():
"Ray\n"
"Ray's friend\n"
"LP\n"
"<c>Continue")
"<c> to Continue")

while True:
enter = input("").lower()

0 comments on commit 9182c6b

Please sign in to comment.