Skip to content
Permalink
Browse files
Merge pull request #4 from sherrind/giggs
Giggs
  • Loading branch information
fergusonr committed Oct 9, 2020
2 parents 7b10131 + b3a7339 commit 82022a846239ce4ab6f7b12604ec3ac45451c4f5
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 25 deletions.
@@ -78,26 +78,20 @@ def dansStory():
Ans6 = input("""Are you going to\n1)'risk your life to save your brother'\n2)'stay where you are and keep holding onto safety'\n""")
print("")
print("After the decision...")
dansStory()
#dansStory()

# gigs starts

import story
import os
import msvcrt as m
# the logic for the sotry...

# help function to display more informating about links in the story

# get user input

# clear the screen
def clear():
print('\nPress enter to continue')
m.getch()
os.system('cls')


# main
def main():
print(story.chairStory)
@@ -111,16 +105,22 @@ def main():
print(story.sept)
else:
pass
clear()
print(story.decision)
a = int(input('Please select 1 or 2...'))
if a == 1:
print(story.leave)
elif a == 2:
print(story.back)
isNumber = False
while isNumber == False:
try:
clear()
print(story.decision)
a = int(input('Please select 1 or 2...'))
if a == 1:
print(story.leave)
elif a == 2:
print(story.back)
isNumber = True
except ValueError:
pass
print(story.decision2)
print(story.con)
main()
#main()

# joel
next=False
@@ -147,8 +147,6 @@ while next==False:
print("\nPlease ensure the correct number is entered.")
#makes sure choice is valid



#mateuszs code
# Put story into here
#Mateusz code
@@ -181,7 +179,7 @@ def views():
elif go_to == '5' and 'park[5]' in places:
print('\nHe travelled to Ueno Park and zoo. The greenery was astoundingly serene, covering the whole park. The zoo was filled with animals from all around the globe including polar bears, African elephants and camels.')
places.remove('park[5]')
views()
#views()


###----ENDING----joel###
BIN +244 Bytes (100%) __pycache__/story.cpython-38.pyc
Binary file not shown.
@@ -33,7 +33,7 @@ chairStory = '''
'''

#links to other pages
# black holographic screen - screen
# black holographic screen - screen
screen ='''
A holographic screen is a two dimensional display technology that uses coated
glass media for the projection surface of a video projector.
@@ -96,7 +96,6 @@ leave = '''
Enjoy a luxurious life years to come. Evolve and live better and advanced life without family.
Always having the guilt of leaving the family in other era.'''


# conclusion

con = '''
@@ -115,13 +114,9 @@ con = '''
He then travells again...
'''



context = '''
would you like to find out anymore information about any of the following?
A) The Screen B) Time Travel
c) 19th Of September D) Continue With The Choice
'''


'''

0 comments on commit 82022a8

Please sign in to comment.