Blue Room
You find yourself in a square room, with blue walls and floor. A [[door->Intersection]] lies directly in front of you, and a [[statue->Blue Statue]], behind you.Intersection
You're in the middle of a white intersection. You see a [[door->Room 3]] in front of you, another one to the [[left->Room 2]], one to the [[right->Room 4]], and one [[behind you->Room 1]].
Before your feet, you see a [[stone pannel]] with five lines of text, that are engraved above a rudimentary keypad that allows you to input four numbers.Blue Room
A tall marble statue stands from the ground. The lighting paints it blue. The statue's right hand is up. The number //7// is carved on its palm.Purple Room
You find yourself in a hexagonal room, with purple walls and floor. A [[door->Intersection]] lies directly in front of you, and a [[statue->Purple Statue]], behind you.Red Room
You find yourself in a triangular room, with red walls and floor. A [[door->Intersection]] lies directly in front of you, and a [[statue->Red Statue]], behind you.Green Room
You find yourself in a round room, with green walls and floor. A [[door->Intersection]] lies directly in front of you, and a [[statue->Green Statue]], behind you.Intersection
The stone pannel reads:
//"To rise or fall, the choice is all.
The apple falls for knowledge of men,
A leaf is life under the rain.
The young violet shrinks in fear,
As the bluebird flies towards the sea."//
<div class="entry">[****]<entry|</div>
<table>
<tr>
<td>(link-repeat: "1")[(display: "NumberOne")]</td>
<td>(link-repeat: "2")[(display: "NumberTwo")]</td>
<td>(link-repeat: "3")[(display: "NumberThree")]</td>
</tr>
<tr>
<td>(link-repeat: "4")[(display: "NumberFour")]</td>
<td>(link-repeat: "5")[(display: "NumberFive")]</td>
<td>(link-repeat: "6")[(display: "NumberSix")]</td>
</tr>
<tr>
<td>(link-repeat: "7")[(display: "NumberSeven")]</td>
<td>(link-repeat: "8")[(display: "NumberEight")]</td>
<td>(link-repeat: "9")[(display: "NumberNine")]</td>
</tr>
<tr>
<td>(link-repeat: "Clear")[(display: "Clear")]</td>
<td>(link-repeat: "0")[(display: "NumberZero")]</td>
<td>(link-repeat: "Enter")[(display: "Enter")]</td>
</tr>
</table>Green Room
A tall marble statue stands from the ground. The lighting paints it green. The statue's left hand is up. The number //5// is carved on its palm.Red Room
A tall marble statue stands from the ground. The lighting paints it red. Both of the statue's hands are up. The number //2// is carved on the right hand's palm.Purple Room
A tall marble statue stands from the ground. The lighting paints it purple. Both of the statue's hands are up. The number //9// is carved on the left hand's palm.{
(set: $entry to "")
(set: $entryLength to 4)
(set: $solution to "2597")
}{
(if: $entry's length < $entryLength)[
(set: $entered to 1)
(set: $entry to it + (text: $entered) )
(replace: ?entry)[$entry]
]
}{
(if: $entry's length < $entryLength)[
(set: $entered to 2)
(set: $entry to it + (text: $entered) )
(replace: ?entry)[$entry]
]
}{
(if: $entry's length < $entryLength)[
(set: $entered to 3)
(set: $entry to it + (text: $entered) )
(replace: ?entry)[$entry]
]
}{
(if: $entry's length < $entryLength)[
(set: $entered to 4)
(set: $entry to it + (text: $entered) )
(replace: ?entry)[$entry]
]
}{
(if: $entry's length < $entryLength)[
(set: $entered to 5)
(set: $entry to it + (text: $entered) )
(replace: ?entry)[$entry]
]
}{
(if: $entry's length < $entryLength)[
(set: $entered to 6)
(set: $entry to it + (text: $entered) )
(replace: ?entry)[$entry]
]
}{
(if: $entry's length < $entryLength)[
(set: $entered to 7)
(set: $entry to it + (text: $entered) )
(replace: ?entry)[$entry]
]
}{
(if: $entry's length < $entryLength)[
(set: $entered to 8)
(set: $entry to it + (text: $entered) )
(replace: ?entry)[$entry]
]
}{
(if: $entry's length < $entryLength)[
(set: $entered to 9)
(set: $entry to it + (text: $entered) )
(replace: ?entry)[$entry]
]
}{
(set: $entry to "")
(replace: ?entry)[****]
}{
(if: $entry's length < $entryLength)[
(set: $entered to 0)
(set: $entry to it + (text: $entered) )
(replace: ?entry)[$entry]
]
}{
(if: $entry is $solution)[
(goto: "End")
]
}You look up and realize a trap door just opened right above you. A metal ladder descents slowly and you climb it, making your way to the surface and enjoying your freedom from now on.
THE END
[[Back to the beginning->4 Rooms]]Welcome to "4 Rooms". You woke up here with no memory of what happened. But it doesn't matter. What matters is your ability to escape.
[[START->Room 1]]