• Rewind
  • Restart
  • Bookmark
  • This story was created with Twine and is powered by TiddlyWiki
\n\nYou choose to enter the begining door.\n\n\nYou have to restart.\n\n\n[[You begin again|Death]]
\nYou marry the king's daughter and within 12 months your killed by the king's uncle. He has rights to the thrown and gets it!\n\n\n\n\nYou die!
\n\n\n You choose to enter the death door and investigate the noise.\n\nIt's a talking tree there asking you for a answer to his riddle.\n\n\n\nI refeshen you, I make up lots of space, and form to whatever I'm poured in, what am I?\n\n\n\n[[oil]]\n\n[[water]]
\n\nYou take a last strike against Lord Slither. Since your tired your very clumsy and miss, the Evl King kills you.\n\n\n\n\nYOU LOSE!\n\nYOU DIE!
\n\nYou tell the man that you can make the Hawk chase the mouse. You cut your finger and smear it on th shoulder of the man.\n\nThe Hawk doesn't move at all.\n\n\nThe man of order just laughs...\n\nYou were tricked, it was an illusion. The Hawk is another mouse on his shoulder. \n\nYOU FAILED!!\n-------------------------------------------------------------------\n\n\n[[Repaly|Start]]\n
\n\nYou enter the liar of Lord Slither. He has Princess Angela tied up to a chair behid him. In front of him are three guards protecting him, what do you do to defeat them?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[[You use a medieval sword to defeat them.]]\n\n[[You use a potion to kill them.]]\n
The old man takes you turn after turn, through the maze.\n\nYou approach two doors. One red and one blue.\n\nBehind the Red door is noise a sign named Death.\n\nBehind the Blue door is no noise and a sign named Begining.\n\n\nWhich one will you choose?\n\n\n[[Death]]\n\n[[Begining]]
\nYou can't revive him to retrieve the information about the maze.\n\nYou check the old man's pulse, he's dead!\n\n-------------------------------------------------------------------\n\n\n\n[[Replay|Start]]
\n\nYou and the two stable hands tell him that Questian steel is the best steel of all time.\n\n\nThe mercenary agrees and chooses to fight you. He wounds you all because he's a master swordsman.\n\n\n\nYou fail!\n-------------------------------------------------------------------\n\n[[Replay|Start]] \n\n\n
\nYou threaten information out of him. \n\n\n\n[[you went too far, he passes out from the beating]]\n\n\n[[ you beat him a little, he gives you a map]]\n\n
\nYou all give the mercenary the answer,"arabian horses are the best to breed."\n\n\nThe mercenary agrees and remembers his favorite horse named, \nSaint PAUL. He was a arabian horse.\n\nHe breaks down and gives you two horses.\n\n\n\n\n[[You'll move forward to the third level.]]
\n\nYou enter the liar of Lord Slither. He has Princess Angela tied up to a chair behid him. In front of him are three guards protecting him, what do you do to defeat them?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n[[You use a medieval sword to defeat them.]]\n\n[[You use a potion to kill them.]]\n
\nYou face Lord Slither with the Princess Angela watching closely with her mouth gaged.\n\n\nYou fight Slither sword to sword to a stand still. Your tired, how do you beat him?\n\n\n[[You drop your sword and give up.]] \n\n\n\n[[You take the last charge at him]]
\n\nThis choice kills his man, you loose the game.\n\n\n-------------------------------------------------------------------\n\nYOU FAILED AND DIE!
\n version.extensions['soundMacros'] = {\n major: 1,\n minor: 1,\n revision: 2\n };\n var p = macros['playsound'] = {\n soundtracks: {},\n handler: function (a, b, c, d) {\n var loop = function (m) {\n if (m.loop == undefined) {\n m.loopfn = function () {\n this.play();\n };\n m.addEventListener('ended', m.loopfn, 0);\n } else m.loop = true;\n m.play();\n };\n var s = eval(d.fullArgs());\n if (s) {\n s = s.toString();\n var m = this.soundtracks[s.slice(0, s.lastIndexOf("."))];\n if (m) {\n if (b == "playsound") {\n m.play();\n } else if (b == "loopsound") {\n loop(m);\n } else if (b == "pausesound") {\n m.pause();\n } else if (b == "unloopsound") {\n if (m.loop != undefined) {\n m.loop = false;\n } else if (m.loopfn) {\n m.removeEventListener('ended', m.loopfn);\n delete m.loopfn;\n }\n } else if (b == "stopsound") {\n m.pause();\n m.currentTime = 0;\n } else if (b == "fadeoutsound" || b == "fadeinsound") {\n if (m.interval) clearInterval(m.interval);\n if (b == "fadeinsound") {\n if (m.currentTime>0) return;\n m.volume = 0;\n loop(m);\n } else {\n if (!m.currentTime) return;\n m.play();\n }\n var v = m.volume;\n m.interval = setInterval(function () {\n v = Math.min(1, Math.max(0, v + 0.005 * (b == "fadeinsound" ? 1 : -1)));\n m.volume = Math.easeInOut(v);\n if (v == 0 || v == 1) clearInterval(m.interval);\n if (v == 0) {\n m.pause();\n m.currentTime = 0;\n m.volume = 1;\n }\n }, 10);\n }\n }\n }\n }\n }\n macros['fadeinsound'] = p;\n macros['fadeoutsound'] = p;\n macros['unloopsound'] = p;\n macros['loopsound'] = p;\n macros['pausesound'] = p;\n macros['stopsound'] = p;\n macros['stopallsound'] = {\n handler: function () {\n var s = macros.playsound.soundtracks;\n for (var j in s) {\n\t\tif (s.hasOwnProperty(j)) {\n s[j].pause();\n if (s[j].currentTime) {\n\t\t s[j].currentTime = 0;\n\t\t }\n\t\t}\n }\n }\n }\n var div = document.getElementById("storeArea").firstChild;\n var fe = ["ogg", "mp3", "wav", "webm"];\n while (div) {\n var b = String.fromCharCode(92);\n var q = '"';\n var re = "['" + q + "]([^" + q + "']*?)" + b + ".(ogg|mp3|wav|webm)['" + q + "]";\n k(new RegExp(re, "gi"));\n div = div.nextSibling;\n }\n\n function k(c, e) {\n do {\n var d = c.exec(div.innerHTML);\n if (d) {\n var a = new Audio();\n if (a.canPlayType) {\n for (var i = -1; i < fe.length; i += 1) {\n if (i >= 0) d[2] = fe[i];\n if (a.canPlayType("audio/" + d[2])) break;\n }\n if (i < fe.length) {\n a.setAttribute("src", d[1] + "." + d[2]);\n a.interval = null;\n macros.playsound.soundtracks[d[1]] = a;\n } else console.log("Browser can't play '" + d[1] + "'");\n }\n }\n } while (d);\n }\n}());
\n\n\n\n<<Playsound "Great.mp3">>
\n\nThe giant tree opens his limbs to the left side and reveals a cave of oil.\n\nYou swim through the oil and you get pulled under.\n\n\nYou die!\n\n\n[[Replay|Start]]
\nYou and the two stable boys approach a door and meets an old man chained up there.\n\n\n\n\n[[You free him]]\n\n[[you threaten information out of him kill]]\n\n\n
\n\nYou and the two stable boys beat the old man real bad.\n\nYou lost the game\n-------------------------------------------------------------------\n\n\n\n[[Replay|Start]]
\nYou appoach the third level with the two stabl boys and face two hooded men of the order seated at an table that are playing chess. They're game is gridlocked.\n\n\n[[The white hooded man wants answers to win]]\n\n[[The black hooded man wants answers to win]]\n
\n\nYou all taste the mercenary's cooking. It's kind of bland, so you tell him two add some leaf-root for flavor.\n\n\nHe adds some leaf-root and some poison for you to taste.\n\n\n\n\nYou've all failed.\n\nYOU ALL DIE!
\nYou made the choice yourself and tye other two stable boys cross their fingers on the choice that you've made.\n\n\nYou choose to pick the kight to draw out his enemies man.\n\n\nYou've won!\n\n\n[[you move forward to the King Slithers level]]
\nYou tell the other two stable hands that you'll make the decision. You circle both men and look over the chess table.\n\n\n\n\n\n\n\n\n\n[[You can choose to pick your rook to kill his King.]]\n\n\n[[You can choose to pick the knight to draw out the queen.]]\n\n\n
\n\nThe giant tree opens its limbs to the right and you enter a cave full of water.\n\nYou jump in and swim through seaweed, wood, and quicksand.\n\n\n\n\n\n\n\n\n[[You swim to the second level]]
\nAt the brink of death, the old man gives you a map through the maze.\n\n\nYou encounter two doors half way through the maze.\n\n\n\n\n[[Red door is the real door, you advance|Death]]\n\n\n\n[[Blue door is a trap|Begining]]
\n\n\n\n\n\nYou take the bounty and leave the kingdom for great new adventures.\n\n\nYou live a long life and have a wife and kids. You tell them about your adventures and stories.
\nYou reach a circle room with two hooded man of the order are seated and waiting for you.\n\n\none man is performing a spell in front of a bowl. But the spell wouldn't work. He wants answers.\n\nThe other man has a hawk on his shoulder talking to it. He wanted the hawk to catch a mouse in the corner, but it wouldn't budge.\nHe wants answers.\n\n\n\n[[you choose to answer the man with the potion]]\n\n[[you choose to answer the man with the Hawk]]\n\n\n\n\n\n\n\n\n
You quickly take out your sword and battle all three men. You kill the first with a thrust to his chest. The second guard wounds your sword arm but you kill him too!\n\n\n\nBut the third guard gets the best of you and kills you, because your wounded and tired before you face him.\n\n\nYOU DIE!
\n\nThe old man takes you through turn after turn and you make it through the maze to the second level.\n\n\n\n\nYou approach three mercenaries on the grasslands ready for battle.\n\nThey're cooking fresh animal kill over a fire. They all discuss if they should kill of you or not. They have questions for you all.\n\n\nYou must answer one of them, which one wil you answer?\n\n\n[[one mercenary that cooks wants some herbs]]\n\n[[one mercenary that sharpens his sword, wants to know whats the best metal]]\n\n[[one mercenary that brushes the horse, wants to know whats the best horse to breed]]\n
In THE Kingdom of Ithca, the King's duaghter Angela was kidnapped. The King's men posted flyers everywhere asking for someone to rescue her. Your a stable hand named Shawn. You choose to rescue his daughter from the evil villian Slither. \n\n\n\n\n[[You can choose to be the hero and go on the journey alone ]]\n\n[[You can choose to get the help of two stable boys]]
\n\nYou quickly take out your potions and smash them before the three guards. They enhale the smoke and die instantly.\n\n\n\n[[You move forward to face Lord Slither]]
\nWhen you drop your sword, Lord Slither gets overconfident.He approaches you and when he leaves him self open, you take out a hidden dagger and kill him.\n\n\nYou untie Princess Angela and return he to the Kingdom. After you return her what will you do.\n\n\n\n\n\n[[You marry her and rule as the King's son-in-law]]\n\n[[You recieve the bounty; land, gold, and weapon.You leave]]
\n\nYou choose the right answer but the man of order doesn't loisten to you!\n\n\n-------------------------------------------------------------------\n\n\n[[Replay|Start]]
\nYou look on the table that the man has made the potions and there are too many herbs and items that he poured into the bowl.\n\nYou tell him to take away the wood, french perch, and wheat. The potion works.\n\n\n\n[[You move to the final round]]
\n\nSound\n\n\n<<loopsound "Won.mp3">>
\nYou delibrate with the two stable boys and you've chosen the white man of order at the chess board. You let the other stable boy answer.\n\n\n\n\n\n\n\n[[You can choose to pick your rook to kill his King.]]\n\n\n[[You can choose to pick your knight to draw out the queen.]]\n\n
\n\n\n<<loopsound "Kazoo.mp3">>
You reach a door with a old man and hes's chained up.\n\n\n\n[[free the old man.]]\n\n\n[[you theaten information out of him]]