when compressed version will be released?
There is already a compressed Version.
Old version. Replace the file.Hey guys. Decided to play Val path (never play her path before). In 4th chapter - when I confess I'm in love she says smth like:
"I love you too
But you have to live a life without me
We don't have enough here to make this work"
BUT, then - there goes scene where they are cuddling and discussing MC moving in with her, how they love each other etc.
That's a bit confusing.
Ok , that's very confusing.
All other paths are closed to that moment, and Val's love = 10. What's wrong?
Thanks for answers beforehand.
Thank you for feedback.Old version. Replace the file.
Oh well I don't have control over the multi mod so not much I can do about itThank you for feedback.
Actually, I found the reason right before you texted.
I downloaded game again and played fast (using CTRL) Val's path again with the same decisions but without MULTI MOD, and all worked fine.
And yeah, when we install Multi Mod we actually change Chapter4.rpy
So, for creator of multimod (if he i here) - just so you know about this issue.
So, using that mod causes issues then? I played it a while ago and don't remember a whole lot, but was going to again. I guess this time I'll try the other wt mod here then.Oh well I don't have control over the multi mod so not much I can do about it
Yeah yeah, no worries.Oh well I don't have control over the multi mod so not much I can do about it
Hey guys. Decided to play Val path (never play her path before). In 4th chapter - when I confess I'm in love she says smth like:
"I love you too
But you have to live a life without me
We don't have enough here to make this work"
BUT, then - there goes scene where they are cuddling and discussing MC moving in with her, how they love each other etc.
That's a bit confusing.
Ok , that's very confusing.
All other paths are closed to that moment, and Val's love = 10. What's wrong?
Thanks for answers beforehand.
Old version. Replace the file.
That would be Sancho1969 then ...Thank you for feedback.
Actually, I found the reason right before you texted.
I downloaded game again and played fast (using CTRL) Val's path again with the same decisions but without MULTI MOD, and all worked fine.
And yeah, when we install Multi Mod we actually change Chapter4.rpy
So, for creator of multimod (if he is here) - just so you know about this issue.
Yeah yeah, no worries.
Last line was adressed to MultiMod creator))
And again, it is a beautiful game you created, last time I played maybe 6 mths ago on Athena solo path, now, after playing it again just remembered how great game is. And Vals solo path is great as well.
This WT mod says updated to 4b.v4.0 - Updated to latest VN and mod Core
Glad you enjoyed it!Yeah yeah, no worries.
Last line was adressed to MultiMod creator))
And again, it is a beautiful game you created, last time I played maybe 6 mths ago on Athena solo path, now, after playing it again just remembered how great game is. And Vals solo path is great as well.
It's simply a dialogue error in the VN. If you have the prerequisites as described in the mod then you are indeed on her path as can be seen in the stats and the obvious following scenes.Hey guys. Decided to play Val path (never play her path before). In 4th chapter - when I confess I'm in love she says smth like:
"I love you too
But you have to live a life without me
We don't have enough here to make this work"
BUT, then - there goes scene where they are cuddling and discussing MC moving in with her, how they love each other etc.
That's a bit confusing.
Ok , that's very confusing.
All other paths are closed to that moment, and Val's love = 10. What's wrong?
Thanks for answers beforehand.
The mod is fine, the one dialogue snippet pre- v0.4b has a minor fubar that the dev fixed later.So, using that mod causes issues then? I played it a while ago and don't remember a whole lot, but was going to again. I guess this time I'll try the other wt mod here then.
The mod is fine, the one dialogue snippet pre- v0.4b has a minor fubar that the dev fixed later.
It's the replay if statement that messes it up. I have something along the line of if in_replay: instead of if _in_replay: so renpy looks for the variable in_replay which doesnt exist so it skips that section of dialogueIt's simply a dialogue error in the VN. If you have the prerequisites as described in the mod then you are indeed on her path as can be seen in the stats and the obvious following scenes.
View attachment 2462230
This is confirmed by the code:
ValeriaEnding is set, ValExclusive is set, ChoseVal is set, etc. Mod is fine, the small snippet of dialogue of the VN in v0.4 is not.You don't have permission to view the spoiler content. Log in or register now.
.
Yeah, I saw that... but it's easily fixed. You may already have in v0.4b but I haven't had the time to look, been so bogged down with updates lately. If you haven't the easiest fix is to break the replay conditional off on it's own, then make another conditional that applies when not in a replay. You can also combine the conditionals (with "or" or "and" _in_replay) as well. There's no true rules in this case so whatever makes sense to you is what is best. Let me know if you need any help via PM and I'll help you sort anything like this in the future if needed. I've got your back.It's the replay if statement that messes it up. I have something along the line of if in_replay: instead of if _in_replay: so renpy looks for the variable in_replay which doesnt exist so it skips that section of dialogue
Yeah it's all fixed now. Crazy how something so fucking stupid can derail an entire sectionYeah, I saw that... but it's easily fixed. You may already have in v0.4b but I haven't had the time to look, been so bogged down with updates lately. If you haven't the easiest fix is to break the replay conditional off on it's own, then make another conditional that applies when not in a replay. You can also combine the conditionals (with "or" or "and" _in_replay) as well. There's no true rules in this case so whatever makes sense to you is what is best. Let me know if you need any help via PM and I'll help you sort anything like this in the future if needed. I've got your back.
It'll happen again at some point bud, the more complex the project gets the more a very small detail can easily go unnoticed. It happens to me too and why it takes me longer to update my mods since I try to power test them various ways as much as possible to squash all the bugs... but always "perfect" is impossible... I've tried for decades.Yeah it's all fixed now. Crazy how something so fucking stupid can derail an entire section
It looks like you're using those conditionals for the sake of showing certain content while in replay. Why not just use the scope argument of the Replay action to set the necessary variables? I see you do use it for setting the mcname.It's the replay if statement that messes it up. I have something along the line of if in_replay: instead of if _in_replay: so renpy looks for the variable in_replay which doesnt exist so it skips that section of dialogue