<h1>WELCOME to the official KRUUDA Dream Analysis test!</h1>\
<<link "Start Quiz" "Next">><</link>>Template created by manonamora ([[Tumblr|https://manonamora-if.tumblr.com/]]/[[Itch|https://manonamora.itch.io/]]) on Twine (v2.7.0)/Tweego with Sugarcube (v2.36.1)
Macros:
* [[Chapel: Dialog API|https://github.com/ChapelR/custom-macros-for-sugarcube-2/]]
Assets:
* [[GoogleFonts|https://fonts.google.com]]
* [[OpenDyslexic|https://opendyslexic.org]]
Other:
* [[Twinery.org|https://twinery.org/]]
* [[SugarCube 2 Documentation|https://www.motoslave.net/sugarcube/2/docs/]]
* [[SugarCube 2 Guide|https://manonamora.itch.io/twine-sugarcube-guide]]
* [[Twine Resources List|https://www.tumblr.com/manonamora-if/700577877042888704/interactive-fiction-twine-resource-megalist]]
* [[Intfiction.org Forum|https://intfiction.org/c/authoring/twine]]
* [[Reddit r/twinegames|https://www.reddit.com/r/twinegames/]]
* [[Twine Discord|https://discordapp.com/invite/n5dJvPp]]
* [[W3 School|https://www.w3schools.com/]]
<h5>You can find my other templates [[here|https://manonamora.itch.io/twine-sugarcube-templates]].</h5>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla tellus lorem, porta a eleifend id, iaculis ac risus. Nullam justo nibh, sodales in velit cursus, posuere feugiat mauris. Cras elementum, mauris eu consequat congue, odio velit maximus erat, sit amet euismod nunc metus ut massa. Fusce eu est non orci bibendum vehicula nec vel tortor. Sed non venenatis est, quis scelerisque ipsum. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vivamus aliquam tempor libero, a congue neque dapibus vel. Ut venenatis ultricies tortor sed ornare. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.
Nam tempor libero nibh, eu ornare ante consequat congue. Donec viverra urna id enim faucibus, eget accumsan est blandit. Maecenas vel nulla cursus, pulvinar eros gravida, vehicula massa. Vestibulum urna lectus, pretium at tristique at, accumsan a est. Nunc vel lacus nec nunc viverra condimentum. Donec ultricies dui eu aliquet luctus. In id egestas neque. Quisque eget metus sit amet orci porttitor iaculis quis consectetur neque. Duis eu ligula iaculis, tempus nunc id, eleifend neque. Mauris ac lorem ac mi condimentum consectetur a vitae arcu. Nulla in consequat lacus. Ut vitae diam sit amet leo elementum varius.
[[Styling]]<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>>
[[End]]<h1>END</h1>
<center><<button "Restart?">><<script>>UI.restart();<</script>><</button>> | <<button "Back">><<run Engine.backward()>><</button>></center>
/*You can add/change whatever you want*/<div id="parent">
<div id="passages"></div>
<div id="menu" data-passage="menu">
<!--Side menu, editable in the sidemenu passage-->
</div>
</div>
<script>
// Close the dropdown menu if the user clicks outside of it
function myFunction() {
document.getElementById("myMenu").classList.toggle("show");
}
window.onclick = function(event) {
if (!event.target.matches('.dropbtn')) {
var dropdowns = document.getElementsByClassName("dropup-content");
var i;
for (i = 0; i < dropdowns.length; i++) {
var openDropdown = dropdowns[i];
if (openDropdown.classList.contains('show')) {
openDropdown.classList.remove('show');
}
}
}
}
</script>/* Do not remove the div, Needed to make the title pretty */<div class="title">One Page Template</div><<include "StoryDisplayTitle">>
/*<<include "navigation">>*/
<<include "sidemenu">>/*This page is currently hidden. Edit the Menu passage to make it appear!*/
<div> <<link '⮘'>><<run Engine.backward()>><</link>> | <<if State.length === State.size>>⮚<<else>><<link '⮚'>><<run Engine.forward()>><</link>><</if>> </div>Rikkart F. Kruuda
Access Level: 0
usernumber:
<div class="dropdown">
<a onclick="myFunction()" class="dropbtn">MENU</a>
<div id="myMenu" class="dropup-content">
<<link 'PLAYER PAGE'>>
<<popup "PlayerPage" "Player Character">>
<</link>>
<<link 'ACHIEVEMENTS'>>
<<popup "Achievements" "Achievements">>
<</link>>
<<link 'CREDITS'>>
<<popup "Credits" "Credits">>
<</link>>
<<link 'SAVES'>><<run UI.saves()>><</link>>
<<link 'SETTINGS'>><<run UI.settings()>><</link>>
<<link 'RESTART'>><<run UI.restart()>><</link>>
</div>
</div>
/*You can also add whatever you want, it can also be links to passages rather than dialog boxes*/Here you can add some achivements<div id="parent">
<div id="passages"></div>
<div id="menu" data-passage="menu">
<!--Side menu, editable in the sidemenu passage-->
</div>
</div>
<script>
// Close the dropdown menu if the user clicks outside of it
function myFunction() {
document.getElementById("myMenu").classList.toggle("show");
}
window.onclick = function(event) {
if (!event.target.matches('.dropbtn')) {
var dropdowns = document.getElementsByClassName("dropup-content");
var i;
for (i = 0; i < dropdowns.length; i++) {
var openDropdown = dropdowns[i];
if (openDropdown.classList.contains('show')) {
openDropdown.classList.remove('show');
}
}
}
}
</script>/* Do not remove the div, Needed to make the title pretty */<div class="title">Dreamscape Inc.'s official Kruuda test</div><<set $name to prompt("What's your name? If you are a Dreamscape Inc. employee, log in using the following format: [DDMMYY].","Dreamscape")>>
<<if $name is "ezra">>
Links
[[Question 8]] [[location]]
[[Styling]] [[Basic Macros]]
<<elseif $name is "170328">>
<<goto "Recovered">>
<<else>><h1>Welcome to the official Dreamscape Inc. Kruuda test!</h1>\
This test will analyse your experiences with dreams by showing you images and videos that represent our user's dreams.
<<if Save.autosave.ok() and Save.autosave.has()>><<link "Resume Game">><<script>>Save.autosave.load()<</script>><</link>><</if>>
<<link "Start Quiz" "confirm">><</link>>
<</if>>
/*You can also add whatever you want*/
<<include "StoryDisplayTitle">>
/*<<include "navigation">>*/
<<include "sidemenu">><div class="dropdown">
<a onclick="myFunction()" class="dropbtn">MENU</a>
<div id="myMenu" class="dropup-content">
<<link 'User page'>>
<<popup "User" "User page">>
<</link>>
</div>
</div>
/*You can also add whatever you want, it can also be links to passages rather than dialog boxes*//*This page is currently hidden. Edit the Menu passage to make it appear!*/
<div> <<link '⮘'>><<run Engine.backward()>><</link>> | <<if State.length === State.size>>⮚<<else>><<link '⮚'>><<run Engine.forward()>><</link>><</if>> </div><<if $name is "170328">>
Dr. RikkartF. Kruuda
Management
Access Level: 0
<<else>>
$name
guest user
<</if>>Template created by manonamora ([[Tumblr|https://manonamora-if.tumblr.com/]]/[[Itch|https://manonamora.itch.io/]]) on Twine (v2.7.0)/Tweego with Sugarcube (v2.36.1)
Macros:
* [[Chapel: Dialog API|https://github.com/ChapelR/custom-macros-for-sugarcube-2/]]
Assets:
* [[GoogleFonts|https://fonts.google.com]]
* [[OpenDyslexic|https://opendyslexic.org]]
Other:
* [[Twinery.org|https://twinery.org/]]
* [[SugarCube 2 Documentation|https://www.motoslave.net/sugarcube/2/docs/]]
* [[SugarCube 2 Guide|https://manonamora.itch.io/twine-sugarcube-guide]]
* [[Twine Resources List|https://www.tumblr.com/manonamora-if/700577877042888704/interactive-fiction-twine-resource-megalist]]
* [[Intfiction.org Forum|https://intfiction.org/c/authoring/twine]]
* [[Reddit r/twinegames|https://www.reddit.com/r/twinegames/]]
* [[Twine Discord|https://discordapp.com/invite/n5dJvPp]]
* [[W3 School|https://www.w3schools.com/]]
<h5>You can find my other templates [[here|https://manonamora.itch.io/twine-sugarcube-templates]].</h5>Please confirm that you are 18 years or older.
[[Yes, I am 18 years or older]]
[[No, take me back]]
<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>>
[[End]]<h1>END</h1>
<center><<button "Restart?">><<script>>UI.restart();<</script>><</button>> | <<button "Back">><<run Engine.backward()>><</button>></center>
/*You can add/change whatever you want*/<h2> Thank you for taking our Official Kruuda test!</h2>
Before we start, there are a few things we would like you to know.
<ul>
<li>We are not responsible for any following nightmares</li>
<li>Taking this test does not automatically make you legible for treatment</li>
<li>The footage you are about to see was recorded by our own Dreamviewer. It is not permitted to spread these images outside of this quiz. The owners of these dreams have given us permission to use their dreams for further research. </li>
</ul>
[[I understand and agree]]<div class='error'>
Minors are not allowed to take this test.
Please close this website.
</div><h2>We will begin with some personal questions.</h2>
<p style="text-align:center; font-size: 36px;">[[Proceed|Age]]</p>
<br><br><br>
<p style="font-size: 12px; opacity: 0.3;">[[why do we ask personal questions?]]</p><h3>What is your age?</h3>
<<radiobutton "$age" "18-25" autocheck>> 18-25
<<radiobutton "$age" "26-35" autocheck>> 26-35
<<radiobutton "$age" "36-45" autocheck>> 36-45
<<radiobutton "$age" "46-55" autocheck>> 46-55
<<radiobutton "$age" "56-65" autocheck>> 56-65
<<radiobutton "$age" "65+" autocheck>> 65+
<span id="reveal">[[Next|Continent]]</span><h2>Why do we ask personal questions?</h2>
Great question!
Dreamscape Inc. is a research facility. The more data we have, the more accurate our science will be.
By asking somewhat personal questions, we can find if there are correlations between certain groups of people and how they respond to the Kruuda test.
[[Continue to quiz|Age]] <h3>What is your continent of residency?</h3>
<<radiobutton "$cont" "Asia">> Asia
<<radiobutton "$cont" "Africa">> Africa
<<radiobutton "$cont" "Europe">> Europe
<<radiobutton "$cont" "North">> North-America
<<radiobutton "$cont" "South">> South-America
<<radiobutton "$cont" "Oceania">> Oceania
<span id="reveal">[[Next|Marital]]</span><h3>What is your marital status?</h3>
<<radiobutton "$marital" "single">> Single
<<radiobutton "$marital" "relationship">> In a relationship
<<radiobutton "$marital" "registered">> Registered partnership
<<radiobutton "$marital" "married">> Married
<<radiobutton "$marital" "divorced">> Divorced
<<radiobutton "$marital" "widowed">> Widowed
<<radiobutton "$marital" "other">> Other
<span id="reveal">[[Next|gender]]</span><h3>What is your gender?</h3>
<<radiobutton "$gender" "male">> Male
<<radiobutton "$gender" "female">> Female
<<radiobutton "$gender" "other">> Other
<span id="reveal">[[Next|languages]]</span><h3>What languages do you speak?</h3>
You can select multiple answers.
<<checkbox "$lan" "_lanEnglish" false true autocheck>> English
<<checkbox "$lan" "_lanSpanish" false true autocheck>> Spanish
<<checkbox "$lan" "_lanFrench" false true autocheck>> French
<<checkbox "$lan" "_lanChinese" false true autocheck>> Chinese
<<checkbox "$lan" "_lanGerman" false true autocheck>> German
<<checkbox "$lan" "_lanArabic" false true autocheck>> Arabic
<<checkbox "$lan" "_lanRussian" false true autocheck>> Russian
[[Next|mental]]<h3>Do you experience mental issues?</h3>
Please select all that apply.
<<checkbox "$mentDepression" false true autocheck>> Major Depression/Bipolar
<<checkbox "$mentAnxiety" false true autocheck>> Anxiety Disorder
<<checkbox "$mentPTSD" false true autocheck>> (C)PTSD
<<checkbox "$mentTourettes" false true autocheck>> Gilles de la Tourette
<<checkbox "$mentBPD" false true autocheck>> Borderline Personality Disorder
<<checkbox "$mentDID" false true autocheck>> Dissociative identity disorder
<<checkbox "$mentOCD" false true autocheck>> Obsessive Compulsive Disorder
<<checkbox "$mentschiz" false true autocheck>> Schizophrenia
<<checkbox "$mentASD" false true autocheck>> Autism Spectrum Disorder
[[Next|thank you]]<<if $mentschiz is true>>
<div class ="error">
Please do not take this test if you have any type of schizoaffective disorders.
It is not recommended due to complications.
</div>
<<else>>
Thank you for answering these questions.
We will now proceed to the Kruuda test.
[[Start the Kruuda test]]
<</if>><h2>1. What feeling does this evoke?</h2>
[img[https://dreamscapeinc.eu/Kruuda_test/evoke_feeling.png]]
<<radiobutton "$feeling" "scared">> Scared
<<radiobutton "$feeling" "calm">> Calm
<<radiobutton "$feeling" "angry">> Angry
<<radiobutton "$feeling" "Lonely">> Lonely
<<radiobutton "$feeling" "Happy">> Happy
<span id="reveal">[[Next Question|mirror]]</span><h2>2. What do you see when you look in the mirror in your dreams?</h2>
<<radiobutton "$mirror" "mirror1">> Choose this mirror
[img[|https://dreamscapeinc.eu/Kruuda_test/mirror1.png]]
<<radiobutton "$mirror" "mirror2">> Choose this mirror
[img[|https://dreamscapeinc.eu/Kruuda_test/mirror2.png]]
<<radiobutton "$mirror" "mirror3">> Choose this mirror
[img[|https://dreamscapeinc.eu/Kruuda_test/mirror3.png]]
<span id="reveal">[[Next question|creature]]</span><h2>3. What creature are you most likely to encounter in your dreams?</h2>
<<radiobutton "$creature" "humans">> Choose this option
[img[https://dreamscapeinc.eu/Kruuda_test/creatures/humans.png]]
<<radiobutton "$creature" "no one">> Choose this option
[img[https://dreamscapeinc.eu/Kruuda_test/creatures/no_one.png]]
<<radiobutton "$creature" "skulls">> Choose this option
[img[https://dreamscapeinc.eu/Kruuda_test/creatures/skull_aliens.png]]
<<radiobutton "$creature" "painting">> Choose this option
[img[https://dreamscapeinc.eu/Kruuda_test/creatures/painting.png]]
<span id="reveal">[[Next question|crowds]]</span><h2>4. What do crowds look like in your dreams?</h2>
Choose the one that most accurately represents crowds.
<b>Click on the image to play the video.</b>
<<radiobutton "$crowds" "crowd1">> Choose this option
<video onclick="this.paused ? this.play() : this.pause(); arguments[0].preventDefault();" width="640px" height="480px">
<source src="https://dreamscapeinc.eu/Kruuda_test/crowds/crowds1.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<<radiobutton "$crowds" "crowd2">> Choose this option
<video onclick="this.paused ? this.play() : this.pause(); arguments[0].preventDefault();" width="640px" height="480px">
<source src="https://dreamscapeinc.eu/Kruuda_test/crowds/crowds2.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<<radiobutton "$crowds" "crowd3">> Choose this option
<video onclick="this.paused ? this.play() : this.pause(); arguments[0].preventDefault();" width="640px" height="480px">
<source src="https://dreamscapeinc.eu/Kruuda_test/crowds/crowds3.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<span id="reveal">[[Next question|voices]]</span><h2>5. What do voices sound like in your dreams?</h2>
Choose the one that most accurately represents voices in your dreams.
<b>You can listen to the audio tracks as many times as you like.</b>
<<radiobutton "$voices" "normal voice">> Option 1
<audio controls>
<source src="https://dreamscapeinc.eu/Kruuda_test/voices/voicenormal1.MP3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<<radiobutton "$voices" "distorted1">> Option 2
<audio controls>
<source src="https://dreamscapeinc.eu/Kruuda_test/voices/voicedistorted1.MP3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<<radiobutton "$voices" "distorted2">> Option 3
<audio controls>
<source src="https://dreamscapeinc.eu/Kruuda_test/voices/voicedistorted2.MP3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<<radiobutton "$voices" "distorted3">> Option 4
<audio controls>
<source src="https://dreamscapeinc.eu/Kruuda_test/voices/voicedistorted3.MP3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<<radiobutton "$voices" "Greta Eriksson">>Olof Petter Tore Ivar Olof Niklas Femma
<audio controls>
<source src="https://dreamscapeinc.eu/Kruuda_test/voices/voicedistorted4.mp3" type="audio/mpeg">
Your broswer does not support the audio element.
</audio>
<span id="reveal">[[Next question|location]]</span><h2>6. What location feels most familiar to you?</h2>
Choose the one that you feel you may have seen before.
<b>Click on the image to play and pause the video.</b>
<<radiobutton "$location" "location1">> Choose this option
<video onclick="this.paused ? this.play() : this.pause(); arguments[0].preventDefault();" width="640px" height="480px">
<source src="https://dreamscapeinc.eu/Kruuda_test/location/dreamscape%20location%201.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<<radiobutton "$location" "location2">> Choose this option
<video onclick="this.paused ? this.play() : this.pause(); arguments[0].preventDefault();" width="640px" height="480px">
<source src="https://dreamscapeinc.eu/Kruuda_test/location/dreamscape%20location%202.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<<radiobutton "$location" "location3">> Choose this option
<video onclick="this.paused ? this.play() : this.pause(); arguments[0].preventDefault();" width="640px" height="480px">
<source src="https://dreamscapeinc.eu/Kruuda_test/location/dreamscape%20location%203.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<<radiobutton "$location" "location4">> Choose this option
<video onclick="this.paused ? this.play() : this.pause(); arguments[0].preventDefault();" width="640px" height="480px">
<source src="https://dreamscapeinc.eu/Kruuda_test/location/dreamscape%20location%204.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<<radiobutton "$location" "location5">> Choose this option
<video onclick="this.paused ? this.play() : this.pause(); arguments[0].preventDefault();" width="640px" height="480px">
<source src="https://dreamscapeinc.eu/Kruuda_test/location/dreamscape%20location%205.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<span id="reveal">[[Next question|pay attention]]</span><h4 style="text-align: center; font-weight: bold;">Please pay close attention to the next video.
It will only be shown once.</h4>
<div style ="text-align: center;">
[[Start video|the eyes]]
</div><video autoplay width="95%" height="95%">
<source src="https://dreamscapeinc.eu/Kruuda_test/eyes/the_eyes.mp4" type="video/MP4">
</video>
<<timed 19s>><<goto "eyecolor">><</timed>>
<div style="display: none;">
[[eyecolor]]
</div><h2>7. What color were the eyes?</h2>
<<radiobutton "$eyecolor" "Brown">> Brown
<<radiobutton "$eyecolor" "Green">> Green
<<radiobutton "$eyecolor" "Blue">> Blue
<<radiobutton "$eyecolor" "Purple">> Purple
<<radiobutton "$eyecolor" "Pink">> Pink
<<radiobutton "$eyecolor" "Red">> Red
<<radiobutton "$eyecolor" "Yellow">> Yellow
<<radiobutton "$eyecolor" "Black">> Black
<<radiobutton "$eyecolor" "idk">> I don't know
<span id="reveal">
[[Next|Wrong]]
</span>
<<if $eyecolor is "idk">>
Please pay better attention next time.
[[Next|Question 8]]
<<else>>
<<goto "Question 8">>
<</if>><h2>8. How does this image make you feel?</h2>
[img[https://dreamscapeinc.eu/Kruuda_test/who.png]]
<<radiobutton "$feeling 2" "nost">> Nostalgic
<<radiobutton "$feeling 2" "ease">> At ease
<<radiobutton "$feeling 2" "young">> Young
<<radiobutton "$feeling 2" "Cold">> Cold
<<radiobutton "$feeling 2" "Other">> Other:
<<textbox "$feeling2" Other>>
<span id="reveal">[[Next question|question 9]]</span><<if $feeling2 is "Scared" or $feeling2 is "scared">>
If anyone is reading this, then I’ve done at least one thing right. I want you to take a good long look around here, find out what happened. I don’t think I’ll be allowed this veil of secrecy much longer, with the way things are going right now.
They’re wiping everything off this site in a few days, but I’ve tried putting a lock on as much as I can. If there’s anything left, I need you to look into it. They’ll most likely be in the recovered section.
You should try logging on to the big boss' account. There'll be a hint in the locations.
Good luck.
Signing off,
...
[[Continue the quiz]]
<<else>>
<h2>9. What place feels most like home to you?</h2>
<<radiobutton "$home" "women">> Choose this option
[img[https://dreamscapeinc.eu/Kruuda_test/home/women.png]]
<<radiobutton "$home" "classroom">> Choose this option
[img[https://dreamscapeinc.eu/Kruuda_test/home/classroom.png]]
<<radiobutton "$home" "house">> Choose this option
[img[https://dreamscapeinc.eu/Kruuda_test/home/house.png]]
<<radiobutton "$home" "playground">> Choose this option
[img[https://dreamscapeinc.eu/Kruuda_test/home/playground.png]]
<span id="reveal"> [[Next question|warning]] </span>
<</if>><div class="error">
The following video may be triggering for some audiences.
You can skip this video if you do not want to see the following:
<ul>
<li>Assault on a minor</li>
<li>Religious themes</li>
<li>Blood</li>
</ul>
</div>
<div style="text-align:center;">
[[Skip this video|end of quiz]]
</div>
<div class="error">
[[If not, continue to the video|paperdream]]
</div>
<h1>Thank you for participating in our research through the Kruuda test.</h1>
<h3>People like you help us help others.</h3>
<<link "Go Home">><<script>>window.open('https://dreamscapeinc.eu',"_self")<</script>><</link>>
[[Restart quiz|Start]] <h2> Welcome, Dr. Kruuda.</h2>
<<link "Recovered documents">><<script>>window.open('https://dreamscapeinc.eu/recovered.html',"_self")<</script>><</link>>
<<link "Staff Directory">><<script>>window.open('https://dreamscapeinc.eu/recovered/G5TOWvlscekp40ovvhDQo2GbU.html',"_self")<</script>><</link>>
<h2>9. What place feels most like home to you?</h2>
<<radiobutton "$home" "women">> Choose this option
[img[https://dreamscapeinc.eu/Kruuda_test/home/women.png]]
<<radiobutton "$home" "classroom">> Choose this option
[img[https://dreamscapeinc.eu/Kruuda_test/home/classroom.png]]
<<radiobutton "$home" "house">> Choose this option
[img[https://dreamscapeinc.eu/Kruuda_test/home/house.png]]
<<radiobutton "$home" "playground">> Choose this option
[img[https://dreamscapeinc.eu/Kruuda_test/home/playground.png]]
<span id="reveal"> [[Next question|warning]] </span><h2>There will be three questions about this nightmare.</h2>
You can watch the video as many times as you like. After that, we will ask you three questions about this nightmare. After you click next, you cannot watch this video again.
<video onclick="this.paused ? this.play() : this.pause(); arguments[0].preventDefault();" width="640px" height="480px">
<source src="https://dreamscapeinc.eu/Kruuda_test/paperdream.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<b>Please only go to the next page after you've watched the video fully.</b>
[[Next question|question 10]]<h2>10. Which emotion did you feel most strongly during the video?</h2>
<<radiobutton "$paperemotion" "fear">> Fear
<<radiobutton "$paperemotion" "anger">> Anger
<<radiobutton "$paperemotion" "sadness">> Sadness
<<radiobutton "$paperemotion" "scared">> Scared
<<radiobutton "$paperemotion" "disgust">> Disgust
<<radiobutton "$paperemotion" "confusion">> Confusion
<<radiobutton "$paperemotion" "none of the above">> None of the above
<span id="reveal"> [[Next question|question 11]] </span><h2>Did you feel empathy towards the child character?</h2>
<<radiobutton "$empathy" "great deal">>A great deal
<<radiobutton "$empathy" "quite">>Quite a bit
<<radiobutton "$empathy" "somewhat">>Somewhat
<<radiobutton "$empathy" "a little">>A little
<<radiobutton "$empathy" "not at all">>Not at all
<span id="reveal">[[Next question|question 12]]</span>
<h2>Did the video trigger any specific memories or feelings from your own life?</h2>
<<radiobutton "$memories" "strongly">>Yes, very strongly
<<radiobutton "$memories" "quite">>Yes, quite a bit
<<radiobutton "$memories" "somewhat">>Yes, somewhat
<<radiobutton "$memories" "not really">>No, not really
<<radiobutton "$memories" "not at all">>No, not at all
<span id="reveal"> [[end of quiz]] </span>