You are lost in the woods and you need to find a way out. You can choose three exits. Remember Choose Wisely!
(set:$exit1 to "1")
(set:$exit2 to "2")
(set:$exit3 to "3")
[[Exit1]]
[[Exit 2]]
[[Exit 3]](set:$Choice1 to (num:(prompt:"What is your choice? ","0 or 1")))
(if:$Choice1 is 0)["You get eaten by a bear"]
(else-if:$Choice1 is 1)["They get out of the woods safely"]
[[Beginning of Story]] (set:$Choice2 to (num:(prompt:"What is your choice?","0 or 1")))
(if:$Choice2 is 0)["Get chased by a mountain lion and hits a dead end and you get eaten up"]
(else-if:$Choice2 is 1)["You et chased by a group playing country music and you reach a dead end and they offer you to teach you how to play country music . Yes you live!"]
[[Beginning of Story]] (set:$Choice to (num:(prompt:"What is your choice?","0 or 1")))
(if:$Choice is 0)["You safely made it!"]
(else-if:$Choice is 1)["You will meet Pennywise, Billy, Freddy and Chucky. You know what will happen to you!"]
[[Beginning of Story]]
<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>