Skip to content

Pauyy/ProfessorLaytonHints

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Professor Layton Hints

ProfessorLaytonHints is a website that rebuilds the hint pages in the Professor Layton games.
Though, this website doesn't contain official hints for existing puzzles.
The site can be used to write hints and let them be displayed in a Professor Layton style

How to add hints

Hints are easily addable through hint.js
All that has to be done is to add a new case, with the code, and fill "hintText" with your hints

case "YourCode":
        hintText = ["First Hint",
                    "Second Hint",
                    "Third Hint"];
        break;