some help would be nicewhats the 2nd scene in 3rd episode? how do we get it?
compressed version as well as its source full version have old scripts (from 0.2) instead of the new ones (0.3) hence the main problem.is compressed version fix or still hanging with 0.2 version ?
Never. We only have iOS.Will we ever be getting Android version?
Please, think about peasants, not everyone can afford rich man's crapNever. We only have iOS.
wow literally 6 posts above yours is links to android version.Will we ever be getting Android version?
Ethan_Invite
Ethan_invite
Ethan_invite
will change to the state of Ethan_Invite
if it exists. That's the way to do it properly.More variable bugs in this Ep3:SanchoNote
Note that the dev also made another odd decision which will cause issues if you don't replay Ep2:
variableEthan_Invite
is nowEthan_invite
This... was a silly decision as it's not handled properly in the new scripts. I will add code that, upon loading an old save that the variableEthan_invite
will change to the state ofEthan_Invite
if it exists. That's the way to do it properly.
$ cheat_route == True
$ Ann_Meet == True
Fucking hell man. Even this bug is still in Ep3....TheGreys Bug report.
You haveif Mc_AlphaM and Mc_SigmaM > 8:
as the lead in a conditional (you know where) but it's not doing what you think or intend it to do. For what you desire you need to write it as:if Mc_AlphaM > 8 and Mc_SigmaM > 8:
You might ask why. Well, it's simple really. The current conditional sees exactly "if Mc_AlphaM is True and if Mc_SigmaM is greater than 8" which is not what you want (obviously sinceMc_AlphaM
is an integer and not a boolean).
I'll fix it in the mod release fwiw. Regards.