Interestingly, I only just discovered this new game from Perverteer after the last update and finished the last episode today. The main reason for this is that on the latest updates page the author isn't visible unless you stop on the game banner and it opens up a little more, so I just missed it. I would have looked at Perverteer's new game earlier otherwise.
Have to say that I am pleasantly surprised that Perverteer can also write a decent sci-fi story. So far the game looks excellent, the story is captivating and isn't perceptibly cringy from the sci-fi side (not going to bitch or question about the spacetime relativity effects, the size difference of the Iron Bastard from the outside and inside and some other details commonly broken by most of the sci-fi genre stories - the story is not about physics after all).
The game design is also good and code seems almost bug free.
An excellent job again,
Perverteer! Love the story and will wait for the next episodes.
_________________________________________________________________
Aven speaks of how well the Mc did at Skarak, before knowing of it or going there.
View attachment 704936
Yes, it's an obvious continuity error, a missing condition that makes Aven's conversation available before retrieving Tubloshi skeleton from Skarak.
She mentions Skarak when you bump into her before she gets to the showers and also in the longer conversation after she gets out of the shower.
The original code in episode004_conversations.rpy:
Python:
{
'name': 'Aven',
'action': 'ep004_aven_talk',
'visible': True if not ep004_aven_talk else False
},
should not trigger before Skarak events, so it should look like this:
Python:
{
'name': 'Aven',
'action': 'ep004_aven_talk',
'visible': True if not ep004_aven_talk and ep004_skarak else False
},
I fixed this condition to disable access to her conversation before Skarak and also added a few lines after the Skarak events in episode004.rpy that will reset ep004_aven_encounter and ep004_aven_talk flags to enable Aven button at the time this conversation should occur, even in case you have seen it already before its time.
You can use any save from before or from the Skarak visit to see Aven after taking off from Skarak and make sense of her flirty behavior and talk about Skarak.
Also, in the conversation with Raene a line that should be from the MC, another character jumps in because of a minor typo:
Python:
scene expression eye_blink("images/ep004/ep004_quarters_ra_sad") with dissolve
ra "I’m sorry you had to see that earlier."
ra "The injections, I mean."
ca "Ziv isn’t forcing them on you, is she?"
ra "Oh no, not at all!"
scene expression eye_blink("images/ep004/ep004_quarters_ra_shock") with dissolve
ra "You don’t think Ziv is...{w} I’m not her captive, or anything."
Should be
c "Ziv isn’t forcing them on you, is she?"
And is also fixed in the patch.
So, only just two bugs that I noticed and only one of them breaks the story a little.
A nice almost clean job for a game with loads of content already. Well done!
_________________________________________________
How to use the patch:
Just extract the patch into the root folder of the game (the main folder where the game launcher file TalesFromTheUnendingVoid.exe is) and overwrite the 'game' subfolder and files in it.