Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

There's a bit of a hacky way to do it, though this should do the job:

  1. Acquire a method to unpack an asar file:
    1.  The 7zip plugin to open asar files can unpack specific portions of interest: https://www.tc4shell.com/en/7zip/asar/
    2. Alternatively, you can try to unpack it by using the node.js asar package.
  2. The file of interest is {asarRootFolder}/data/system/Config.tjs
  3. Text speed is the value "chSpeed". 30 is the default. Lower values mean faster speed.
  4. Overwrite the Config.tjs in the patched app.asar, and you should be good to go.
  5. Full screen is tougher. If you try to force fullscreen you're going to get black bars on the sides of the screen.
  6. If you want to resize the window on startup to something custom, you can open up the file {asarRootFolder}/data/scenario/first.ks, edit the line that has window.ResizeTo() that does NOT have a semicolon at the start of the line to your preferred resolution, and repack that into the asar file. Take note that the resolutions used by resizeTo are inaccurate, so that's why I used the original width and height to set the desired resolution.

Thank you so much for fast answer! I`ll try to do it sometime later, when I have time to play the game :)