Skip to content
Permalink
Browse files
remotes/origin/emily
Please work I just want the grammar changes to go through
  • Loading branch information
Emily Lycett committed Oct 2, 2020
1 parent f814be8 commit 6348c8500f9fbf325dd8a49a069c46493660be07
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
BIN +0 Bytes (100%) .vs/slnx.sqlite
Binary file not shown.
@@ -0,0 +1,33 @@

#Module formatting into story dictionary, 0:text where 0 is the index number of the module and text is the text of the module. \n=linebreak
story={0:"You are reading a magazine. The phone rings.\n (1)Continue reading the magazine and ignore the call \n (2)Inspect the room \n (3)You pick up the phone", 1:"[{You pick up the phone section}]", 2:"hi", 3:"OOOP", 4: "AAAAAA"}
y = 0
moduleProgressList = []

while True:
if y > -1:
moduleProgressList.append(y) #Adds the current module to the list of travelled modules
text = story[y]
print(text) #Displays module text based on y value recieved
x = input("Your choice is...")
if x.isdigit() == False: #This determines whether the value input is a digit
while x.isdigit() ==False:
print("This is an invalid input")
x = input("Your choice is...")
choiceNumber = int(x)
y = choiceNumber #y is the target module as chosen by the user input
else:
while y != int or ( y < 0):
print("This is an invalid input")
x = input("Your choice is...")
if x.isdigit() == False:
while x.isdigit() ==False:
print("This is an invalid input")
x = input("Your choice is...")
choiceNumber = int(x)
y = choiceNumber #This ensures that only valid numbers





0 comments on commit 6348c85

Please sign in to comment.