Wiki Guides
Standards
To maintain a consistent and cohesive experience, there are certain standards that are expected on YumeWiki. Most of these are explained in the Style Guide. Below are some that are not.
Filenames
Filenames should be descriptive in what they contain, but short enough to be convenient. An image of a connection between two locations would probably include the locations' names, but writing their full, unabbreviated names would make the filename ridiculously long and annoying to use. Writing generic names such as connection2.png
creates a similar issue, where it is still hard to use due to being hard to discover and keep track of.
Template Documentation
To write documentation for templates, you can use Template:Documentation/preload as a base. When adding {{documentation}}
to a page without a doc, pressing the link "Create documentation" will automatically use the preload file.
Information
Namespace | Number | Talk |
---|---|---|
Main | 0 | 1 |
... | ... | ... |
Yume Nikki | 3000 | 3001 |
Yume 2kki | 3002 | 3003 |
Copy and Paste
Youtube Video Embed
Embed youtube videos in a vertical stack, with the video titles as captions underneath. For example, see Yume 2kki:Obstacle Course (revision Please use [[Special:Permalink/OLDID|display text]]).
{{#ev:youtube|WATCHID|dimensions=320x180|alignment=right|description=CAPTION|container=frame}}
To have more than one video appear side-by-side, choose alignment=inline
.
To have these videos centered, do the following, as was done on Yume Nikki:Frog (revision Please use [[Special:Permalink/OLDID|display text]]):
<div style="text-align: center;"> {{#ev:youtube|WATCHID|dimensions=320x180|alignment=inline|description=CAPTION|container=frame}} {{#ev:youtube|WATCHID1|dimensions=320x180|alignment=inline|description=CAPTION1|container=frame}} </div>
To have the video appear somewhat inline with a gallery, copy the following as in Yume Nikki:Block World (revision Please use [[Special:Permalink/OLDID|display text]]):
<div style="display:flex; flex-direction:row; flex-wrap:wrap"> <div style="flex-basis:calc(100% - 320px)"><gallery> ... </gallery></div> <div style="flex-basis:320px;">{{#ev:youtube|WATCHID|dimensions=320x180|alignment=inline|description=CAPTION|container=frame}}</div></div>
Helpful Formatting
Character | Name | Unicode/HTML | Usage |
---|---|---|---|
# | Number Sign | U+0023 &num |
The number sign, also called a pound or hash symbol. The HTML entity can allow escaping certain situations. |
| | Vertical Line | U+007C &VerticalLine | |
The pipe character, also called the vertical line or bar, is used extensively for Mediawiki parsing. The HTML entity escapes these situations. To delay the parsing instead of prevent it, use {{!}} .
|
· | Middle Dot | U+00B7 · ¢erdot |
Solid dot that is in the middle of a line. |
← | Leftwards Arrow | U+2190 &larr |
Leftwards arrow as one character. |
↑ | Upwards Arrow | U+2191 &uarr |
Upwards arrow as one character. Can be used for "to top" links. |
→ | Rightwards Arrow | U+2192 &rarr |
Rightwards arrow as one character. Used when listing directions on location pages. |
↔ | Left Right Arrow | U+2194 &harr |
Arrow that points both left and right. Can be used to show a relation between two elements. |
∕ | Division Slash | U+2215 | Appears to be a forward slash. Since it has the same appearance but no function, it can help with presenting HTML. |
> | Fullwidth Greater-Than Sign | U+FF1E | Fake greater-than > symbol. Presented wider than the normal one. |
< | Fullwidth Less-Than Sign | U+FF1C | Fake less-than > symbol. Presented wider than the normal one. |
Code | Example Input | Output | Explanation |
---|---|---|---|
<nowiki></nowiki> | <nowiki>'''text'''</nowiki> | '''text''' | Escapes wiki markup and stops formatting code like <pre> from being recognized. |
<pre></pre> | <pre>text</pre> | text |
Completely preformats text. All wiki markup, template calls, links, parser functions, HTML codes, and comments are completely ignored and are treated as raw text. |
<pre style="color: red">text</pre> | text |
You can add HTML styles to preformatted text, like with divs and spans. | |
<code></code> | <code>text</code> | text
|
Fixes the width of text and applies a background like with the <pre></pre> tags. |
<u></u> | <u>text</u> | text | Underlines text. |
<sup></sup> | text<sup>text</sup> | texttext | Superscript. |
<sub></sub> | text<sub>text</sub> | texttext | Subscript. |
<big></big> | <big>text</big> | text | Makes text bigger. |
<h3></h3> | <h3>ctrt</h3> | (blanked) | Defines a header using HTML, equivalent to ===this=== in wikitext. The number defines the header level from 1-6. Links to the header will work and it will appear in the TOC.
|
<mark></mark> | <mark>text</mark> | text | Highlight text. |
<span class="spoiler"></span> | <span class="spoiler">text </span> | text | Hides text underneath a spoiler. Visible when selecting it on PC or tapping it on mobile. May not work when using certain wiki skins. |
<br> | text1<br>text2 | text1 text2 |
Places a line break in text. |
<br clear=all> | [[File:Cagedfairy.png |thumb|right|Text]] <br clear=all> text | text |
Places a line break whilst forcing following elements to only appear after preceding elements are fully shown. |
[[File:Cagedfairy.png |thumb|right|Text]] text | text | The same example without <br clear=all> , for reference.
| |
<blockquote></blockquote> | <blockquote>text </blockquote> |
|
Presents text in a blockquote (indent) |
<span id=""></span> | <span id="aexgda"></span> | Include anywhere on the page to create an invisible link anchor: User:ZASNK/Sandbox#aexgda. This can be placed within a header (inside of the equal signs) to make an alternate header link. | |
<!----> | <!--text--> | Comments. Completely hidden from the page, but visible when editing. |
Style/Class | Example Input | Output | Explanation |
---|---|---|---|
style="text-align: center;" | <div style="text-align: center;">text</div> | text
|
This div style forces inline elements to be presented in the center of a page. |
style="-webkit-column-count:2;column-count:2;" | <div style="-webkit-column-count:2;column-count:2;">text1 text2 text3</div> | text1
text2 text3 |
Formats text into the specified number of columns. (the "-webkit-column-count:2;" seems to be useless, but it might be needed for special cases) |
style="display: flex; flex-direction: row;" | <div style="display: flex; flex-direction: row;"><gallery widths=40 heights=40> Cagedfairy.png|Text </gallery>[[File:Boyoutline.png |thumb|Text]]</div> | Present divs in a row. In the example it shows that you can place an element next to a gallery, which is usually not possible. | |
Collapsible Sections | |||
class="mw-collapsible" | <div class="mw-collapsible">text1 <br>text2</div> | text1
text2 |
Allows text to be collapsed. |
class="mw-collapsible mw-collapsed" | <div class="mw-collapsible mw-collapsed">text1 <br>text2</div> | text1
text2 |
Adding mw-collapsed makes it collapsed by default. Note: a page anchor within the collapsed element will have it automatically open when you follow the link.
|
class="toccolours mw-collapsible" | <div class="toccolours mw-collapsible">text1 <br>text2</div> | text1
text2 |
Adding toccolours gives the content the style of the table of contents (hence toccolours).
|
class="mw-collapsible-content" | <div class="toccolours mw-collapsible mw-collapsed">text1<div class="mw-collapsible-content">text2</div></div> | text1
text2 |
Use a separate div within the collapsible content one to define this inner div as the content to be collapsed. The text in the outer div but not the inner becomes a header for the collapsible content. |
Code | Example Input | Output | Explanation |
---|---|---|---|
<ul> </ul> | <ul> text1 text2<br>text 3 text 4</ul> |
text3 text4 |
Text is formatted in an unordered list. |
<div style="text-align: center;"><ul> text1<br>text2 </ul></div> |
text2 |
You can place the list in a div to apply div styles to the whole list. Useful to center images in a list. | |
<li> </li> | <li>text1</li> <li>text2</li> | Gives text elements the style of being in a list. More importantly, allows to separate them into groups. | |
<ul> <li> </li> </ul> | <ul> <li>text1</li> <li>text2</li> </ul> |
|
The combination of the two gives the best output. <li> </li> is used to separate the two.
|
style="display: inline-block;" | <ul> <li style="display: inline-block;> [[File:Cagedfairy.png |thumb|Text]] </li> <li style="display: inline-block;"> [[File:Boyoutline.png |thumb|Text]] </li> </ul> | This list style forces floating elements such as image thumbs to appear on the same line, even if they are otherwise unable. | |
style="vertical-align: middle;" | <ul> <li style="display: inline-block; vertical-align: middle;"> [[File:Cagedfairy.png |thumb|Text]] </li> <li style="display: inline-block; vertical-align: middle;"> [[File:Boyoutline.png |thumb|Text]] </li> </ul> | This list style can be used in addition to the previous one to align the elements to the top, middle, or bottom of the lines they are occupying. |
Code | Usage |
---|---|
class="wikitable" | Use at the table start to make it look like a standard table. |
class="sortable" | Adding this class to a table will allow you to sort the entire table columns of your choice. |
class="unsortable" | This class can be used on column headers to disable sorting the table by that column. |
style="width: 100%;" | At the table start, forces the table to fit a percentage of the screen width, regardless of size. At the first row of a column, forces that column to fit a percentage of the table width. |
style="vertical-align: top;" | Change the vertical alignment of elements in a cell (the default is middle ).
|
Code | Usage |
---|---|
resultsheader= «pre»«nowiki»|resultsfooter= «/nowiki»«/pre» | Add to the end of a DPL parser function and the output will be unformatted. |
Game Guides
Face Any Direction
You can face any direction you want on any tile in Yume Nikki's dream worlds, using the power of glitches. This guide outlines how to face whichever direction you want on any given tile assuming you can't do it manually by walking into it and/or sitting down.
Dream World
- Face DOWN by using Cat or Faceless Ghost.
- Face RIGHT by sitting down with 1 after facing DOWN.
- Face UP by performing the following:
- Equip Frog in the chair
- Go to the tile you wish to face UP on and face DOWN on that tile
- Use the Frog effect
- Wait for Madotsuki to appear sitting down
- Equip any effect
- Face LEFT by equipping the Faceless Ghost effect in the chair then using it.
Using Towel after equipping it in the chair can force you to face UP or LEFT as well, but it's hard to get to a state where you aren't also sitting down, so it's best to use one of the explained methods instead.
FC World
- Face DOWN by using Cat or Faceless Ghost.
- Face RIGHT by sitting down with 1 after facing DOWN.
- Face UP by performing one of the following:
- If you can face LEFT on the tile:
- Equip Frog in the chair
- Go to the tile you wish to face UP on and face LEFT on that tile
- Use the Frog effect
- Wait for Madotsuki to appear sitting down
- Equip any effect
- If you cannot face LEFT on the tile:
- Equip Towel in the chair
- Go to the tile you wish to face UP on
- Spam 1 to use the Towel effect until you somehow end up facing UP (yes, I know this sounds silly, but it works)
- Wait for Madotsuki to appear sitting down
- Equip any effect
- Face LEFT by equipping Towel in the chair then using it on the tile.
Real World
- Face DOWN by pressing 9 to pinch your cheek.
- Face RIGHT by sitting down with 1 after facing DOWN.
- You cannot face UP on every tile in the Real World.
- Face LEFT by performing the following:
- Go to the Dream World
- Perform the Broken Instructions glitch to store the instructions
- Press 9 to wake up with the instructions stored
- Sit down while facing LEFT on any tile
- Press Z and close the instructions
- Move to the tile you wish to face LEFT on (you will have glitched movement)
- Wait for Madotsuki to tilt her head (second sitting down state)
- Press 1 to stand up.
Saved Code
BGM
This is what forces a no breaking space in the soundroom param of the BGM template.
{{#if:{{{soundroom|}}}|(No. {{#ifexpr:{{#len:{{{soundroom|}}}}} > 3|{{#sub:{{{soundroom}}}|0|3}} {{#sub:{{{soundroom}}}|-1}}|{{{soundroom}}}}})}}
Example:
(No. 026 D)
With check:
NONE
Map ID
Adds Map ID records from Locationbox input
{{#ifeq:{{{Map ID}}}|None||{{#arraymap:{{#arraymaptemplate:{{{Map ID}}}|Template:MapIDs|,|,}}|,|item|item|,\s}}}}
Example code:
{{#ifeq:0076, 0077, 0078 (test1), 0079, 0080, 0082 (test2), 0177, 0178, 0179|None||{{#arraymap:{{#arraymaptemplate:0076, 0077, 0078 (test1), 0079, 0080, 0082 (test2), 0177, 0178, 0179|Template:MapIDs|,|,}}|,|item|item|,\s}}}}
Example:
0076, 0077, 0078 (test1), 0079, 0080, 0082 (test2), 0177, 0178, 0179
Test Space
Random
Test anything here
SMW
Below asks for all hidden badges and lists them
Icon(s) | Name | Location(s) | Author(s) | Date |
---|---|---|---|---|
Bloodied Vision | Bloodsoaked Office | Michi | 2024-10-25 | |
Colorwashed Glass | Glass Shards Path | Dreamer3 | 2024-10-25 | |
Chromatic School | Saturated School | Dreamer3 | 2024-10-18 | |
Hallucinatory Crypt | Festering Tomb | Michi | 2024-10-18 | |
Imagination | Monochrome Art Studio | Dreamer3 | 2024-10-18 | |
Lotus Mother | White Lotus Islands | madyme | 2024-10-18 | |
Abyssal Giant | Abyssal Bleu | Azuzu | 2024-10-11 | |
Rainy Picnic | Seaside City | Dreamer3 | 2024-10-11 | |
Scarlet Tears | Scarlet River | lapis | 2024-10-11 | |
Should have looked up when crossing the road... | Urbia | Dreamer3 | 2024-10-11 | |
The Ceaseless Watcher | Primeval Edifice | gravenravens | 2024-10-11 | |
Crystalline Void | Crystal Access | deadsquid | 2024-10-04 | |
Sunset Waves | Roof Tub | madyme | 2024-10-04 | |
16:03 | Flashing Waveform Maze | maengo | 2024-09-27 | |
Blue Lock | Tile Complex | Shakzass | 2024-09-27 | |
Collective Tree | Uncanny World | Zaakarias, madyme, Zolotl, Jellyfish Legerdemain Michi | 2024-09-27 | |
Digital Headache | Digital Brain Maze | miau | 2024-09-27 | |
Do Androids Dream of Electric Sheep? | Mechanical Animal World | Moucky233 | 2024-09-27 | |
Error-stained Notebook | Nexus | Zaakarias Zolotl | 2024-09-27 | |
Greedy Heart | Magenta Roads | Moucky233 | 2024-09-27 | |
Interactive Fiction | Digital Brain Maze | Nexrob010 YouArentDistorted | 2024-09-27 | |
Matching Silver | Isolated House | miau | 2024-09-27 | |
Moonlit Castle | Japanese Castle | miau | 2024-09-27 | |
Pensive Doppelgänger | Train Station | Moucky233 | 2024-09-27 | |
Rakugaki | Hologram Space | maengo | 2024-09-27 | |
Resonant Cube | Magicant | Zaakarias | 2024-09-27 | |
What is this? | Shimitsuki's Room | Zaakarias | 2024-09-27 | |
Bright Lights and Dances | Runway Crossing | bWF5 | 2024-09-20 | |
Dream Connection | Zaakarias | 2024-09-20 | ||
Neon Twinkle | Neon Star Hall | madyme | 2024-09-20 | |
Slept Wrong | Madotsuki's Room | BluBiscuit | 2024-09-13 | |
Cozy Cabin | Snowy World | Dreamer3 | 2024-09-06 | |
Nutritious | Lush Hilltop | Zaakarias Dreamer3 | 2024-09-06 | |
Cute Friend | Long-Fallen Ruins | Bunia | 2024-08-30 | |
My Youth | Surreal Zoo | nanako | 2024-08-30 | |
Weather Report | Frozen Tower | Shakzass | 2024-08-30 | |
Crying Rainbow | Rainbow Tears | Dreamer3 | 2024-08-23 | |
A Game of Broken Elevators | Underground World | AcceleratingWind | 2024-08-16 | |
Lush Hilltop | Lush Hilltop | Arumita | 2024-08-16 | |
Rusty Cat | Rainbow Maze | Arumita | 2024-08-16 | |
Industrial Incandescence | Sun Reactor | TubularBells | 2024-08-09 | |
Intergalactic Vacation | Astronomy World | GShovel | 2024-08-09 | |
Luminescent Jellyfish | Jellyfish World | Michi | 2024-08-09 | |
Shinsoku Neko: Master Quest Edition | Sabitsuki's Room | Pats | 2024-08-09 | |
Shinsoku Neko: Standard Edition | Sabitsuki's Room | Pats | 2024-08-09 | |
Shinsoku Neko: True Shinsoku Neko Edition | Sabitsuki's Room | Pats | 2024-08-09 | |
Standing at a Crossroad | A Long Journey | bWF5 | 2024-08-09 | |
These Boots Are Made for Walkin' | Megalith Lake | maengo | 2024-08-09 | |
Blooming Explorer | Wisteria Grove | Ayayaya | 2024-08-02 | |
Blue Feathered Butler | Peacock World | Noira | 2024-08-02 | |
Endless Load | Loading Zone | Sekiranun | 2024-08-02 | |
Quiet Reflections | Glass Cathedral | Delly | 2024-08-02 | |
TVCORE | Faithful Shoals | madyme | 2024-08-02 | |
Two-Faced | Outer Hospital | sablesorceress | 2024-08-02 | |
A Girl's Rest | Flower Valley Apartments | nanako | 2024-07-24 | |
Blurryface | Tragic Dimension | stvalenspine | 2024-07-24 | |
Constellation of Lanterns | Tatami Galaxy | Proton | 2024-07-24 | |
Futile Struggle | Monochrome Mausoleum | Michi | 2024-07-24 | |
Gentle Cleaner | Sugar Hole | madyme Zaakarias | 2024-07-24 | |
Her Eyes | Ruminating Meadows | Proton | 2024-07-24 | |
... further results |
Below asks for the top 60 Yume Nikki Map ids
Page | Map IDs |
---|---|
Debug Room | 1 (?) |
Madotsuki's Room | 3 (Real Room) 4 (Balcony) 6 (Dream Room) 7 (Dream Balcony day) 8 (Dream Balcony night) |
Nexus | 9 (?) |
Forest World | 10 (?) |
Block World | 11 (?) |
Puddle World | 12 (?) |
Dark World | 13 (?) |
Snow World | 14 (Main area) 22 (Top-middle igloo) 23 (Top-left igloo) 25 (Bottom-left igloo) 27 (Igloo near Toriningen) 28 (Pink Sea entrance) 24 (Surprise Toriningen igloo) ? (top-right) 26 (Kamakurako's Igloo) ? (bottom-right) |
Mural World | 15 (?) |
Graffiti World | 16 (?) |
Eyeball World | 17 (?) |
Candle World | 18 (?) |
Shield-Folk World | 19 (?) |
Neon World | 20 (?) |
Number World | 21 (Main area) 29 (Stabbing Room) 30 (Bed Room) 32 (Stairway Entrance) 33 (Stairway) |
Lamp World | 31 (?) |
Guillotine World | 35 (Normal size) 36 (Big Guillotine World) |
Neon Tile Path | 37 (Lower section) 38 (Upper section) |
Checkered Tile Path | 39 (Lower section) 40 (Upper section) |
Face Carpet Plaza | 41 (?) |
Dense Woods A | 42 (Dense Woods A) 43 (To Infinite Road) 44 (Infinite Road entrance) 45 (Infinite Road) 46 (Infinite Road exit) |
Hell | 47 (?) |
Footprint Path | 48 (Footprint Path A) 49 (Footprint Path B) |
Wilderness | 50 (Dark World Gate) 51 (Route 4) 52 (Route 1) 53 (Route 2) 54 (Rave Box) 55 (Toriningen Party) 56 (Barracks Settlement Entrance) 57 (FC Portal) 58 (Route 3) 59 (Northern Wilderness) 60 (Infinite Wilderness) 61 (Fence) 62 (Northern Wilderness Pylons) 63 (Staircase Bottom) 64 (Staircase to the Sky) 65 (Hot Spring House) |
Barracks Settlement | 66 (Town) 68 (Isee Path) 69 (Seahorse) |
Mini Hell | 67 (?) |
... further results |
Claim
Countdown
09:47
0947
0
020300
$timestamp = strtotime("20230120171222");