Advertisement
Guest User

Fixed Script

a guest
May 1st, 2013
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.65 KB | None | 0 0
  1.  
  2. n "Oohh...Hello there and welcome to Nichijo Seikatsu."
  3. n "Before we get started, can I please know some basic information?"
  4.  
  5. menu:
  6. "Are you male or Female?"
  7. "Male":
  8. $ character = "M"
  9. "Female":
  10. $ character = "F"
  11.  
  12. if character == "M":
  13. n "Great so your Male, What is your name?"
  14. $ p = renpy.input("My name is", "",length=20,)
  15. if p == "":
  16. $ p = "Nichijo"
  17. n "It's a pleaser to meet you, %(p)s!."
  18. p "It's nice to meet you too!"
  19. n "I hope you enjoy the avdenture, you are about to experiance."
  20. n "Let us begin, It all started...."
  21.  
  22.  
  23. if character == "F":
  24. n "Ohh so your Female, What is your name?"
  25. $ p = renpy.input("My name is", "",length=20,)
  26. if p == "":
  27. $ p = "Nagisa"
  28. n "It's a pleaser to meet you, %(p)s!."
  29. p "It's nice to meet you too!"
  30. n "I hope you enjoy the avdenture, you are about to experiance."
  31. n "Let us begin, It all started...."
  32.  
  33. #PROLOGUE
  34.  
  35. if character == "M":
  36. scene Nightmare Pan at Pan((0, 0), (1600, 0), 40.0) with fade
  37. play music "Loneliness.mp3"
  38. "Just like the pervious night, I'm faced with the same night sky I've seen countless times before."
  39. "I wish just once it would be somewhere else or something different."
  40. "Like always I have no control over any of my senses apart from Sight. All I can do was watch."
  41. "Watch as the night sky shun so brightly as it eluds me."
  42. "Will the day ever come when this dream, born of confusion, will end?"
  43. "A scattered dream that’s like a far off memory."
  44. "A far off memory that’s like a scattered dream."
  45. "I wonder Is it different things to different people, Can the reality be that which is hidden?"
  46. p "Have you ever felt like you where drowning? In a moment suspended in time? A dream or reality?"
  47. p "I want to escape from this nightmare, but how can I go forward when I don't know which way I'm facing?"
  48. p "Is any of this for real or not?"
  49. "This is the story of my life and these are the lies I have created."
  50. "It's such a beautiful lie and the perfect denial."
  51. stop music
  52. else:
  53. scene Dream Pan at Pan((0, 0), (1600, 0), 40.0) with fade
  54. p "What is this strange vision?"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement