
This appears to be one of the games developed in Qiaobook by a Chinese author and ported to English for this year’s IFcomp. I had difficulty following the writing, probably because of translation issues, but I have to give the author credit for spellchecking more effectively than many authors who use the latin alphabet day in and day out.
I can at least address one readability issue: the font. The game employs a greenish font on a blurred background image. I couldn’t find a screen setting that gave me sufficient contrast to read the text, and I am sure it must be even worse for anyone with visual impairment. While I don’t like altering the visual presentation the author had in mind, here’s how I would make this high-contrast for legibility:
Download the game from IFcomp, open the read_v2.css file in a text editor and change two things: the background and the text color. Then, launch the game from the local index.html file in a browser. For me, Firefox worked better than Chrome.
Original read_v2.css:
* {
background-color: transparent; }
.dark .read-text, .dark .read-title h1, .dark .icon-list li {
color: #909499; }
Modified read_v2.css:
* {
background-color: white; }
.dark .read-text, .dark .read-title h1, .dark .icon-list li {
color: black;
}
As for the game itself, the lead character is a highschool sophomore a chemistry attending class, when an experiment fogs up the classroom. The lights go out and he receives a text message on his phone’s QQ app (see wikipedia article for background). Then things begin to get creepy in several senses.
[Some spoilers follow beyond this point]








