If you appreciate the work done within the wiki, please consider supporting The Cutting Room Floor on Patreon. Thanks for all your support!

9:22

From The Cutting Room Floor
Jump to navigation Jump to search

Title Screen

9:22

Developer: Cockhole[1]
Publisher: Cockhole[1]
Platforms: Windows, Linux, Mac OS X, Android
Released internationally: June 1, 2020[1]


CodeIcon.png This game has unused code.
DebugIcon.png This game has debugging material.


<Sanky> please suggest an unused sprite with a clock or something
This game is still under active development.
Be aware that any unused content you find may become used or removed in the future. Please only add things to the article that are unlikely to ever be used, or went unused for some time. If they do get used, please remove them from the page and specify in the edit summary!

9:22 is a mystery visual novel game. The main character struggles to find his way in life. A little later, it turns out that there was a murder, which the victim looked like himself.

Debug

Screen properties

To enable the debug features, set show_debug and config.developer variables to True in the game's rpy code.
A new screen will appear right after the splashscreen of the game.

9-22 Debug.png

As shown in the top left corner.

  • physical dimensions, actual size of the current window.
  • physical aspect ratio, width of the current window divided by its height.
  • variants, properties of your device.
  • persistent.small_display, is simply 1.


Skip to another scene

To enable this debug feature, set config.developer variable to True in the game's rpy code.
The code itself is located in _script.rpy.

  • debug_scene, title_menu by default. Specifying a different scene/label will load it after splashscreen.
  • nsfw, True by default. You can read more about it below.
(Source: Original TCRF research)

NSFW

To toggle this mode, set nsfw variable to True in the game's rpy code. (_script.rpy if you have config.developer set to True.)

This variable switch is used throughout the script. Since there are no NSFW images in the game, they are replaced by a missing file error message. This also affects some dialogs.

Example in scene_210:

    if nsfw:
        show andrew neutral nude nsfw with Dissolve(0.3)
    else:
        show andrew neutral nude with Dissolve(0.3)
    
    ...
    
    if nsfw:
        kurt "{size=16}Nah,{w=0.35} I'm good.{w=0.35} Keep it.{/size}"
    else:
        kurt "{size=16}Thanks.{/size}"
(Source: Original TCRF research)

References