(set: $name to (prompt: "what is your name?", "Player"))
Hello and welcome TEST SUBJECT 3879 or $name
May we [[begin]](set: $height to (prompt: "what is your height? short, medium, or tall", "height"))
now that we have your size for...things... we can [[continue]]
(if: $height is "tall") [Perfect! I see that you are tall! Grab me that can off the top shelf please]
(if: $height is "short") [Yikes shorty, maybe you should have hung off the monkey bars a little more as a child]
(if: $height is "medium") [Ah a mid sized individual. Almost there, but not quite, maybe youre better at more grounded activities like...sweeping! Have fun...........]
<script>
function EmbedTwineUpdateHeight(){
var passage = document.getElementsByTagName("tw-passage")[0];
if (passage === undefined){//SugarCube
passage = document.getElementById("passages");
}
var newHeight = passage.offsetHeight;
if(newHeight<500){newHeight=500;}
window.parent.postMessage(["setHeight", newHeight], "*");
console.log(newHeight);
}
setTimeout(EmbedTwineUpdateHeight, 50);
</script>