Your browser lacks required capabilities. Please upgrade it or switch to another to continue.
Loading…
?Yes
<<silently>>
<<set _test to 'super cool'>>
<<set _timer to 10>>
<<repeat 1s>>
<<set _timer -= 1>>
<<if _timer > 3>>
<<replace #countdown>>_timer seconds remaining<</replace>>
<<elseif _timer > 0>>
<<replace #countdown>>_timer seconds remaining!<</replace>>
<<else>>
<<replace #countdown>>''Times up!''<</replace>>
<<stop>>
<</if>>
<</repeat>>
<</silently>>
_test
<<print passage()>>
Countdown: <span id='countdown'>_timer seconds remaining</span>
It was the best of times, it was the worst of times...
But mostly it was a time to try out everything that can be done with this program!
<<nobr>>
<<mary_chat "Yo! How's it going, bitches!?">>
<<player_chat "...Mary, that's incredibly inappropriate. They are three wise men.">>
<<mary_chat "Oh, I'm sorry cuck. Did you just give birth in a God damn stable? No...?">>
<<mary_chat "...Alright then, pass that rosemary!">>
<<player_chat "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.">>
<<unknown_chat "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.">>
<</nobr>>
[[You can go|You can go HERE]] <span class='green'>[[HERE|You can go HERE]]</span>
[[Or you can go THERE]]
[[But don't go here...]]
<<linkreplace "Testing now!" t8n>>Wow, what a test!<</linkreplace>>
Wow, HERE is pretty cool!
But, what is your <<textbox "$player.name" "name?">>
[[Name Test]]Double-click this passage to edit it.Well done... Your frivalous disregard for directions led you to a realm that rips away sanity. You can only watch as a vortex of unimaginable horrors chip away at every corner of your conscious mind. Reality melts in front of your very eyes, until your eyes, too, melt away.
@@color:red;font-weight:bold;YOU DIED@@
[[Restart|The Beginning]]Huh, <<print $player.name>>? Nice name!
<<player_chat "Thanks!">>
But what's your age?
[[18|Age][$player.age to 18]]
[[25|Age][$player.age to 25]]
[[37|Age][$player.age to 37]]
[[...pretty old|Age][$player.age to 55]]<<set $player = {
name: 'Joseph',
chatImg: 'https://dummyimage.com/600x400/9696f2/0510ab.png&text=J',
chatNameColor: '#eee',
chatBoxColor: 'rgba(255,255,255,0.2)'
}>>
/*https://dummyimage.com/600x400/ff7f50/fff&text=M*/
<<set $mary = {
name: 'Mary',
chatImg: 'test.png',
chatNameColor: '#99ff99',
chatBoxColor: 'rgba(127,255,127,0.2)'
}>>
<<set $unknown = {
name: 'Unknown',
chatImg: 'https://dummyimage.com/600x400/eee/333.png&text=??',
chatNameColor: '#bdc3c7',
chatBoxColor: 'rgba(241,196,15,0.2)'
}>>
Crazy, I never would have thought you were $player.age
<<widget "player_chat">><<nobr>>
<<chatbox_right $player $args[0]>>
<</nobr>><</widget>>
<<widget "mary_chat">><<nobr>>
<<chatbox_left $mary $args[0]>>
<</nobr>><</widget>>
<<widget "unknown_chat">><<nobr>>
<<chatbox_left $unknown $args[0]>>
<</nobr>><</widget>>
<<widget "chatbox_right">><<nobr>>
<<if $args[0].chatImg.startsWith("http")>>
<<set _path to "">>
<<else>>
<<set _path to setup.ImagePath>>
<</if>>
<div class='chat-box-holder'>
<<print '<div class="chat-box-right" style="background-color: ' + $args[0].chatBoxColor + '">
<div class="chat-text-right">
<p class="chat-text-name" style="color: ' + $args[0].chatNameColor + '">$args[0].name</p>
<p class="chat-text">$args[1]</p>
</div>
<div class="chat-img-right">
<img class="chat-img" src="'+$args[0].chatImg+'"/>
</div>
</div>'>>
</div>
<</nobr>><</widget>>
<<widget "chatbox_left">><<nobr>>
<<if $args[0].chatImg.startsWith("http")>>
<<set _path to "">>
<<else>>
<<set _path to setup.ImagePath>>
<</if>>
<div class='chat-box-holder'>
<<print '<div class="chat-box-left" style="background-color: ' + $args[0].chatBoxColor + '">
<div class="chat-img-left">
<img class="chat-img" src="' + _path + $args[0].chatImg + '"/>
</div>
<div class="chat-text-left">
<p class="chat-text-name" style="color: ' + $args[0].chatNameColor + '">$args[0].name</p>
<span class="chat-text">$args[1]</span>
</div>
</div>'>>
</div>
<</nobr>><</widget>>