3.60 star(s) 23 Votes

AWolfe

Engaged Member
Donor
Game Developer
Jan 21, 2018
2,027
1,717
388
That's actually a known issue with (some) Sugarcube-based games, due to storing data in the browser's local cache.
 
  • Like
Reactions: qwerty56756789

qwerty56756789

New Member
May 9, 2024
5
0
45
I think it's because the game stores each individual parasite the player has as one thing instead of having a count value for each parasite. I say this because every time I use the cheat menu to give myself lots of parasites the games loading time increases to about 30 seconds.
 

Sewyoba

Member
Jul 22, 2018
446
383
216
I think it's because the game stores each individual parasite the player has as one thing instead of having a count value for each parasite. I say this because every time I use the cheat menu to give myself lots of parasites the games loading time increases to about 30 seconds.
Twine keeps previous passages as basically a save state, every page you can rollback to takes up as much memory as the current one, and you get the entire list of saved pages shuffled around in memory with each click that moves you to a new passage. Then you have the necessary requirement for such a thing to work in saves: every variable that carries over to new passage has to be copied as a new variable. Only setup variables are spared from recopying, and temporary variables exist only in the current passage. Also, this breaks references to objects - in the current passage two variables reference the same object, but after getting copied over two variables reference two different objects, each with their own set of variables

So, if you as a coder want to decrease loading times, you have to decrease the maximum amount possible of rollbacks, rework how you switch between passages from "goto passagename" to using spans and replaces with displays on the whole page (but this will break saves because saves only capture the initial state of the page), unset variables, and so on so forth. As a player, you probably can use console to limit the rollback size. Can't remember how you call this stuff properly, sorry
 
  • Like
Reactions: ThatPlayerOneGuy
May 29, 2024
109
149
80
Put a Choker on the Antari. Once it's properly integrated, you can move over to a new host. Your human body will be in the downstairs bedroom.

Do not put a Werm in the chokers. If you do, then you can't switch over to that body.
 

RachelTGG

New Member
Jan 18, 2022
7
10
13
I am confused af. I played trough chapter 1, infected and broke everyone, just didnt piloted the suit (well, i did but then i went back). So i ask two things:
1) wtf is that radioactive trash?
2) is there a walktrough of some sort?
 

pendleman

Newbie
Feb 12, 2018
19
34
109
It opens the browser tho!
If you launch a local html file, the browser renders it from the local file. You can double check the url bar says something like "file:///C:/..." instead of " ..."
If you really want to be sure, unplug your ethernet cable, turn off your wifi, and run the game.
 
  • Like
Reactions: Yurij

ich0

Member
Dec 14, 2018
208
133
207
thanks, but I cant realy see the similaritys between this artists and the post before.
But my knowladge of art is very shallow; or how much artists copy the styles of other artists.
 
  • Like
Reactions: boneh_ead
3.60 star(s) 23 Votes