Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. while True:
  2. if "yes" in action or "enter maze" in action:
  3. print " "
  4. print "You enter the maze"
  5. print "You have the option to keep going straight, turn left or turn right"
  6. print "Straight looks promising, the left looks like its getting darker and a cold breeze is coming from the right"
  7. print " "
  8.  
  9. while True:
  10. action2 = raw_input("Are you going straight, left or right?: ")
  11. if "straight" in action2:
  12. witch()
  13. elif "left" in action2:
  14. deadlyBunny()
  15. elif "right" in action2:
  16. leftTurnAfterStart()
  17. else:
  18. print "Theres no escaping, choose one of the options"
  19. else:
  20. print "You have no choice but to enter the maze, now try again"
  21. action = raw_input("Enter the maze?: ").lower()
  22. return start()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement