- Dec 9, 2020
- 21
- 7
She talked about it. But no choices about that. My mc gonna avoid it, if possibleIs it possible to get Alessandra's sponsorship in the latest update?
THIS?Is it possible to get Alessandra's sponsorship in the latest update?
just on a sec, yeah I am fixing this for Dominique and dom path. Ugh, coding numbers right just isn't my thing haha! I think next time I need math/code/point checker.Yep, it's not difficult even though its impossible to get the maximum grade with Dominique. You always get a minimum of one domthrone point from Dominique and Juliette, and a minimum of two from Veronica, and that's irrespective of working with them. So you'll always have a minimum of 4 domthrone points. Both the impossibility of hitting Dominique's max grade and the automatic minimum domthrone points from the sister that Kane didn't work with are very probably bugs.
TessSadist: If you're not already aware, while the code requires a dgrade minimum of 5 to get 4 domthrone points from Dominique, it's impossible to achieve that currently. A dgrade of 3 is the highest possible as things stand. In addition, the lowest possible ranking of K5 isn't achievable for those who didn't upgrade from the sub track because you're always going to have a minimum of 4 domthrone points, as you'll always get the minimums (1+1+2) from all 3 sisters, including the one Kane didn't work for.
I got there on the Sub K5 (at the end of E5) route.yup how to get there?
I started with K8, MC is sub/good, after finish Veronica s part, Alessandra will take you out to her place, then this senceyup how to get there?
You may have a non-standard number of comments per page, try this link instead.walkthrough 1-3 link is broken it just takes me to the last page of this thread, can the link be updated please
Thankfully I lucked because a bunch of other games got released this weekend. Another week waiting and I may just have to go beta :sI am desperately waiting for the the final version of 0.6 before playing this update. Tess is amazing at what she does and this game is a masterpiece. The greatest torture is waiting for the full release. May we be assuaged of this suffering soon.
Got it thank youYou may have a non-standard number of comments per page, try this link instead.
Ha, yep. Delegate it. BTW, I have another one for you:just on a sec, yeah I am fixing this for Dominique and dom path. Ugh, coding numbers right just isn't my thing haha! I think next time I need math/code/point checker.
Have pinged Tess on Discord w/ regard to this - well spotted, and thank you!Ha, yep. Delegate it. BTW, I have another one for you:
In endice, you have:
You don't have permission to view the spoiler content. Log in or register now.
I suspect that these don't work as intended because "and" has precedence over "or". As a result
elif k2 or k3 or k4 and dominqiue_p<=1
behaves like
elif k2 or k3 or (k4 and dominique_p<=1)
When what I think you probably want is:
elif (k2 or k3 or k4) and dominique_p<=1
I say this because its possible for a k2 or k3 to make Dominique happy by accepting her offer of sponsorship and have a high dominique_p only for Junko to turn around and tell them that Dominique is not thrilled with them so far and this is why they're getting tortured in the pet play scene. It's possible to explain it away as a combination of the MC being a low K2 or K3 and Dominique's darker more sadistic side, but I suspect that you intended to have Dominique play it more straight here because of the MC's importance to her plans, and because of the contrast she'd just drawn between herself and her rival Juliette regarding the MC's dignity with the pizza in the doggy dish. Here's the code in e6junkopet:
You don't have permission to view the spoiler content. Log in or register now.
That elif True triggers for all K2's and K3's who aren't in a romance with Junko or aren't already her pet, including ones who have accepted Dominique's offer and have a high dominique_p. I could easily envision Dominique's darker side coming out as she has Junko punish K2's and K3's that she otherwise likes simply because they've failed to advance. It's just the wording used above makes me think this isn't behaving as intended. She'd make sure they knew that it was their low rank that was the cause of her disappointment and thus their punishment. So as a result I'm inclined to think that you only intended Kane to get the petplay/electroshock scene if Kane had either already agreed to be Junko's pet or if he'd displeased Dominique and thus had a low dominique_p. If the existing code is acting as intended, may be the wording should be adjusted in e6junkopet so that a Kane that Dominique likes knows that her disappointment is due to his low rank and that Dominique wishes to motivate him to do better.
Yes, I'm such a novice at coding that I did not realize you could even use parenthesis a certain way and how order preference works (just now heard it from a coder as asking), lol! This was very good timing as I am making final fixes, thanks!Ha, yep. Delegate it. BTW, I have another one for you:
In endice, you have:
You don't have permission to view the spoiler content. Log in or register now.
I suspect that these don't work as intended because "and" has precedence over "or". As a result
elif k2 or k3 or k4 and dominqiue_p<=1
behaves like
elif k2 or k3 or (k4 and dominique_p<=1)
When what I think you probably want is:
elif (k2 or k3 or k4) and dominique_p<=1
I say this because its possible for a k2 or k3 to make Dominique happy by accepting her offer of sponsorship and have a high dominique_p only for Junko to turn around and tell them that Dominique is not thrilled with them so far and this is why they're getting tortured in the pet play scene. It's possible to explain it away as a combination of the MC being a low K2 or K3 and Dominique's darker more sadistic side, but I suspect that you intended to have Dominique play it more straight here because of the MC's importance to her plans, and because of the contrast she'd just drawn between herself and her rival Juliette regarding the MC's dignity with the pizza in the doggy dish. Here's the code in e6junkopet:
You don't have permission to view the spoiler content. Log in or register now.
That elif True triggers for all K2's and K3's who aren't in a romance with Junko or aren't already her pet, including ones who have accepted Dominique's offer and have a high dominique_p. I could easily envision Dominique's darker side coming out as she has Junko punish K2's and K3's that she otherwise likes simply because they've failed to advance. It's just the wording used above makes me think this isn't behaving as intended. She'd make sure they knew that it was their low rank that was the cause of her disappointment and thus their punishment. So as a result I'm inclined to think that you only intended Kane to get the petplay/electroshock scene if Kane had either already agreed to be Junko's pet or if he'd displeased Dominique and thus had a low dominique_p. If the existing code is acting as intended, may be the wording should be adjusted in e6junkopet so that a Kane that Dominique likes knows that her disappointment is due to his low rank and that Dominique wishes to motivate him to do better.
No worries. Everybody starts out as a novice. You're clearly highly focused and picking it up rapidly. You'll be a codingYes, I'm such a novice at coding that I did not realize you could even use parenthesis a certain way and how order preference works (just now heard it from a coder as asking), lol!
You're very welcome Tess. Btw, if your coder friend hasn't already, I should probably point out that you need to fix the line before it too, because it has the same order precedence problem, ie.This was very good timing as I am making final fixes, thanks!
I'm glad that I understood your intent correctly and was able to be of help. Uncertainty can at times cause hesitation when it comes to reporting the more subtle potential bugs.And yes, the intent you stated is exactly right. Intent is only a low Dominique score would see a certain scene. (It makes less sense if she is happy with Kane so far)
Back to sleep a bit!
If I may... careful here. TheI suspect that these don't work as intended because "and" has precedence over "or".
and
operator does NOT have precedence over or
, the difference is that the operator or
actually stops if it finds an operand to be True where the and
operator does not. That is the ONLY difference in it's behavior regarding the operand and the difference does matter. Just clarifying so the instruction is correct and not misleading.If I may... careful here. Theand
operator does NOT have precedence overor
, the difference is that the operatoror
actually stops if it finds an operand to be True where theand
operator does not. That is the ONLY difference in it's behavior regarding the operand and the difference does matter. Just clarifying so the instruction is correct and not misleading.
The operand(s) in the expression stopping the operatorShort circuiting is a compiler or interpreter optimization that was originally implemented because it reduced computer load without violating the Boolean Algebra operator precedence that you casually dismissed. Logically the results are the same. It's when you start adding assignments into expressions that an understanding of short-circuiting becomes important. I haven't seen any of that in Tess's code yet, and decided not to bring it up, but it's certainly something that may be useful for her to know for the future.
or
in code previously referenced with example: elif k2 or k3 or k4 and junkopet:
elif
logical expression and "becomes important" there, hence why logical order and continuation set via parenthesis is required. Your post reads to me as if you feel you've been rubbed the wrong way. If so, I honestly didn't bring up the correction of the "precedence" claim to measure the size of each others junk, the point I made is valid and correct:and
operator does not take precedence over or
.