JavaScript must be enabled to play.
Browser lacks capabilities required to play.
Upgrade or switch to another browser.
Loading…
<div class="title"><<include "cycling_1">> <<include "cycling_2">></div><div class="subtitle">by Sarah Mak</div> <span style="font-size:120%;line-height:3">''Select Location''</span> [[Coffee Shop->coffee_shop]] [[School->school]] More locations <<linkappend "are" t8n>> not<</linkappend>> coming soon!
<span class="location-title">''Coffee Shop''</span> <<linkreplace "Hi" t8n>><<linkreplace "Uncle" t8n>>Unker<</linkreplace>><</linkreplace>>, <<linkreplace "can I order" t8n>><</linkreplace>> <<linkreplace "a cup of" t8n>><<linkreplace "a" t8n>>one<</linkreplace>><</linkreplace>> <<linkreplace "coffee" t8n>>kopi<</linkreplace>> <<linkreplace "with evaporated milk" t8n>>C<</linkreplace>><<linkreplace "?" t8n>>\!<</linkreplace>>
<span class="location-title">''School''</span> <<linkreplace "Mrs Lim" t8n>><<linkreplace "Teacher" t8n>>Cher<</linkreplace>><</linkreplace>>, can <<linkreplace "you" t8n>><</linkreplace>> <<linkreplace "award me" t8n>><<linkreplace "give me" t8n>>gimme<</linkreplace>><</linkreplace>> one more mark <<linkreplace "for" t8n>><</linkreplace>> <<linkreplace "this" t8n>><</linkreplace>> <<linkreplace "question" t8n>><</linkreplace>><<linkreplace ", please" t8n>> or not<</linkreplace>>?
<<silently>> <<if not $choices_1>> <<set $choicesCount_1 to -1>> <<set $choices_1 to ["English", "Singlish"]>> <</if>> <<set $choicesCount_1 to $choicesCount_1 + 1>> <<if $choicesCount_1 >= $choices_1.length>> <<set $choicesCount_1 to 0>> <</if>> <<set $cyclingResult_1 to $choices_1[$choicesCount_1]>> <</silently>> \<<linkreplace $choices_1[$choicesCount_1] t8n>><<include "cycling_1">><</linkreplace>>
<<silently>> <<if not $choices_2>> <<set $choicesCount_2 to -1>> <<set $choices_2 to ["Destroyer", "Creator"]>> <</if>> <<set $choicesCount_2 to $choicesCount_2 + 1>> <<if $choicesCount_2 >= $choices_2.length>> <<set $choicesCount_2 to 0>> <</if>> <<set $cyclingResult_2 to $choices_2[$choicesCount_2]>> <</silently>> \<<linkreplace $choices_2[$choicesCount_2] t8n>><<include "cycling_2">><</linkreplace>>
<<if tags().includes("front")>><img src="flower.png" style="width: 250px"><</if>>
<<if tags().includes("front")>>To Space we go!<<else>>Open, Code and Compile !<</if>>
by Sarah Mak
<<if tags().includes("front")>>Some more text can be added here or you can have some [[links]]<</if>>
[[Credits]] <<if tags().includes("front")>> [[Styling]] [[Basic Macros]] [[Stats]]<</if>>
<h1>Heading 1</h1>\ <h2>Heading 2</h2>\ <h3>Heading 3</h3>\ <h4>Heading 4</h4>\ <h5>Heading 5</h5>\ <h6>Heading 6</h6>\ <hr> <center>Lists:</center> <ul> <li>Item 1</li> <li>Item 2</li> </ul> <hr> <center>Basic Table:</center> <table> <tr> <th>Column 1</th> <th>Column 2</th> <th>Column 3</th> </tr> <tr> <td>Item 1</td> <td>Item 2</td> <td>Item 3</td> </tr> <tr> <td>Item 1</td> <td>Item 2</td> <td>Item 3</td> </tr> </table> <hr> <center>''Links''</center> //Basic:// [[Basic Macros]] //As a list:// * [[Basic Macros]] //With Div:// <div class="choice">[[Basic Macros]]</div>
<h2>Textbox</h2>\ <<textbox "_test" 2>> <h2>Text Area</h2>\ <<textarea "_pieEssay" "">> <h2>Radio Buttons</h2>\ What's your favorite pie? <<radiobutton "_pie" "blueberry" autocheck>> Choice 1 <label><<radiobutton "_pie" "cherry" autocheck>> Choice 2 with a label </label> <<radiobutton "_pie" "coconut cream" autocheck>> Choice 3 <h2>Number Box</h2>\ <<numberbox "_wager" 100>> <h2>List Box</h2>\ <<listbox "_answer" autoselect>> <<option "Option 1">> <<option "Option 2">> <<option "Option 3">> <</listbox>> <h2>Cycle</h2>\ <<cycle "_answers" autoselect>> <<option "Option 1">> <<option "Option 2">> <<option "Option 3">> <</cycle>> <h2>Check Box</h2>\ <<checkbox "_pieBlueberry" false true autocheck>> Option 1 <label><<checkbox "_pieCherry" false true autocheck>> Option 2 with a label</label> <<checkbox "_pieCoconutCream" false true autocheck>> Option 3 <h2>Button</h2>\ <<button "I do not do anything">><</button>>
This is an empty passage.
<<widget "code">> /* The code below should technically be in the StyleSheet instead of a Widget (but this way you can just delete this file instead of looking for CSS code to delete). This code is meant to help showcase the displayed code better in the Guide passages. */ <style> pre, code { background-color: #333; padding: 0px 3px 2px 3px; display: block; } .verbatim { background-color: #333; padding: 0px 3px 2px 3px; } pre > code { padding: 0px; background: transparent; } </style> <</widget>>