- Nov 20, 2017
- 2,188
- 6,293
Why the low score? Played til you get the sandbox and it was more than okay. 2.5 seems like its a disaster game.
mmm can you send me a save gameWith the new version, I'm still at same evolution level, don't have any active quest, I tried going everywhere and calling everyone and nothing advances. What a wasted potential...
something is not right, if you go to Rebecca you should earn the points after the first time should disappear this entry from the quest logjust for info, played the new update and even if I empty most of the quests, still wasn't able to progress on this one, is it still the same "bug"/normal or is there something to do about it ?
View attachment 4359654
if you ask me there is an error it should trigger after datingany idea how to get Jean lewd scene? Another update with hidden scenes..
currently after you talk about a topic with a girl this gives you a + in the relationship and closes the dialogue. if you have already talked about a topic it does not give the. ± and the. dialogue is not closed ( you can continue and ask other things)The phone date system is badly designed and should be events instead. As it is now, it is confusing and bland. Also, it's hard to keep track of the information given that it is not checked out after asking.
There you go my dudemmm can you send me a save game
if varPowerupCount > 0:
scene intro_sc_18_113 with dissolve_0
rebecca "Sto ancora analizzando i dati dell'ultima volta."
scene intro_sc_18_114 with dissolve_0
rebecca "Adesso non abbiamo niente da fare qui in laboratorio."
scene intro_sc_18_115
mc "ok Rebecca, grazie."
scene black with dissolve_0
jump lobby
elif varForcePoint> 2 and varMindPoint > 2 and varKiPoint > 2 :
scene black with dissolve
jump rebecca_power_up
else:
scene intro_sc_18_113 with dissolve_0
rebecca "Non mi sembra che ti sei impegnato abbastanza questa volta."
scene intro_sc_18_114 with dissolve_0
rebecca "Torna quando mi avrai fornito più dati di cosi!"
scene intro_sc_18_115
mc "Scusami Rebecca, hai ragione."
Because some people will give a 1 star rating to games where the fapping isnt immediate or theres a bit of a sandbox for like 5 minutes, but give 5 stars to complete trash.Why the low score? Played til you get the sandbox and it was more than okay. 2.5 seems like its a disaster game.
it's all correct ( I played it 30 times I don't understand these things how I missed :\) as soon as I'm at a pc I'll make a patchI have encountered two problems so far. One is that after the first time I visited Rebecca, I can't get any more powerups. I'm at 9/9 in both Ki, Mind, and Strength, and she keeps telling me that she needs more data. I think the problem is this piece of code in game\script\scene\main_story\rebecca\rebecca_hub.rpy:
I'm not a coding expert, but I know a little bit, and as I read this code: if varPowerupCount (which appears to be a tally of your total evolution points) is more than 0 (which it will always be after the first visit), it only runs the first bit (until "jump lobby"). So once you've gotten one powerup, you'll never get another (at least not this way).Code:if varPowerupCount > 0: scene intro_sc_18_113 with dissolve_0 rebecca "Sto ancora analizzando i dati dell'ultima volta." scene intro_sc_18_114 with dissolve_0 rebecca "Adesso non abbiamo niente da fare qui in laboratorio." scene intro_sc_18_115 mc "ok Rebecca, grazie." scene black with dissolve_0 jump lobby elif varForcePoint> 2 and varMindPoint > 2 and varKiPoint > 2 : scene black with dissolve jump rebecca_power_up else: scene intro_sc_18_113 with dissolve_0 rebecca "Non mi sembra che ti sei impegnato abbastanza questa volta." scene intro_sc_18_114 with dissolve_0 rebecca "Torna quando mi avrai fornito più dati di cosi!" scene intro_sc_18_115 mc "Scusami Rebecca, hai ragione."
The other bug I ran into was in game\script\scene\dating\jean\dating_jean.rpy where there was one occasion of using varReljean instead of varRelJean.
From a more gameplay-oriented perspective, the game could use more occasions to increase Mind. AFAIK there are only two spots on the map that do that, and if I'm reading the code correctly one of them is on a 2-day cooldown and the other on a 3-day. But Strength has both the Gym, Jogging, and the Dojo, and Ki has both the Swamp, Spa, Therapist, and Dojo (doing double-duty).