Tree Climbing use menus to add choices to your story
Create a game with choices, where the player can decide how the story turns out! Each page of your story is a function. Each choice in your story is a menu.
Expand the Story using more lines
Try changing the story - make it more exciting, or totally different!
Hide the turtle to focus on your story
You can hide the turtle with the command "do ht" (ht stands for "hide turtle").
More Ideas
bottom = ->
write "You are in a field with a tree."
menu
"climb up": middle
middle = ->
write "You are hanging on to a branch."
menu
"climb up": top
"climb down": bottom
top = ->
write "You are sitting high in a tree."
menu
"climb down": middle
"jump off": bottom
write """
"""
do bottom