Difference between revisions of "Gameplay"

From Johnisdead Wiki
Jump to navigation Jump to search
Line 21: Line 21:
 
<div class="tablenotes">
 
<div class="tablenotes">
 
<h3>Binary Ciphers</h3>
 
<h3>Binary Ciphers</h3>
<p><b>Binary ciphers</b> are series of ones and zeros in groups of eight. Every letter, number, and punctuation mark has a specific binary code that represents it. For example, the capitalized letter "A" is referenced by the binary code "01000001". The number "1" is referenced by the binary code "00110001". Entire sentences are often encoded with binary ciphers, resulting in long blocks of binary code.</p>
+
<p><b>Binary ciphers</b> are series of ones and zeros in groups of eight. Every letter, number, and punctuation mark has a specific binary code that it is represented by. For example, the capitalized letter "A" is referenced by the binary code "01000001". The number one is referenced by the binary code "00110001". Sometimes entire sentences are encoded in binary, resulting in long blocks of binary code.</p>
  
 
<div class="textexampletitle">
 
<div class="textexampletitle">

Revision as of 09:16, 3 June 2020

This page covers various methods used by the Players to participate in Johnisdead.

Exploring Websites

Most of the time playing Johnisdead is spent exploring Websites. Some websites such as Lunarchildren.com contain pages of text detailing in-game lore that must be parsed through. Other sites such as Johnisdead.com consist of cryptic images and sounds that contain hints that lead to hidden pages. These hidden pages often lead to even more secret pages that reveal details important to understanding the story of Johnisdead. These long sequences of hidden pages are often referred to as Holes.

When exploring websites, it's important to check the following:

Page Source

The source code of a page on Johnisdead.com referencing the page's title, image and audio files, and a hidden comment.

Most browsers have the option view the source of any web-page on the internet. This will reveal the page's HTML as loaded by your browser. Viewing a page's HTML will not only allow you to easily view secret links and filenames, but it will also reveal comments - text hidden within a page's source code. Viewing a page's source is also the easiest way to uncover the names and details of any scripts referenced on the page.

Page Title

The page title is the text that appears within your browser's tabs, favorites, and history. These titles often contain hints or ciphers that should be documented.

Files

Most pages will contain image and audio files. Accessing these files through the page source is beneficial not only for documentation purposes, but also because said files may not be fully implemented into a page. For example, a page may be scripted to only play the first five seconds of a ten second audio file. Accessing the page's files directly will reveal any hidden details. Analyzing files further will be covered in more detail further down.

Solving Ciphers

Nearly every aspect of Johnisdead's gameplay will at some point involve ciphers. Ciphers are coded messages that must be translated in a specific way to solve. There are a multitude of different ciphers, each requiring their own methods to solve:

Binary Ciphers

Binary ciphers are series of ones and zeros in groups of eight. Every letter, number, and punctuation mark has a specific binary code that it is represented by. For example, the capitalized letter "A" is referenced by the binary code "01000001". The number one is referenced by the binary code "00110001". Sometimes entire sentences are encoded in binary, resulting in long blocks of binary code.

Binary Cipher Examples

01000010 01100001 01110011 01101001 01100011 00100000 01000010 01101001 01101110 01100001 01110010 01111001

Answer: Basic Binary
Solution: Solve cipher through any basic binary translator.

10011110 01001110 10000110 01110110 10010110 01000010 00000100 00100110 10100110 11001110 01001110 10100110 01101110 10100110 01001010

Answer: Reversed Binary
Solution: Reverse the cipher and solve.

ABABAABA ABBAABAB ABBBAAAA ABBABBAA ABBAAAAB ABBAAABB ABBAABAB ABBAABAA AABAAAAA ABAAAABA ABBABAAB ABBABBBA ABBAAAAB ABBBAABA ABBBBAAB

Answer: Replaced Binary
Solution: Replace the letters "A" and "B" with zeroes and ones respectively and solve.

  • Identify: Groups of eight characters consisting of either ones or zeroes.
  • Tip: Binary representing common characters begin with the number zero. If you encounter binary that begins with the number one, it's likely that the entire cipher has been reversed. In this case, one must correct the cipher by reversing it themselves for it to be solved.
  • Tip: As its name implies, binary's most defining trait is its use of only two characters. This makes it easily identifiable. You may encounter some binary ciphers where the ones and zeroes have been replaced with letters or even entire words. If you encounter a strange looking cipher consisting of patters such as "ABAAAAAB", its likely an obscured binary cipher.
  • Tool: Any basic binary translator - Link




Octal ciphers are groups of eight characters consisting of random numbers.

Typical Binary Cipher

22267164 31271156 31272040 21062564 31261564 32273145 346

Internet Detectives

  • Identify: Groups of eight characters consisting of random numbers.
  • Solve: Basic octal translator - Link

Hexidecimal ciphers

Typical Binary Cipher

22267164 31271156 31272040 21062564 31261564 32273145 346

Internet Detectives

  • Identify: Groups of eight characters consisting of random numbers.
  • Solve: Basic octal translator - Link


Character Interaction

Analyzing Files