fix loop
This commit is contained in:
parent
16d875d3e3
commit
69c5c8cb40
@ -1,6 +1,9 @@
|
|||||||
print("You are walking down a road. There is a fork in the road one path leads to the entrance of a cave. the other leads to the enterance of a forest.")
|
print("You are walking down a road. There is a fork in the road one path leads to the entrance of a cave. the other leads to the enterance of a forest.")
|
||||||
|
|
||||||
path = input("Which way do you go? (cave/forest)")
|
path = input("Which way do you go? (cave/forest)")
|
||||||
while path != "cave" or path != "forest":
|
while not (path == "cave" or path == "forest"):
|
||||||
|
path = input("Which way do you go? (cave/forest)")
|
||||||
|
|
||||||
if path == "forest":
|
if path == "forest":
|
||||||
print("You decide to got to the forest enterance")
|
print("You decide to got to the forest enterance")
|
||||||
forest_chioce = input("You enter the forest and see a cub. What do you do (run/investigate)")
|
forest_chioce = input("You enter the forest and see a cub. What do you do (run/investigate)")
|
||||||
@ -38,7 +41,7 @@ while path != "cave" or path != "forest":
|
|||||||
if cave_choice2 == "Sneak out":
|
if cave_choice2 == "Sneak out":
|
||||||
print("You try to sneak out, but you trip over a stone! The wolves then wake up and devour you. THE END")
|
print("You try to sneak out, but you trip over a stone! The wolves then wake up and devour you. THE END")
|
||||||
exit()
|
exit()
|
||||||
elif cave_choice2 != "Play dead":
|
elif cave_choice2 == "Play dead":
|
||||||
print("You play dead and when the wolves wake up they don't notice you allowing you to exscape and return home to safety. THE END")
|
print("You play dead and when the wolves wake up they don't notice you allowing you to exscape and return home to safety. THE END")
|
||||||
exit()
|
exit()
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user