Skip to content

Instantly share code, notes, and snippets.

@hoverbird
Created January 28, 2012 21:52
Show Gist options
  • Save hoverbird/1695875 to your computer and use it in GitHub Desktop.
Save hoverbird/1695875 to your computer and use it in GitHub Desktop.
simple convo
{
"name": "What are you doing here? Do you have clearance to pick apples in this orchard?",
"children": [
{
"name": "Yes",
"children": [
{
"name": "Let's see some ID.",
"exitEvent": "checkID"
}
],
},
{
"name": "Be silent.",
"children": [
{
"name": "Won't talk, eh? Into the brig with you!",
"exitEvent": ["movePlayer", "jailHouse"]
}
]
},
{
"name": "No",
"children": [
{
"name": "Scram, kid!",
"exitEvent": null
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment