27
loading...
This website collects cookies to deliver better user experience
# Defines the characters in the story
define p = Character("[p]", who_color = "#fff")
define j = Character("Jane", who_color = "#333")
$p = renpy.input("What is your name?", "Max", length=15)
$p = p.strip()
label start:
p "Hey Jane, how was the test last week?"
j "It was rough. I struggled through it, can't believe we have another test next week."
p "How about we get together and study for it."
j "That sounds great!"
return
menu study_locations:
"Where should we go to study?"
"The library":
p "We can go to the library."
"Jane's House":
p "How about we study at your place?"
"My House":
p "Let's go to my place and study for the quiz."