Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
yoldiz [2024/09/12 23:58] GlitchyZoruayoldiz [2024/09/13 00:17] (current) – [Breaking the code] GlitchyZorua
Line 7: Line 7:
 {{ :screenshot_2024-09-12_11.40.51_am.png?400|}} {{ :screenshot_2024-09-12_11.40.51_am.png?400|}}
  
 +The music in the playing in the background is a song by Scott Holmes, which is called Alien Wasteland. It can be downloaded from [[https://freemusicarchive.org/music/Scott_Holmes/Film__Documentary/Alien_Wasteland/|here]]
 ===== Interaction ===== ===== Interaction =====
 The first time you visit Yoldiz, Yoldiz will welcome you to their "realm" The first time you visit Yoldiz, Yoldiz will welcome you to their "realm"
Line 15: Line 15:
 We can ask anything, and clicking on the pink button, (labeled "Please tell me oh Yoldiz!") will make Yoldiz fall asleep. After which, Yoldiz will tell you what they "dreamed" of.  We can ask anything, and clicking on the pink button, (labeled "Please tell me oh Yoldiz!") will make Yoldiz fall asleep. After which, Yoldiz will tell you what they "dreamed" of. 
  
-Poking the eyes will make Yoldiz say "Ow!" and tell us that the user is a bad human. +Poking the eyes will make Yoldiz say "Ow!" and tells the user that they are a bad human.
  
 +If the input is left blank (or is somehow null...) Yoldiz will tell us that there is no vision for the input provided.
 ===== Breaking the code ===== ===== Breaking the code =====
 It is possible to make Yoldiz say whatever we want with Inspect Element. It is possible to make Yoldiz say whatever we want with Inspect Element.
Line 28: Line 28:
 {{ :capture.png?nolink&400|}} {{ :capture.png?nolink&400|}}
  
 +This also means that we can force Yoldiz to close their eyes...
 +<code>talk('CLOSE_EYES');</code>
 +{{ :z_eye_closed.png?nolink&400 |}}
  
-With this code, we can force Yoldiz to dream about it.+and open their eyes... 
 +<code>talk('OPEN_EYES');</code> 
 +{{ :z_eye_open.png?nolink&400 |}} 
 + 
 +We can force Yoldiz to dream about something, using the code below.
 <code> <code>
 ask('eggs'); ask('eggs');
 </code> </code>
 +