Advertisement
Guest User

Untitled

a guest
Oct 2nd, 2018
344
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.53 KB | None | 0 0
  1. print('Hello')
  2. UserName = input ('Whats your name:')
  3. print ('Hello' ,UserName)
  4. Age = input ('How old are you?:')
  5. print ('Hello' ,UserName)
  6. print ('You are' ,Age )
  7. print ('Years Old')
  8. Question = input ('Is this :Correct: or is it :Wrong:?')
  9. if Question == 'Correct':
  10. print ('Ok lets get Started')
  11. else:
  12. exit
  13. EastWest = input ('Do You go :East: or :West:?')
  14. if EastWest == 'East':
  15. print ('You go east and see a large River ahead!')
  16. RiverChoice = input ('Do you want to :Cross: the river or go :Around:')
  17. else:
  18. print ('You go west and just as you started your adventure your horse breaks its leg and falls on you, you die......')
  19. exit
  20. import sys
  21. sys.exit("You Die.....")
  22. if RiverChoice == 'Cross':
  23. print ('You tread into the deep water and feel your legs starting to give in and you fall and drown......')
  24. exit
  25. else:
  26. print ('You look for a way around')
  27. print ('You finally found a way arround into a small stream ')
  28. print ('You see a large mountain and a campfire in the stary night')
  29. MegaChoice = input ('Do you go to the :Camp: or :Mountain:')
  30. if MegaChoice == 'Camp':
  31. print ('You go towards the camp and see a band of indians they start shooting at yo and one of the arrows hits your chest and you die.....')
  32. exit
  33. else:
  34. print ('You go toward the mountain')
  35. MountainChoice = input ('Do you want to go up the :Steep: side or the :Slope: side')
  36. if MountainChoice == 'Steep':
  37. print ('You go up the steep side and start to slip you grab on to a rock and slip and fall and tumble down the mountain and die......')
  38. exit
  39. else:
  40. 'You go up the slope and see a river nearby'
  41. PlayerChoice = input ('A person steps before you and asks what your name is do you :Talk: or keep :Going:')
  42. if PlayerChoice == 'Talk':
  43. print ('You talk to the traveler and tell him your name he says that he knows a path and points to a mountain in the distance just before you leave he says farewell',UserName )
  44. else:
  45. ('You pass the traveler and keep going')
  46. print ('Up ahead you see a small town do you want to go to the town or keep going...')
  47. TownChose = input (':Town: :Pass:')
  48. if TownChose == 'Town':
  49. FoodSupplys = input ('You enter the Town and see two shops one shop sells :Supplys: and another sells :Food:')
  50. else:
  51. print ('You pass the town')
  52. if FoodSupplys == 'Supplys':
  53. print ('You go into a supply shop and they have a free dog sign you choose to take the dog with you')
  54. if FoodSupplys == 'Food':
  55. print ('When you go into the food store there is a robery going on and you get in the way you get shot and your eyes slowly close......')
  56. exit
  57. PeopleInput1 = input ('After Leaveing the town you see two figures in the moonlight do you want to go :Near: or :Pass: them?:')
  58. if PeopleInput1 == 'Near':
  59. IndianInput = input ('You decide to go near the people it turns out that they are 2 indians who want to travel with you, Do you want to :Allow: them to go with you or say :No:')
  60. else:
  61. print ('You pass the people in the moonlight')
  62. if IndianInput == 'Allow':
  63. print ('You allow the indians to come with you they might help you later.')
  64. print ('You have been on the trail for a long time time to get some food')
  65. if IndianInput == 'Allow':
  66. print ('The indians decide to help you find food and you pass a large tree that they point out it is a apple tree and you eat your hunger and thirst are quenchd for now')
  67. else:
  68. print ('You are starving and need to get food soon')
  69. if IndianInput == 'No':
  70. print ('You start to starve to where you cant move.....')
  71. exit
  72. else:
  73. print ('You start to go toward the mountain with the indians')
  74. EndTrail = input ('As you look ahead your heart sinks to find that there is A steep :Cliff: that looks like you can go down but it looks very steep you can also choose to try and find a way :Arround: ')
  75. if EndTrail == 'Cliff':
  76. print ('You go towards the cliff and start to go down it is steeper than you relise and your horse falls over but you survive and the indians help you up and you keep going')
  77. else:
  78. print ('You try to find a way around but the sound you hear makes you know you are about to die as you look down at your feet a rattle snake is latched on your leg after about 4 hours of the indians trying to help your vision starts to fail and you die......')
  79. exit
  80. print ('The mountian seems much closer now!')
  81. TrainStationCorrect = input ('You see a :Train: station not very far off or you can :Pass: it')
  82. if TrainStationCorrect == 'Train':
  83. DogFood = input ('You go toward the train station and the station master askes for payment you can give up your :Dog: or some of your :Food:')
  84. else:
  85. print ('You pass the station and see a camp in the distance before you can run a band of indians attack you and kill you and the rival indians you die.......')
  86. exit
  87. if DogFood == 'Dog':
  88. print ('its very sad but you must give up your dog as you board the train the indians leave you')
  89. else:
  90. ('You give up your food as you board the train the indians leave you')
  91. if DogFood == 'Food':
  92. print ('You are starting to starve because you have no food and no one will give you food your get very tired and your eyes shut and you die........ you were so close to the end...')
  93. exit
  94. if DogFood == 'Dog':
  95. print ('You eat your food and feel better as the city comes into view')
  96. print ('You go into the town and you relise it was all worth it you have finished THE TRAIL')
  97. print ('Thanks for playing my first game and stay waiting for the next game THE TRAIL 2 with desesion makeing with 4 choices more advanced people and a much longer story-line :)')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement