Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
pixelsea [2024/11/17 23:12] GlitchyZoruapixelsea [2024/11/17 23:28] (current) – add the semi-colons GlitchyZorua
Line 70: Line 70:
  
 Will take you to the "welcome" page. Will take you to the "welcome" page.
-<code>goHome()</code>+<code>goHome();</code>
  
 Will poke the printer. (invoking the printer malfunction event) Will poke the printer. (invoking the printer malfunction event)
-<code>bonkButton()</code>+<code>bonkButton();</code>
  
 Prints the About page Prints the About page
-<code>printAbout()</code>+<code>printAbout();</code>
  
 Prints the "Send Icons" page Prints the "Send Icons" page
-<code>sendIcons()</code>+<code>sendIcons();</code>
  
 Tells weather it should print out badges or icons. Tells weather it should print out badges or icons.
-<code>SetMode()</code>+<code>SetMode();</code>
  
 Prints Badges Prints Badges
-<code>SetMode('badge')</code>+<code>SetMode('badge');</code>
 <WRAP center round info 60%> <WRAP center round info 60%>
 If you type neither badge or icons, it would switch the mode back to "icons" If you type neither badge or icons, it would switch the mode back to "icons"
Line 91: Line 91:
  
 Prints Icons Prints Icons
-<code>SetMode('icons')</code>+<code>SetMode('icons');</code>
  
 Prints the entire World List. Prints the entire World List.
-<code>printWordList()</code>+<code>printWordList();</code>
  
 EVERYTHING IS OKAY NOW! EVERYTHING IS OKAY NOW!
  
-<code>okButton()</code>+<code>okButton();</code>
  
 ===== Controversies ===== ===== Controversies =====