Skip to content

Instantly share code, notes, and snippets.

@videlais
Created July 23, 2018 15:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save videlais/601760067964ec230653e1928905e4b1 to your computer and use it in GitHub Desktop.
Save videlais/601760067964ec230653e1928905e4b1 to your computer and use it in GitHub Desktop.
Flag Example
define steps = 0
label start:
"You see a long set of stairs leading up in front of you."
"You begin climing them."
label climbStairs:
if steps >= 4:
jump stairsTop
else:
"The stairs continues upward."
$ steps += 1
menu:
"Climb the steps":
jump climbStairs
label stairsTop:
"You made it to the top of the stairs!"
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment