Advertisement
Sixtion

script

Nov 2nd, 2016
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. function chapterOneTitle()
  2. say "", "Chapter 1"
  3. say "", "Today it snowed."
  4. say "", ""
  5. chapterOneIntro()
  6. end
  7.  
  8. function chapterOneIntro()
  9. say "Narrator", "The Sunkist-light flows striking your bedside wall. With the cold crisp air enriching your lungs as you take a deep breath in."
  10. say "Narrator", "You yawn a warm yawn and walk to your window to see the village."
  11. say "Narrator", "The village was bustling with motion as its villagers went on with their daily business."
  12. say "Narrator", "Farmers and their children tending to their crops as they have done every day."
  13. say "Narrator", "Blacksmiths hammering away in the furnaces as the smoke from the burning wood is billowing upon itself."
  14. say "Narrator", "Everything was as it has been as long as you've been here. Everyone was relishing life as it is given. Though you haven't been here long you have learned to live here since your arrival."
  15. say "Narrator", "A bit off away from the village, up the river is a small lake of sorts. Between is a forest where the lumberjacks are hacking away trees for the upcoming winter."
  16. chapterOneActOne()
  17. end
  18.  
  19. function chapterOneActOne()
  20. say "Narrator", "In the forest you spot someone lying on the floor, injured."
  21. say "Narrator", "She has an arrow in her arm."
  22. say " ", "Quickly, act! What are you going to do!"
  23.  
  24. menu
  25. option "Grab supplies first"
  26. suppliesFirst()
  27. option "Rush to her rescue"
  28. runFirst()
  29. end
  30. end
  31.  
  32. function suppliesFirst()
  33. say "Narrator", ""
  34. end
  35.  
  36. function selectChapter()
  37. menu
  38. option "Chapter One"
  39. say "", ""
  40. chapterOneIntro()
  41. option "Future Chapters Coming Soon!"
  42. end
  43. end
  44.  
  45. say "The Day it Snowed", "Chapter Select!
  46. selectChapter()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement